/* =========================================================
   NOXUS ESPORTS — STYLE.CSS (V2)
   ========================================================= */

/* --- VARIABILI GLOBALI --- */
:root {
  --bg-dark: #0a0a0c;
  --bg-surface: #121216;
  --bg-alt: #0e0e11;
  --noxus-red: #d60000;
  --noxus-red-glow: #ff1a1a;
  --silver-glow: #cccccc;
  --gold: #ffd700;
  --silver: #c0c0c0;
  --text-main: #f0f0f0;
  --text-muted: #a0a0b0;
  --font-heading: "Oswald", sans-serif;
  --font-text: "Inter", sans-serif;
  --transition: all 0.3s ease;
}

/* --- RESET BASE --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-text);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* Utils */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.mt-5 {
  margin-top: 50px;
}
.bg-alt {
  background-color: var(--bg-alt);
}
.img-fluid {
  max-width: 100%;
  height: auto;
}
.rounded-border {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* =========================
   CLASSI GLOBALI PER LE SEZIONI
   ========================= */
.section-padding {
  padding: 100px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.section-header h2 span {
  color: var(--noxus-red);
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* =========================
   HEADER & NAVBAR
   ========================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1000;
  display: flex;
  align-items: center;
}
.nav-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo {
  height: 45px;
  width: auto;
}
.nav-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-main);
}
.nav-menu ul {
  display: flex;
  gap: 30px;
}
.nav-menu a {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  transition: var(--transition);
}
.nav-menu a:hover {
  color: var(--noxus-red);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* BOTTONI GLOBALI */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}
.btn-discord {
  background: #5865f2;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  font-family: var(--font-text);
  text-transform: none;
  font-weight: 600;
}
.btn-discord:hover {
  background: #4752c4;
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--noxus-red);
  color: white;
  border: 2px solid var(--noxus-red);
}
.btn-primary:hover {
  background: transparent;
  color: var(--noxus-red);
  box-shadow: 0 0 15px rgba(214, 0, 0, 0.4);
}
.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.btn-outline:hover {
  border-color: white;
  background: white;
  color: var(--bg-dark);
}

/* =========================
   ANIMAZIONI
   ========================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse-live {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(214, 0, 0, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(214, 0, 0, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(214, 0, 0, 0);
  }
}

/* =========================
   HERO SECTION
   ========================= */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 12, 0.8) 0%,
    rgba(10, 10, 12, 0.4) 50%,
    var(--bg-dark) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin-top: 50px;
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.2s;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 span {
  color: var(--noxus-red);
}
.hero p {
  font-size: 1.5rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}
.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.hero-powered {
  margin-top: -15px;
  margin-bottom: 30px;
  font-family: var(--font-text);
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.8;
  transition: var(--transition);
}
.hero-powered:hover {
  opacity: 1;
}
.hero-powered strong {
  color: var(--text-main);
  font-family: var(--font-heading);
  letter-spacing: 2.5px;
  font-size: 0.85rem;
  margin-left: 5px;
}

/* =========================
   CHI SIAMO SECTION
   ========================= */
.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-text p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.8;
}
.about-text strong,
.about-text em {
  color: var(--text-main);
}
.about-quote {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--text-main);
  border-left: 4px solid var(--noxus-red);
  padding-left: 20px;
  margin: 30px 0;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.about-thanks {
  background: rgba(214, 0, 0, 0.05);
  border: 1px solid rgba(214, 0, 0, 0.2);
  padding: 20px;
  border-radius: 8px;
  margin-top: 30px;
}
.about-thanks p {
  margin-bottom: 0;
  font-size: 1rem;
  color: var(--text-main);
}
.about-image img {
  box-shadow: -15px 15px 0 rgba(214, 0, 0, 0.2);
  transition: var(--transition);
}
.about-image img:hover {
  transform: translateY(-5px);
  box-shadow: -15px 15px 0 var(--noxus-red);
}

/* =========================
   STAFF SECTION (CAROSELLO)
   ========================= */
.staff-carousel {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
}
.staff-carousel::-webkit-scrollbar {
  height: 8px;
}
.staff-carousel::-webkit-scrollbar-track {
  background: var(--bg-surface);
  border-radius: 10px;
}
.staff-carousel::-webkit-scrollbar-thumb {
  background: var(--noxus-red);
  border-radius: 10px;
}
.staff-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  background-color: var(--bg-surface);
  padding: 30px 20px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}
