/* TEMA ESCURO - TOTAL BLACK */

:root {
    --primary: #2d2d2d;
    --primary-dark: #1a1a1a;
    --secondary: #444444;
    --background: #000000;
    --surface: #0a0a0a;
    --surface-light: #151515;
    --text: #ffffff;
    --text-muted: #888888;
    --border: #222222;
    --error: #ef4444;
    --success: #10b981;
}

.hero-title {
    background: linear-gradient(135deg, #ffffff 0%, #888888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-background::before {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

.btn-hero-primary {
    background: #2d2d2d;
    border-color: #2d2d2d;
}

.btn-hero-primary:hover {
    background: #1a1a1a;
}

.discord-widget {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.logo {
    color: #ffffff;
}

.hero-background {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
}

.notice-icon-E {
    background: rgba(239, 68, 68, 0.3);
}

.notice-icon-U {
    background: rgba(255, 255, 255, 0.2);
}

.tutorial-icon-I {
    background: rgba(255, 255, 255, 0.2);
}
/* ======================= TOPO SOCIAL ======================= */
.topbar {
  background: #0a0a0a;
  border-bottom: 1px solid rgba(255, 180, 0, 0.25);
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1000;
}

.topbar-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 24px;
}

.social-icons a {
  color: #d6d6d6;
  font-size: 16px;
  margin: 0 10px;
  transition: all 0.25s ease;
}

.social-icons a:hover {
  color: #ffb300;
  transform: scale(1.15);
  text-shadow: 0 0 6px rgba(255, 160, 0, 0.6);
}

/* ======================= HEADER FIXO (TOPO) ======================= */
.header {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 78%;
  max-width: 1280px;
  z-index: 999;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  transition: all 0.4s ease;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Centralização do conteúdo */
.header-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0 90px;
  transition: all 0.4s ease;
  transform: translateY(-4px);
}

/* ======================= LOGO ======================= */
.logo {
  justify-self: start;
  display: flex;
  align-items: center;
  margin-top: -2px;
}

.logo img {
  height: 48px;
  width: auto;
  transition: all 0.3s ease;
}

/* ======================= MENU CENTRAL ======================= */
.nav-center {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 45px;
  transform: translateY(-2px);
}

.nav-center .nav-link {
  font-family: 'Orbitron', sans-serif !important;
  font-size: 13.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
}

.nav-center .nav-link:hover {
  color: #ffb347;
  text-shadow: 0 0 8px rgba(255, 180, 0, 0.8);
}


/* ======================= DIREITA (LOGIN / CADASTRAR) ======================= */
.nav-right {
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px; /* 🔹 Aumenta o espaço entre os botões */
  transition: all 0.4s ease;
  transform: translateY(-2px) translateX(40px); /* 🔹 Move um pouco mais pra direita */
}

/* --- BOTÕES UNIFICADOS (LOGIN / CADASTRAR) --- */
.nav-right .btn-outline,
.nav-right .btn-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 22px; /* 🔹 ligeiramente maior pro texto caber bem */
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: inset 0 0 0 0.6px rgba(255, 255, 255, 0.3);
  transition: all 0.25s ease;
  text-decoration: none !important;
  letter-spacing: 0.6px; /* 🔹 melhor espaçamento interno da fonte */
}

.nav-right .btn-outline:hover,
.nav-right .btn-solid:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
}

/* ======================= ICONES DE CONTA / SAIR (APÓS LOGIN) ======================= */
.nav-right .user-logged {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  transform: translateY(-2px) translateX(40px);
}

/* Ícones base */
.nav-right .user-logged a i {
  color: #fff !important;
  font-size: 15px;
  margin-right: 6px;
  transition: all 0.3s ease;
}

/* Hover: dourado com brilho */
.nav-right .user-logged a:hover i {
  color: #ffb347 !important;
  text-shadow: 0 0 6px rgba(255, 180, 0, 0.8);
  transform: scale(1.1);
}

/* Texto */
.nav-right .user-logged a {
  color: #fff !important;
  font-weight: 600;
  text-decoration: none !important;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  transition: color 0.25s ease;
}

/* Hover no texto */
.nav-right .user-logged a:hover {
  color: #ffb347 !important;
}

/* Espaço entre botões */
.nav-right .user-logged .logout-btn {
  margin-left: 10px;
}
/* ======================= HEADER FINAL AJUSTADO (LINHA ÚNICA) ======================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 999;

  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);

  border: none;               /* REMOVE O QUADRADO */
  box-shadow: none;

  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

/* estado ao rolar */
.header.scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
}

/* LINHA ÚNICA EMBAIXO (FULL WIDTH) */
.header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 100vw;
  height: 1px;

  background: linear-gradient(
    90deg,
    rgba(255,255,255,0),
    rgba(255,255,255,0.25),
    rgba(255,255,255,0)
  );

  pointer-events: none;
}

/* ======================= CONTAINER ======================= */
.header .container {
  width: 100%;
  max-width: none !important;
  margin: 0;
  padding: 0;
}

.header-container,
.header-content {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  height: 56px;              /* altura real e estável */
  padding: 0;
}

/* ======================= LOGO ======================= */
.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 118px;
}
.logo img {
  height: 56px;
  width: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.logo:hover img {
  transform: translateY(-2px);
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.35));
}

/* ======================= MENU CENTRAL ======================= */
.nav-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex !important;
  align-items: center;
  gap: 32px;
}

.nav-center .nav-link {
  font-size: 13px;
  font-weight: 500;          /* MAIS FINO */
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  letter-spacing: 1.4px;

  background: none !important;
  border: none !important;
  text-decoration: none !important;

  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.nav-center .nav-link:hover {
  color: #f8a33a;
  text-shadow: 0 0 6px rgba(248, 163, 58, 0.6);
}

/* ======================= DIREITA ======================= */
.nav-right {
  display: flex !important;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  padding-right: 58px;
}

/* LOGIN */
.nav-right .btn-outline {
  padding: 7px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;

  color: #fff;
  background: transparent;
  box-shadow: inset 0 0 0 0.6px rgba(255,255,255,.35);

  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.nav-right .btn-outline:hover {
  background: rgba(255,255,255,.08);
  box-shadow: inset 0 0 0 0.8px rgba(255,255,255,.6);
}

/* CADASTRAR */
.nav-right .btn-solid {
  padding: 7px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;

  background: #fff;
  color: #000;
  border: none;

  transition: background 0.2s ease;
}
.nav-right .btn-solid:hover {
  background: #f2f2f2;
}

/* ======================= MOBILE ======================= */
.menu-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  display: none;
  cursor: pointer;
  padding-right: 12px;
}

@media (max-width: 960px) {
  .nav-center,
  .nav-right {
    display: none !important;
  }

  .menu-toggle {
    display: block !important;
  }
}


























