:root{
  --bg-0: #04070d;
  --bg-1: #09111d;
  --bg-2: #0d1830;
  --panel: rgba(8, 14, 29, 0.72);
  --panel-strong: rgba(8, 14, 29, 0.88);
  --line: rgba(173, 198, 255, 0.16);
  --line-strong: rgba(216, 178, 110, 0.38);
  --text: #edf3ff;
  --muted: #c5d0e1;
  --gold: #d8b26e;
  --gold-2: #e9a94c;
  --gold-3: #a97d37;
  --blue: #5d79dc;
  --blue-2: #22345f;
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 14px 34px rgba(0, 0, 0, 0.32);
  --radius: 18px;
  --container: 1240px;
  --header-h: 92px;
}

*{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

html,
body{
  margin: 0;
  padding: 0;
}

body{
  font-family: "Manrope", sans-serif;
  color: var(--text);
  font-size: 1.3rem; /* aumenta aqui */
  background: #04070d;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;

  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.05),
      rgba(0, 0, 0, 0.05)
    );

  pointer-events: none;
}



a,
button{
  -webkit-tap-highlight-color: transparent;
}

img{
  max-width: 100%;
  display: block;
}

.container{
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

/* Header */
.site-header{
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 1000;
  background: linear-gradient(
    to bottom,
    rgba(3, 7, 16, 0.88),
    rgba(3, 7, 16, 0.60)
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site-header::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -24px;
  height: 24px;
  background: linear-gradient(to bottom, rgba(3, 7, 16, 0.38), rgba(3, 7, 16, 0));
  pointer-events: none;
}

.nav-wrap{
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand{
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo{
  height: 66px;
  width: auto;
}

.main-nav{
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav a{
  position: relative;
  color: #eef3ff;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .01em;
  transition: color .18s ease, transform .18s ease;
}

.main-nav a:hover{
  color: var(--gold-2);
  transform: translateY(-1px);
}

.main-nav a.active{
  background: linear-gradient(
    180deg,
    #fff6d0 0%,
    #f3d89e 50%,
    #d6aa58 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 6px rgba(255,210,120,.35);
}

.main-nav a.active::after{
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 60px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    #f3d89e,
    #ffd978,
    #f3d89e,
    transparent
  );
  box-shadow:
    0 0 10px rgba(255,210,120,.6),
    0 0 20px rgba(255,210,120,.25);
}

.nav-cta{
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn{
  font-family: Jost, sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .01em;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease, border-color .18s ease;
}

.btn:hover{
  transform: translateY(-2px);
}

.btn-ghost{
  color: #edf2ff;
  border-color: rgba(143, 171, 228, 0.36);
  background: linear-gradient(180deg, rgba(22, 35, 66, 0.76), rgba(12, 21, 43, 0.9));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07);
}

.btn-ghost:hover{
  border-color: rgba(177, 199, 245, 0.56);
  box-shadow: 0 10px 24px rgba(0,0,0,.28);
}

.btn-primary{
  color: #1d1407;
  border-color: rgba(236, 201, 124, 0.55);
  background: linear-gradient(180deg, #f0cf84 0%, #d6aa58 100%);
 /* box-shadow:
    inset 0 1px 0 rgba(255,255,255,.30),
    0 10px 26px rgba(186, 134, 50, .26); */
}

.btn-primary:hover{
  filter: brightness(1.04);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.30),
    0 6px 15px rgba(186, 134, 50, .36);
}

.btn-large{
  min-height: 54px;
  padding: 0 28px;
  font-size: 1rem;
}


/* Hero */
.hero{
  position: relative;

  min-height: calc(100vh - var(--header-h));

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      rgba(2, 6, 14, 0.08),
      rgba(2, 6, 14, 0.18)
    ),
    url("/assets/img/foto.png") no-repeat center top fixed;

  background-size: cover;
}

.hero-content{ position: relative; z-index: 1; text-align: center; padding: 78px 0 54px;
}

.hero-content{
   transform: translateY(-50px);
}

.hero-kicker{
  margin: 0 0 10px;
  color: var(--gold-2);
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.hero h1{
  margin: 0;
  font-family: "Cormorant Garamond";
  font-weight: 700;
  font-size: clamp(3.3rem, 3vw, 5.5rem);
  line-height: .5;
  letter-spacing: 0.01em;
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
  color: inherit;
  text-shadow: none;
}

.title-light{
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: #f3f0e8 !important;
  background-clip: initial !important;
  color: #f3f0e8 !important;

  text-shadow: 0 2px 28px rgba(0, 0, 0, .35), 0 6px 14px rgba(0, 0, 0, .25);
 filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 1px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 1px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 1px rgba(0, 0, 0, 0.7))

}

/* texto dourado do título */

.title-gold {
    background: linear-gradient(
        180deg,
        #efdbc3 0%,
        #f7d3ab 18%,
        #ffce92 38%,
        #fabd58 52%,
        #f6cb6a 70%,
        #f3dfbf 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;

    /* sombras atuais (profundidade) */
    text-shadow:
        0 2px 28px rgba(0,0,0,.35),
        0 6px 14px rgba(0,0,0,.25);

    /* HALO PRETO por trás */
    filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 1px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 1px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 1px rgba(0, 0, 0, 0.7))

}

.hero-sub{
  width: min(760px, 100%);
  margin: 18px auto 0;
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  line-height: 1.65;
  color: #d6dfef;
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
}

.hero-actions{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-btn{
  min-width: 220px;
  min-height: 60px;
  padding: 0 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .01em;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.hero-btn:hover{
  transform: translateY(-4px);
}

.hero-btn--gold{
  position: relative;
  overflow: hidden;

  color: #211606;
  border-radius: 999px;
  border: 1px solid rgba(255, 223, 130, 0.9);

  background: linear-gradient(
    180deg,
    #f3cf73 0%,
    #dcb45a 55%,
    #b9852f 100%
  );

  box-shadow:
    0 0 0 1px rgba(255, 220, 120, 0.18),
    0 0 10px rgba(255, 210, 90, 0.35),
    0 0 22px rgba(255, 196, 70, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.28),
    inset 0 -1px 0 rgba(120, 72, 10, 0.20);

  text-shadow: 0 1px 0 rgba(255,255,255,0.10);
}


.hero-btn--dark {
    color: #eef3ff;
    background: linear-gradient(180deg, rgba(40, 70, 130, 2.55), rgba(10, 20, 45, 0.9));
    border: 1px solid rgba(120, 160, 255, 0.45);
    border-radius: 999px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(120, 160, 255, 0.25), 0 0 12px rgba(120, 160, 255, 0.25), 0 0 30px rgba(80, 120, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
}

.hero-btn--dark:hover{
  box-shadow:
    0 0 0 1px rgba(140,180,255,0.4),
    0 0 18px rgba(140,180,255,0.35),
    0 0 40px rgba(100,150,255,0.25),
    inset 0 1px 0 rgba(255,255,255,0.2);

  transform: translateY(-3px);
}

.hero-btn__icon{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.hero-btn__icon img{
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: brightness(1.2);
}

.hero-btn--discord{
  color: #eef3ff;
  border: 1px solid rgba(114, 145, 236, 0.48);
  background: linear-gradient(180deg, rgba(140, 170, 255, .16), transparent 40%), linear-gradient(181deg, #0d1830, #0d1830);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.16),
    0 12px 24px rgba(0,0,0,.26);
}

/* Panels */
.hero-panels{
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.panel{
  background: linear-gradient(180deg, rgba(10, 18, 37, 0.76), rgba(6, 12, 24, 0.82));
  border: 1px solid rgba(184, 205, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 24px 22px 20px;
  text-align: left;
}

.panel h2{
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--gold-2);
  letter-spacing: .01em;
}

.info-list,
.bullet-list{
  list-style: none;
  margin: 0;
  padding: 0;
}

.info-list li{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 52px;
  padding: 0 14px;
  margin-bottom: 10px;
  border: 1px solid rgba(172, 196, 245, 0.10);
  border-radius: 12px;
  background: rgba(4, 9, 20, 0.52);
}

.info-list li span{
  color: #eef3ff;
  font-size: 1rem;
  font-weight: 600;
}

.info-list li strong{
  color: var(--gold-2);
  font-size: 1rem;
  font-weight: 800;
  text-align: right;
}

.bullet-list{
  display: grid;
  gap: 14px;
  padding-top: 2px;
}

.bullet-list li{
  color: #e5ecfa;
  font-size: 1rem;
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}

.bullet-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(216, 178, 110, .45);
}

.panel-link{
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-2);
  text-decoration: none;
  font-weight: 800;
  font-size: .95rem;
}

.panel-link:hover{
  filter: brightness(1.08);
}

/* Status */
.status-bar{
  position: relative;
  z-index: 2;
  margin-top: -100px;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(7, 12, 25, 0.74), rgba(5, 9, 18, 0.86));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.status-grid{
  min-height: 74px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}

.status-item{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d9e2f0;
  font-size: .96rem;
  font-weight: 600;
}

.status-item strong{
  color: #f0f4fc;
}

.dot{
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
  flex: 0 0 auto;
}

.dot.ok{
  background: #52d48c;
  box-shadow: 0 0 10px #52d48c;
}

.dot.err{
  background: #ff7689;
  box-shadow: 0 0 10px #ff7689;
}

.dot.wait{
  background: #e4b660;
  box-shadow: 0 0 10px #e4b660;
}

/* CTA band */
.cta-band{
  padding: 34px 0 56px;
}

.cta-band-wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 26px 28px;
  border-radius: 20px;
  border: 1px solid rgba(216, 178, 110, 0.16);
  background: linear-gradient(180deg, rgba(8, 14, 28, 0.82), rgba(5, 10, 20, 0.88));
  box-shadow: var(--shadow-md);
}

.cta-band-kicker{
  margin: 0 0 6px;
  color: var(--gold-2);
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.cta-band h3{
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.05;
  color: #f5efdf;
}

/* Footer */
.site-footer{
 margin-top: auto;
  padding: 14px 0;
}

.footer-wrap{
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.site-footer p{
  margin: 0;
  color: #aeb9cb;
  font-size: .92rem;
  text-align: center;
}

/* Responsive */
@media (max-width: 1180px){
  .hero-panels{
    grid-template-columns: 1fr;
    max-width: 860px;
    margin-inline: auto;
    margin-top: 44px;
  }

  .panel{
    text-align: left;
  }
}

@media (max-width: 980px){
  :root{
    --header-h: 82px;
  }

  .main-nav{
    display: none;
  }

  .brand-logo{
    height: 58px;
  }

  .status-grid{
    grid-template-columns: 1fr 1fr;
    padding: 14px 0;
  }

  .cta-band-wrap{
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 720px){
  body{
    background-attachment: scroll;
  }

  .hero-content{
    padding: 54px 0 38px;
  }

  .hero h1{
    font-size: clamp(2.6rem, 10vw, 4rem);
  }

  .hero-sub{
    font-size: 1rem;
  }

  .hero-btn{
    width: 100%;
    min-width: 0;
  }

  .nav-wrap{
    gap: 12px;
  }

  .nav-cta{
    gap: 8px;
  }

  .btn{
    min-height: 42px;
    padding: 0 16px;
    font-size: .88rem;
  }

  .panel{
    padding: 20px 16px 18px;
  }

  .panel h2{
    font-size: 1.8rem;
  }

  .status-grid{
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cta-band{
    padding-top: 26px;
  }

  .cta-band-wrap{
    padding: 22px 18px;
  }
}

@media (max-width: 540px){
  .brand-logo{
    height: 50px;
  }

  .nav-cta .btn{
    padding: 0 14px;
    min-height: 40px;
    font-size: .82rem;
  }

  .hero-actions{
    gap: 10px;
  }

  .info-list li{
    min-height: 48px;
    padding: 0 12px;
  }

  .info-list li span,
  .info-list li strong,
  .bullet-list li{
    font-size: .94rem;
  }
}

.login-page .btn-ghost{
  visibility: hidden;
}




/* =========================
   DROPDOWN GUIDE
========================= */

.nav-dropdown{
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-toggle{
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-arrow{
  font-size: 10px;
  transition: transform .25s ease;
}

.nav-dropdown:hover .dropdown-arrow{
  transform: rotate(180deg);
}

/* MENU */

.dropdown-menu{
  position: absolute;

  top: calc(100% + 14px);
  left: 50%;

  transform:
    translateX(-50%)
    translateY(10px);

  width: 270px;

  padding: 14px 0;

  border-radius: 20px;

  background:
    linear-gradient(
      180deg,
      rgba(6,12,28,.98),
      rgba(4,8,18,.98)
    );

  border: 1px solid rgba(214,170,88,.18);

  box-shadow:
    0 20px 40px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.04);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  opacity: 0;
  visibility: hidden;

  transition:
    opacity .22s ease,
    transform .22s ease,
    visibility .22s ease;

  z-index: 999;
}

.nav-dropdown:hover .dropdown-menu{
  opacity: 1;
  visibility: visible;

  transform:
    translateX(-50%)
    translateY(0);
}

/* SECTIONS */

.guide-menu-section{
  display: flex;
  flex-direction: column;
}

.guide-menu-title{
  padding: 8px 22px 10px;

  color: rgba(214,170,88,.85);

  font-size: .72rem;
  font-weight: 800;

  letter-spacing: .18em;
  text-transform: uppercase;
}

/* DIVIDER */

.guide-menu-divider{
  height: 1px;

  margin: 12px 18px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(214,170,88,.25),
      transparent
    );
}

/* LINKS */

.dropdown-menu a{
  position: relative;

  display: flex;
  align-items: center;

  min-height: 48px;

  padding: 0 22px;

  border-radius: 0;

  color: #edf3ff;

  font-size: 1rem;
  font-weight: 700;

  text-decoration: none;

  transition:
    background .18s ease,
    color .18s ease,
    padding .18s ease;
}

.dropdown-menu a:hover{
  color: #f6cb6a;

  background:
    linear-gradient(
      90deg,
      rgba(246,203,106,.10),
      transparent
    );

  padding-left: 28px;
}

/* ACTIVE */

.dropdown-menu a.active{
  color: #f6cb6a;
}

.dropdown-menu a.active::after{
  content: "";

  position: absolute;

  left: 22px;
  right: 22px;
  bottom: 8px;

  height: 2px;

  border-radius: 999px;

  background:
    linear-gradient(
      90deg,
      transparent,
      #f6cb6a,
      transparent
    );

  box-shadow:
    0 0 12px rgba(246,203,106,.45);
}

/* MOBILE */

@media(max-width:980px){

  .dropdown-menu{
    left: 0;

    transform:
      translateX(0)
      translateY(10px);
  }

  .nav-dropdown:hover .dropdown-menu{
    transform:
      translateX(0)
      translateY(0);
  }

}


.dropdown-menu.guide-menu{
  min-width: 260px !important;
  width: 260px !important;
  padding: 14px 0 !important;
  gap: 0 !important;
}

.guide-menu-section{
  display: flex;
  flex-direction: column;
}

.guide-menu-title{
  display: block;
  padding: 8px 22px;
  color: #d6aa58;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.guide-menu-divider{
  height: 1px;
  margin: 10px 18px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(214,170,88,.35),
    transparent
  );
}

.dropdown-menu.guide-menu a{
  display: flex !important;
  width: 100% !important;
  min-height: 42px;
  padding: 0 22px !important;
  white-space: nowrap;
  font-size: .95rem;
}

.dropdown-menu.guide-menu a.active::after{
  display: none !important;
}


/* =========================================================
   GLOBAL STANDARD - NAVBAR + PAGE BACKGROUND
   Use this as the final source of truth for all pages.
========================================================= */

body{
  background: #04070d !important;
  padding-top: 0 !important;
}

.site-header{
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: var(--header-h) !important;
  z-index: 1000 !important;

  background:
    linear-gradient(
      to bottom,
      rgba(3, 7, 16, 0.88),
      rgba(3, 7, 16, 0.60)
    ) !important;

  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;

  border: 0 !important;
  box-shadow: none !important;
}

.site-header::before{
  display: none !important;
}

.site-header::after{
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: -24px !important;
  height: 24px !important;
  background: linear-gradient(
    to bottom,
    rgba(3, 7, 16, 0.38),
    rgba(3, 7, 16, 0)
  ) !important;
  pointer-events: none !important;
}

.nav-wrap,
.main-nav{
  border: 0 !important;
  box-shadow: none !important;
}

/* Classe padrão para qualquer página nova */
.page-bg{
  min-height: calc(100vh - var(--header-h));
  padding-top: var(--header-h);

  background:
    linear-gradient(
      180deg,
      rgba(2, 6, 14, 0.08),
      rgba(2, 6, 14, 0.18)
    ),
    url("/assets/img/foto.png") no-repeat center top fixed;

  background-size: cover;
}

/* HOME */
.home-page #home{
  padding-top: var(--header-h) !important;

  background:
    linear-gradient(
      180deg,
      rgba(2, 6, 14, 0.08),
      rgba(2, 6, 14, 0.18)
    ),
    url("/assets/img/foto.png") no-repeat center top fixed !important;

  background-size: cover !important;
}

.home-page .hero{
min-height: 88vh !important;
  padding-top: 0 !important;
  background: transparent !important;
}

/* ABOUT */
.about-page-premium{
  background: #04070d !important;
}

.about-premium-main{
  min-height: calc(102vh - var(--header-h)) !important;
  padding-top: var(--header-h) !important;

  background:
    linear-gradient(
      180deg,
      rgba(2, 6, 14, 0.08),
      rgba(2, 6, 14, 0.18)
    ),
    url("/assets/img/foto.png") no-repeat center top fixed !important;

  background-size: cover !important;
}

.about-premium-hero{
  background: transparent !important;
}

/* CHARACTERS */
.characters-page{
  min-height: calc(100vh - var(--header-h)) !important;

  padding:
    calc(var(--header-h) + 42px)
    42px
    42px !important;

  background:
    linear-gradient(
      180deg,
      rgba(2, 6, 14, 0.08),
      rgba(2, 6, 14, 0.18)
    ),
    url("/assets/img/foto.png") no-repeat center top fixed !important;

  background-size: cover !important;
}

/* FARM */
.farm-page{
  background: #04070d !important;
}

.farm-main{
  min-height: calc(100vh - var(--header-h)) !important;
  padding-top: var(--header-h) !important;

  background:
    linear-gradient(
      180deg,
      rgba(2, 6, 14, 0.08),
      rgba(2, 6, 14, 0.18)
    ),
    url("/assets/img/foto.png") no-repeat center top fixed !important;

  background-size: cover !important;
}

/* LEVELING GUIDE */
.guide-leveling-page{
  background: #04070d !important;
}

.guide-leveling-main{
  min-height: calc(100vh - var(--header-h)) !important;
  padding-top: var(--header-h) !important;

  background:
    linear-gradient(
      180deg,
      rgba(2, 6, 14, 0.08),
      rgba(2, 6, 14, 0.18)
    ),
    url("/assets/img/foto.png") no-repeat center top fixed !important;

  background-size: cover !important;
}

/* DASHBOARD / SETTINGS / REGISTER */
.page-dashboard,
.page-settings,
.register-main{
  min-height: calc(100vh - var(--header-h)) !important;
  padding-top: var(--header-h) !important;

  background:
    linear-gradient(
      180deg,
      rgba(2, 6, 14, 0.08),
      rgba(2, 6, 14, 0.18)
    ),
    url("/assets/img/foto.png") no-repeat center top fixed !important;

  background-size: cover !important;
}

/* LOGIN continua com o próprio CSS específico */
.login-page{
  background: #04070d !important;
}


.page-bg{
  min-height: 100vh;

  background:
    linear-gradient(
      180deg,
      rgba(2, 6, 14, 0.08),
      rgba(2, 6, 14, 0.18)
    ),
    url("/assets/img/foto.png") no-repeat center top fixed;

  background-size: cover;
}


.worldboss-hero .container{
  max-width: 1540px;
}

/* finall */
