/* ════════════════════════════════════════════════════════
   Project 'Aden' — Lineage II Interlude Remastered
   Custom Stylesheet — Orange Epic Theme
   ════════════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --accent-main:   #ea580c;
  --accent-bright: #f97316;
  --accent-glow:   rgba(234, 88, 12, 0.6);
  --gold-main:     #d4af37;
  --gold-dim:      #b8860b;
  --dark-bg:       #07070f;
}

/* ── Reset & Base ── */
* { box-sizing: border-box; }

html {
  background: var(--dark-bg);
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark-bg);
  color: #e2e8f0;
  overflow-x: hidden;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
}

/* Scrollbar */
::-webkit-scrollbar       { width: 6px; }
::-webkit-scrollbar-track { background: #0f0f1a; }
::-webkit-scrollbar-thumb { background: var(--accent-main); border-radius: 3px; }

/* ── Keyframe Animations ── */
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 15px 2px rgba(234, 88, 12, 0.4); }
  50%       { box-shadow: 0 0 35px 8px rgba(234, 88, 12, 0.75); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-18px); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes logoBreathe {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 4px 32px rgba(234, 88, 12, 0.3));
  }
  50% {
    transform: scale(1.018);
    filter: drop-shadow(0 4px 42px rgba(234, 88, 12, 0.55)) drop-shadow(0 0 18px rgba(212, 175, 55, 0.2));
  }
}

/* ── NAVBAR ── */
#navbar {
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

#navbar.scrolled {
  background: rgba(7, 7, 15, 0.92) !important;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(234, 88, 12, 0.2);
}

.nav-link {
  position: relative;
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #b0bec5;
  text-transform: uppercase;
  transition: color 0.25s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  right: 50%;
  height: 1px;
  background: var(--accent-bright);
  transition: left 0.25s, right 0.25s;
}

.nav-link:hover           { color: #e2e8f0; }
.nav-link:hover::after    { left: 0; right: 0; }

/* Navbar Login button */
.btn-login {
  padding: 0.375rem 1rem;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: #fb923c;
  border: 1px solid rgba(234, 88, 12, 0.5);
  border-radius: 3px;
  background: transparent;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s;
}

.btn-login:hover {
  background: rgba(234, 88, 12, 0.15);
  border-color: #ea580c;
}

/* Lang selector active */
.lang-active { color: #f97316 !important; }

/* ── LOGO ── */
.logo-text {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  background: linear-gradient(135deg, #d4af37 0%, #f5c518 40%, #b8860b 60%, #d4af37 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

.logo-sub {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  color: #ea580c;
  text-transform: uppercase;
}

/* Hero logo image — subtle breathing animation */
.logo-breathe {
  animation: logoBreathe 4s ease-in-out infinite;
  transform-origin: center;
}

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Static background — no parallax, no transform */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../imgs/bg-top.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
/* Procure a seção pai onde a .hero-bg está inserida e garanta que ela tenha isso: */
.hero, header { /* Troque pelo nome da sua seção principal do topo se for diferente */
    position: relative;
    overflow: hidden; 
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(7,7,15,0.75) 0%,
      rgba(7,7,15,0.35) 40%,
      rgba(7,7,15,0.55) 70%,
      rgba(7,7,15,0.95) 100%
    ),
    radial-gradient(ellipse at 50% 30%, rgba(120, 40, 5, 0.35) 0%, transparent 70%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%,  rgba(251, 146, 60, 0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 15%,  rgba(212, 175, 55, 0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 45% 70%,  rgba(251, 146, 60, 0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 70% 55%, rgba(212, 175, 55, 0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 10% 80%,  rgba(234, 88,  12, 0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 75%,  rgba(212, 175, 55, 0.3) 0%, transparent 100%);
  pointer-events: none;
}

.hero-title-deco {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.hero-title-deco span {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  color: var(--gold-main);
  text-transform: uppercase;
}

.hero-title-deco::before,
.hero-title-deco::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-main), transparent);
}

/* ── BUTTONS ── */

/* Primary — Download (hexagonal clip-path + orange glow pulse) */
.btn-download {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 3.5rem;
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 50%, #9a3412 100%);
  clip-path: polygon(16px 0%, calc(100% - 16px) 0%, 100% 50%, calc(100% - 16px) 100%, 16px 100%, 0% 50%);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: glowPulse 2.5s ease-in-out infinite;
  cursor: pointer;
  border: none;
  outline: none;
  text-decoration: none;
}

.btn-download::before {
  content: '';
  position: absolute;
  inset: 1px;
  clip-path: polygon(16px 0%, calc(100% - 16px) 0%, 100% 50%, calc(100% - 16px) 100%, 16px 100%, 0% 50%);
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.btn-download:hover {
  transform: scale(1.04);
  box-shadow: 0 0 45px 12px rgba(234, 88, 12, 0.65), 0 0 80px 20px rgba(234, 88, 12, 0.25);
  animation: none;
}

/* Secondary — Create Account (outline orange) */
.btn-secondary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.2rem;
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fb923c;
  background: rgba(234, 88, 12, 0.08);
  border: 1px solid rgba(234, 88, 12, 0.45);
  border-radius: 3px;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.2s, box-shadow 0.25s;
  cursor: pointer;
  text-decoration: none;
}

.btn-secondary:hover {
  background: rgba(234, 88, 12, 0.18);
  border-color: #f97316;
  color: #fdba74;
  transform: scale(1.02);
  box-shadow: 0 0 18px 3px rgba(234, 88, 12, 0.25);
}

/* Gold outline (Read More) */
.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.8rem;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-main);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 3px;
  background: transparent;
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s, transform 0.2s;
  cursor: pointer;
  text-decoration: none;
}

.btn-outline-gold:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--gold-main);
  box-shadow: 0 0 14px 2px rgba(212, 175, 55, 0.18);
  transform: scale(1.02);
}

/* Step buttons (Timeline) */
.btn-step {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1.2rem;
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94a3b8;
  background: rgba(7, 7, 15, 0.7);
  border: 1px solid rgba(184, 134, 11, 0.4);
  border-radius: 4px;
  transition: color 0.25s, border-color 0.25s, box-shadow 0.25s, transform 0.2s;
  cursor: pointer;
  text-decoration: none;
}

.btn-step:hover {
  color: var(--gold-main);
  border-color: var(--gold-main);
  box-shadow: 0 0 12px 2px rgba(212, 175, 55, 0.2);
  transform: scale(1.02);
}

/* ── COUNTDOWN ── */
.countdown-wrap {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(7, 7, 15, 0.65);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(234, 88, 12, 0.3);
  border-radius: 12px;
  padding: 0.75rem 1.5rem;
}

.countdown-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.4rem 0.9rem;
  min-width: 72px;
}

.countdown-block:not(:last-child) {
  border-right: 1px solid rgba(234, 88, 12, 0.2);
}

.countdown-num {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #fb923c;
  text-shadow: 0 0 18px rgba(234, 88, 12, 0.6);
  letter-spacing: 0.04em;
  transition: color 0.3s;
}

.countdown-label {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #475569;
  margin-top: 0.25rem;
}

.countdown-sep {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(234, 88, 12, 0.45);
  line-height: 1;
  align-self: flex-start;
  padding-top: 0.3rem;
  user-select: none;
}

.countdown-online {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d4af37;
  text-shadow: 0 0 16px rgba(212, 175, 55, 0.5);
  padding: 0.6rem 1.5rem;
}

/* ── SECTION COMMON ── */
.section-title {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  color: #f1f5f9;
  text-align: center;
}

.gold-underline {
  display: block;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-main), transparent);
  margin: 0.75rem auto 0;
}

