/* 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 SCROLLED ======================= */
.header.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  transform: none;
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.25) !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  height: 70px !important;
  animation: slideDown 0.4s ease forwards;
}

/* Corrige o bug da cor preta ao voltar pro topo */
.header:not(.scrolled) {
  background: rgba(0, 0, 0, 0.35) !important;
  backdrop-filter: blur(10px) !important;
  transition: all 0.4s ease;
}

/* ======================= 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;
  position: relative;
}

.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);
}

/* ======================= BOTÃO MENU (DENTRO DA TOPBAR) ======================= */
.menu-toggle {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 22px;
  border-radius: 8px;
  padding: 5px 10px;
  cursor: pointer;
  z-index: 1100;
  display: none;
  backdrop-filter: blur(6px);
  transition: all 0.25s ease;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
}

/* ======================= MENU MOBILE ======================= */
.mobile-menu {
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background: rgba(0, 0, 0, 0.96);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding-top: 80px;
  text-align: center;
  z-index: 1500;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu.show {
  display: flex !important;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  padding: 14px 0;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.8px;
  transition: color 0.2s ease, transform 0.2s ease;
  width: 100%;
}

.mobile-menu a:hover {
  color: #f8a33a;
  transform: scale(1.05);
}

/* ======================= RESPONSIVO ======================= */
@media (max-width: 960px) {
  /* Oculta o header fixo */
  .header {
    display: none !important;
  }

  /* Mostra o botão de menu dentro da topbar */
  .menu-toggle {
    display: block !important;
  }
}
