.staff-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.staff-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid var(--noxus-red);
}
.staff-card h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 5px;
  letter-spacing: 1px;
}
.staff-role {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.staff-socials {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.staff-socials a {
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: var(--transition);
}
.staff-socials a:hover {
  color: var(--noxus-red);
  transform: scale(1.1);
}

/* =========================
   ROSTER SECTION (CAROSELLO)
   ========================= */
.roster-subtitle {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text-main);
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-left: 4px solid var(--noxus-red);
  padding-left: 15px;
}
.academy-title {
  border-left-color: var(--text-muted);
}
.roster-carousel {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
}
.roster-carousel::-webkit-scrollbar {
  height: 8px;
}
.roster-carousel::-webkit-scrollbar-track {
  background: var(--bg-surface);
  border-radius: 10px;
}
.roster-carousel::-webkit-scrollbar-thumb {
  background: var(--noxus-red);
  border-radius: 10px;
}
.player-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background-color: var(--bg-surface);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.player-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(214, 0, 0, 0.15);
  border-color: var(--noxus-red);
}
.player-card.academy-card:hover {
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
  border-color: var(--silver-glow);
}
.player-img-wrapper {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
}
.player-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: grayscale(30%) contrast(120%);
}
.player-card:hover .player-img {
  transform: scale(1.05);
  filter: grayscale(0%) contrast(110%);
}
.player-role {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background-color: var(--noxus-red);
  color: white;
  padding: 5px 15px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}
.academy-card .player-role {
  background-color: #333;
  color: var(--text-main);
}
.player-info {
  padding: 25px;
  text-align: center;
}
.player-info h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 5px;
  letter-spacing: 1px;
}
.player-real-name {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.player-socials {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.player-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 1.2rem;
  transition: var(--transition);
}
.player-socials a:hover {
  background-color: var(--noxus-red);
  color: white;
  transform: translateY(-3px);
}
.academy-card .player-socials a:hover {
  background-color: var(--text-main);
  color: var(--bg-dark);
}

/* =========================
   CONTENT CREATOR SECTION (FISARMONICA)
   ========================= */
.creator-accordion {
  display: flex;
  height: 500px;
  gap: 15px;
  width: 100%;
}

.acc-item {
  flex: 1;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.acc-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(40%) grayscale(50%);
  transition:
    filter 0.6s ease,
    transform 0.6s ease;
}

.acc-item:hover,
.acc-item.active {
  flex: 4;
  border-color: var(--noxus-red);
  box-shadow: 0 0 20px rgba(214, 0, 0, 0.3);
}

.acc-item:hover img,
.acc-item.active img {
  filter: brightness(90%) grayscale(0%);
  transform: scale(1.05);
}

.acc-title {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.acc-title h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 2px;
  transform: rotate(-90deg);
  transform-origin: left bottom;
  color: var(--text-muted);
}

.acc-item:hover .acc-title,
.acc-item.active .acc-title {
  opacity: 0;
  visibility: hidden;
}

.acc-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(
    0deg,
    rgba(10, 10, 12, 0.9) 0%,
    rgba(10, 10, 12, 0) 100%
  );
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  pointer-events: none;
}

.acc-item:hover .acc-content,
.acc-item.active .acc-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition-delay: 0.2s;
}

.acc-info h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin-bottom: 5px;
  letter-spacing: 1px;
}
.acc-info p {
  color: var(--text-muted);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.live-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--noxus-red);
  color: white;
  padding: 4px 10px;
  font-size: 0.8rem;
  font-family: var(--font-heading);
  letter-spacing: 1px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.live-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
  animation: pulse-live 1.5s infinite;
}

/* Pulsantiera Multipiattaforma per Creator */
.creator-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.c-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 4px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  color: white;
  transition: var(--transition);
}

.c-btn.twitch {
  background-color: #6441a5;
}
.c-btn.twitch:hover {
  background-color: #7d5bbe;
  transform: translateY(-2px);
}

.c-btn.youtube {
  background-color: #ff0000;
}
.c-btn.youtube:hover {
  background-color: #cc0000;
  transform: translateY(-2px);
}

.c-btn.tiktok {
  background-color: #111111;
  border: 1px solid #333;
}
.c-btn.tiktok:hover {
  background-color: #000000;
  border-color: #69c9d0;
  transform: translateY(-2px);
}

/* =========================
   PALMARÈS SECTION
   ========================= */
.palmares-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.palmares-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--bg-surface);
  padding: 25px 35px;
  border-radius: 8px;
  border-left: 4px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}