/* ── PREPARE FOR BATTLE SECTION ── */
#features {
  position: relative;
  overflow: hidden;
  background: #07070f;
}

.battle-art {
  position: absolute;
  inset: 0;
  background-image: url('../imgs/view-bg.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.battle-art-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #07070f 0%,
    #07070f 30%,
    rgba(7,7,15,0.7) 55%,
    rgba(7,7,15,0.1) 100%
  );
}

.rates-col-title {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-main);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rates-col-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(212,175,55,0.3), transparent);
}

.rate-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.3rem 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: #94a3b8;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.rate-row:last-child { border-bottom: none; }

.rate-bullet {
  width: 5px;
  height: 5px;
  background: var(--accent-bright);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  flex-shrink: 0;
}

.rate-row span:last-child {
  margin-left: auto;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  color: #e2e8f0;
  letter-spacing: 0.05em;
}

/* ── GAMEPLAY SETUP SECTION ── */
#gameplay {
  position: relative;
  overflow: hidden;
}

.gameplay-bg {
  position: absolute;
  inset: 0;
  background-image: url('../imgs/stage_4.jpg');
  background-size: cover;
  background-position: center;
}

.gameplay-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 10, 3, 0.92)  0%,
    rgba(120, 40, 5, 0.7)  50%,
    rgba(15, 10, 5, 0.94)  100%
  );
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-main);
  background: rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-main);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.step-line {
  position: absolute;
  left: 21px;
  top: 44px;
  width: 1.5px;
  height: calc(100% + 28px);
  background: linear-gradient(to bottom, rgba(212, 175, 55, 0.6), rgba(234, 88, 12, 0.25));
}

.mascot-img {
  filter: drop-shadow(0 0 30px rgba(234, 88, 12, 0.45)) drop-shadow(0 8px 24px rgba(0,0,0,0.8));
  animation: float 6s ease-in-out infinite;
}

/* ── FOOTER ── */
#footer {
  background: linear-gradient(to bottom, #070710, #04040a);
  border-top: 1px solid rgba(234, 88, 12, 0.15);
}

.social-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(234, 88, 12, 0.3);
  background: rgba(7, 7, 15, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 1rem;
  transition: color 0.25s, border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  cursor: pointer;
  text-decoration: none;
}

.social-btn:hover {
  color: #fb923c;
  border-color: #ea580c;
  box-shadow: 0 0 16px 4px rgba(234, 88, 12, 0.35);
  transform: scale(1.1) translateY(-2px);
}

.footer-link {
  font-size: 0.72rem;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.2s;
  text-decoration: none;
}