.palmares-item:hover {
  transform: translateX(10px);
  border-left-color: var(--noxus-red);
  background-color: #1a1a20;
}
.palmares-item.winner {
  border-left-color: var(--noxus-red);
}
.palmares-year {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--text-muted);
  font-weight: 700;
  width: 100px;
}
.palmares-item:hover .palmares-year,
.palmares-item.winner .palmares-year {
  color: var(--noxus-red);
}
.palmares-info {
  flex-grow: 1;
  padding: 0 20px;
}
.palmares-info h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.palmares-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.palmares-result {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  width: 200px;
  justify-content: flex-end;
}
.palmares-result.silver {
  color: var(--silver);
}

/* --- STILE PALMARES VUOTO --- */
.palmares-placeholder {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
  border: 2px dashed rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
}

.trophy-icon {
  font-size: 4rem;
  color: var(--noxus-red);
  opacity: 0.3;
  margin-bottom: 20px;
  filter: blur(1px);
}

.placeholder-content h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: var(--text-muted);
}

.placeholder-content p {
  color: var(--text-muted);
  font-style: italic;
}

/* =========================
   PARTNERS SECTION
   ========================= */
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
}

.partner-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  min-width: 200px;
}

.partner-logo {
  max-width: 150px;
  height: auto;
  filter: grayscale(100%) opacity(0.6);
  transition: all 0.4s ease;
}

.partner-item:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-5px);
  border-color: var(--noxus-red);
}

.partner-item:hover .partner-logo {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

.main-partner {
  border: 2px solid rgba(214, 0, 0, 0.3);
}

.partner-label {
  display: block;
  margin-top: 15px;
  font-size: 0.8rem;
  color: var(--noxus-red);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* =========================
   RECLUTAMENTI SECTION
   ========================= */
.bg-join {
  background:
    linear-gradient(rgba(10, 10, 12, 0.9), rgba(10, 10, 12, 0.9)),
    url("https://images.unsplash.com/photo-1542751371-adc38448a05e?q=80&w=1200")
      no-repeat center/cover;
  padding: 120px 0;
}

.join-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-surface);
  padding: 60px 40px;
  border-radius: 12px;
  border: 1px solid rgba(214, 0, 0, 0.3);
  text-align: center;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.join-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--noxus-red);
}

.join-content h2 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.join-content h2 span {
  color: var(--noxus-red);
}

.join-content p {
  color: var(--text-muted);
  font-size: 1.2rem;
  margin-bottom: 35px;
}

.join-requirements {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.join-requirements span {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 15px;
  border-radius: 4px;
}

.join-requirements i {
  color: var(--noxus-red);
  margin-right: 5px;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.2rem;
  box-shadow: 0 10px 20px rgba(214, 0, 0, 0.2);
}

/* FOOTER */
.main-footer {
  padding: 60px 0 30px;
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-logo img {
  height: 45px;
  vertical-align: middle;
}

.footer-logo span {
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  margin-left: 10px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
}

.copyright-text {
  margin: 20px 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.dev-egg {
  display: block;
  font-size: 0.75rem;
  margin-top: 10px;
  opacity: 0;
  color: var(--noxus-red);
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.5s ease;
  transform: translateY(10px);
}

.copyright-text:hover .dev-egg {
  opacity: 1;
  transform: translateY(0);
  text-shadow: 0 0 8px var(--noxus-red-glow);
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.footer-socials a {
  color: #fff;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-socials a:hover {
  color: var(--noxus-red);
  transform: translateY(-3px);
}

/* Stile Navbar Tasto Join */
.btn-join-nav {
  background: transparent;
  color: var(--noxus-red);
  border: 1px solid var(--noxus-red);
  padding: 8px 15px !important;
  font-size: 0.85rem !important;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-join-nav:hover {
  background: var(--noxus-red);
  color: #fff;
}

/* RESPONSIVE BASE */
@media (max-width: 992px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 12, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .nav-menu.active {
    display: flex;
  }
  .nav-menu ul {
    flex-direction: column;
    gap: 20px;
  }
  .mobile-toggle {
    display: block;
  }
  .hero h1 {
    font-size: 3.5rem;
  }
  .about-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .section-header {
    text-align: center !important;
  }
  .about-quote {
    text-align: left;
  }
  .creator-accordion {
    flex-direction: column;
    height: 700px;
  }
  .acc-title {
    bottom: auto;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
  }
  .acc-title h3 {
    transform: none;
  }
}

@media (max-width: 768px) {
  .palmares-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 15px;
  }
  .palmares-info {
    padding: 0;
  }
  .palmares-result {
    width: 100%;
    justify-content: flex-start;
  }
  .join-content h2 {
    font-size: 2.5rem;
  }
  .join-card {
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  .btn-join-nav {
    display: none;
  }
}