.footer-link:hover { color: #f97316; }

/* ── ORNAMENT DIVIDER ── */
.ornament-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin: 0 auto 2.5rem;
}

.ornament-divider::before,
.ornament-divider::after {
  content: '';
  width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.4), transparent);
}

.ornament-diamond {
  width: 8px;
  height: 8px;
  background: var(--gold-main);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/* ── DOWNLOAD MODAL ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.active { display: flex; }

.modal-box {
  background: #0d0d1a;
  border: 1px solid rgba(234, 88, 12, 0.3);
  border-radius: 14px;
  padding: 2rem;
  max-width: 580px;
  width: 100%;
  position: relative;
  box-shadow: 0 25px 60px rgba(0,0,0,0.7), 0 0 40px rgba(234,88,12,0.06);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1;
  color: #475569;
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
  border-radius: 50%;
}

.modal-close:hover { color: #e2e8f0; }

.dl-category-label {
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-main);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dl-category-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(212,175,55,0.3), transparent);
}

.btn-mirror {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.6rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: #94a3b8;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(234,88,12,0.15);
  border-radius: 6px;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
  cursor: pointer;
  text-decoration: none;
}

.btn-mirror:hover {
  background: rgba(234,88,12,0.08);
  border-color: rgba(234,88,12,0.4);
  color: #e2e8f0;
  transform: translateX(3px);
}

.btn-mirror .mirror-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(234,88,12,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #f97316;
  flex-shrink: 0;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible       { opacity: 1; transform: translateY(0); }
.reveal-delay-1       { transition-delay: 0.1s; }
.reveal-delay-2       { transition-delay: 0.2s; }
.reveal-delay-3       { transition-delay: 0.3s; }
.reveal-delay-4       { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .countdown-block { min-width: 56px; padding: 0.4rem 0.5rem; }
  .countdown-num   { font-size: 1.5rem; }
  .countdown-sep   { font-size: 1rem; }
}
/* Substitua o CSS do canvas por este atualizado */
#particle-canvas {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    z-index: 10;            /* Um z-index baixo, mas o suficiente para ficar acima da imagem */
    pointer-events: none;
    display: block;
}

/* Bloqueia a seleção de texto em todo o site */
body {
    -webkit-user-select: none;  /* Safari */
    -moz-user-select: none;     /* Firefox */
    -ms-user-select: none;      /* IE10+/Edge */
    user-select: none;          /* Padrão (Chrome, Opera, etc.) */
}

/* Impede que as imagens sejam arrastadas (uma forma comum de salvar) */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}
.minha-imagem-protegida {
    width: 400px; /* Largura da sua imagem */
    height: 300px; /* Altura da sua imagem */
    background-image: url('sua-foto.jpg');
    background-size: cover;
    background-position: center;
}
/* CONTAINER DO POPUP (Overlay que escurece o fundo do site) */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

/* Caixa do Modal principal */
.popup-card {
    background-color: #191919;
    border: 1px solid #191919;
    border-radius: 20px;
    width: 90%;
    max-width: 460px;
    padding: 30px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    color: #e4dcd3;
    box-sizing: border-box;
}

/* Botão Fechar (X) */
.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 38px;
    height: 38px;
    background-color: #191919;
    border: 1px solid #2c2c2c;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s ease;
}

.close-btn:hover {
    background-color: #ffffff;
    color: #2c241e;
}

/* Cabeçalho do Popup */
.popup-header {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
    text-align: left;
}

.logo-placeholder {
    background-color: #191919;
    border: 1px solid #ffffff;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    flex-shrink: 0;
}

.header-text h2 {
    font-family: 'Georgia', serif;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    margin: 0 0 6px 0;
    line-height: 1.2;
}

.header-text p {
    font-size: 12px;
    color: #8a8e94;
    line-height: 1.5;
    margin: 0;
}

.header-text strong {
    color: #ffffff;
}

/* Estilização do Widget Real */
.real-discord-widget {
    margin-bottom: 20px;
    border-radius: 8px;
    background-color: #232428; /* Evita piscar fundo branco enquanto carrega */
}

/* Botão Principal Inferior */
.join-main-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #5865f2;
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(101, 116, 111, 0.7);
    transition: all 0.3s ease;
}

.join-main-btn:hover {
    background-color: #5865f2;
    box-shadow: 0 0 25px rgba(101, 116, 111, 0.7);
    transform: translateY(-1px);
}
/* Novo Botão para o Facebook */
.join-fb-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #1877F2; /* Azul oficial do Facebook */
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 12px; /* Margem para não colar no botão de cima */
    box-shadow: 0 0 15px rgba(24, 119, 242, 0.4);
    transition: all 0.3s ease;
}

.join-fb-btn:hover {
    background-color: #3b82f6;
    box-shadow: 0 0 25px rgba(24, 119, 242, 0.7);
    transform: translateY(-1px);
}
.divisor-gradiente {
    width: 100vw; 
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    
    height: 1px; 
    margin-top: 0px; 
    margin-bottom: 0px; 
    
    /* Cor sólida e linear de ponta a ponta sem desbotar */
    background: rgba(194, 166, 131, 0.4);
}