*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #050508;
  --deep: #0a0a12;
  --panel: #0f0f1a;
  --violet: #7b2fff;
  --violet-light: #a855f7;
  --violet-glow: #c084fc;
  --violet-dim: #3d1580;
  --white: #f0eaff;
  --muted: #8b7aa8;
  --border: rgba(123, 47, 255, 0.25);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  overflow-x: hidden;
  cursor: default;
}

/* — CURSOR — */
.cursor {
  width: 12px; height: 12px;
  background: var(--violet);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform .15s ease, opacity .15s ease;
  mix-blend-mode: screen;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--violet-light);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: transform .3s ease, opacity .2s ease;
  opacity: 0.6;
}

/* — NAV — */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px;
  height: 70px;
  background: rgba(5,5,8,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}
.logo-img {
  height: 120px;
  width: auto;
  display: block;
}
.nav-logo {
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 4px;
  color: var(--white);
  text-decoration: none;
}
.nav-logo span { color: var(--violet); }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0; height: 1px;
  background: var(--violet);
  transform: scaleX(0);
  transition: transform .2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--violet);
  color: var(--white);
  padding: 9px 22px;
  font-family: 'Orbitron', monospace;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background .2s, transform .15s;
  font-weight: 700;
}
.nav-cta:hover { background: var(--violet-light); transform: translateY(-1px); }

/* Mobile hamburger — hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 200;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform .3s, opacity .3s;
}

/* — HERO — */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(123,47,255,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 85% 20%, rgba(168,85,247,0.10) 0%, transparent 60%),
    linear-gradient(180deg, var(--black) 0%, var(--deep) 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(123,47,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123,47,255,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
}
.hero-scanlines {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.08) 3px,
    rgba(0,0,0,0.08) 4px
  );
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.75rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--violet-light); font-weight: 700;
  margin-bottom: 28px;
}
.hero-tag::before {
  content: '';
  width: 30px; height: 1px;
  background: var(--violet-light);
}
h1 {
  font-family: 'Orbitron', monospace;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
h1 .accent { color: var(--violet); }
h1 .outline {
  -webkit-text-stroke: 2px var(--violet-light);
  color: transparent;
}
.hero-desc {
  font-size: 1.1rem; line-height: 1.7;
  color: var(--muted); max-width: 480px;
  margin-bottom: 48px;
  font-weight: 400;
}
.hero-actions { display: flex; gap: 16px; align-items: center; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--violet);
  color: var(--white);
  padding: 14px 32px;
  font-family: 'Orbitron', monospace;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 0 30px rgba(123,47,255,0.4);
}
.btn-primary:hover {
  background: var(--violet-light);
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(168,85,247,0.5);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--muted);
  padding: 14px 32px;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid var(--border);
  transition: color .2s, border-color .2s;
}
.btn-ghost:hover { color: var(--white); border-color: var(--violet-light); }

/* hero stats */
.hero-stats {
  position: absolute; right: 60px; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 2px; z-index: 2;
}
.stat-card {
  background: rgba(15,15,26,0.8);
  border: 1px solid var(--border);
  padding: 20px 32px;
  text-align: center;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  animation: fadeSlideIn 0.6s ease forwards;
  opacity: 0;
}
.stat-card:nth-child(1) { animation-delay: 0.3s; }
.stat-card:nth-child(2) { animation-delay: 0.5s; }
.stat-card:nth-child(3) { animation-delay: 0.7s; }
.stat-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--violet);
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
.stat-num {
  font-family: 'Orbitron', monospace;
  font-size: 2.2rem; font-weight: 900;
  color: var(--violet-glow);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); margin-top: 4px; font-weight: 600;
}

/* — SECTION SHARED — */
section { padding: 100px 60px; position: relative; }
.section-tag {
  font-size: 0.72rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--violet); font-weight: 700; margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px; text-align: center;
}
.section-tag::before {
  content: '';
  display: inline-block;
  width: 20px; height: 2px;
  background: var(--violet);
}
.team-1 { margin-top: 20px; }
.team-2 { margin-top: 20px; }
.section-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; line-height: 1.1;
  margin-bottom: 16px;
  text-align: center;
}

.section-title-1 {
  font-family: 'Orbitron', monospace;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--violet-light);
  font-weight: 900; line-height: 1.1;
  margin-bottom: 16px;
  text-align: center;
}

.section-tag-1::before {
  content: '';
  display: inline-block;
  width: 20px; height: 2px;
  background: var(--violet);
}

/* — GAMES — */
.games { background: var(--deep); }
.games-header { text-align: center; margin-bottom: 60px; }
.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  max-width: 1200px; margin: 0 auto;
}
.game-card {
  position: relative;
  background: var(--panel);
  padding: 36px 24px;
  text-align: center;
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  transition: border-color .25s, transform .25s;
}
.game-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(123,47,255,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
}
.game-card:hover { border-color: var(--violet); transform: translateY(-4px); }
.game-card:hover::before { opacity: 1; }
.game-icon {
    width: 140px;
    height: 140px;
    object-fit: contain;
    display: block;
    margin: 0 auto 16px;
    filter: drop-shadow(0 0 16px rgba(123,47,255,0.8));
}

.game-icons {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
    margin: 0 auto 16px;
    filter: drop-shadow(0 0 16px rgba(123,47,255,0.8));
}

.game-name {
  font-family: 'Orbitron', monospace;
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--white); margin-bottom: 6px;
}
.game-rank {
  font-size: 0.75rem; color: var(--violet-light);
  letter-spacing: 1px; text-transform: uppercase; font-weight: 600;
}
.game-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--violet); color: var(--white);
  font-size: 0.6rem; letter-spacing: 1px; text-transform: uppercase;
  padding: 3px 8px; font-weight: 700;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}

/* — ROSTER — */
.roster { background: var(--black); }
.roster-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 60px;
}
.players-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.player-card {
  background: var(--panel);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  transition: border-color .25s, transform .25s;
  cursor: pointer;
}
.player-card:hover { border-color: var(--violet); transform: translateY(-6px); }
.player-card:hover .player-overlay { opacity: 1; }
.player-img {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--violet-dim) 0%, var(--deep) 60%, var(--black) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; position: relative; overflow: hidden;
}
.player-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--panel) 100%);
}
.player-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  border-bottom: 2px solid var(--violet);
  box-shadow: 0 2px 15px rgba(123, 47, 255, 0.5);
}
.player-info { padding: 16px; }
.player-overlay {
  position: absolute; inset: 0;
  background: rgba(123,47,255,0.15);
  opacity: 0;
  transition: opacity .3s;
}
.player-alias {
  font-family: 'Orbitron', monospace;
  font-size: 0.95rem; font-weight: 700;
  color: var(--white); margin-bottom: 3px;
}
.player-role {
  font-size: 0.72rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--violet-light);
  font-weight: 600; margin-bottom: 4px;
}
.player-country { font-size: 0.8rem; color: var(--muted); }
.player-flag { font-size: 1rem; margin-right: 4px; }

/* — ACHIEVEMENTS — */
.achievements { background: var(--deep); }
.ach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  max-width: 2000px;
}
.ach-header { margin-bottom: 60px; }
.ach-item {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: border-color .25s;

  height: 100%;
  min-height: 180px;
  box-sizing: border-box;
}

.ach-item > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.ach-item:hover { border-color: var(--violet); }
.ach-icon { font-size: 2.4rem; flex-shrink: 0; }
.ach-year {
  font-family: 'Orbitron', monospace;
  font-size: 0.65rem; letter-spacing: 3px;
  color: var(--violet); text-transform: uppercase;
  font-weight: 700; margin-bottom: 4px;
}
.ach-title {
  font-family: 'Orbitron', monospace;
  font-size: 0.95rem; font-weight: 700;
  color: var(--white); margin-bottom: 4px;
}
.ach-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }

/* — SPONSORS — */
.sponsors {
  background: var(--black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px;
}
.sponsors-label {
  text-align: center;
  font-size: 0.7rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 40px;
}
.sponsors-row {
  display: flex; align-items: center; justify-content: center;
  gap: 60px; flex-wrap: wrap;
}
.sponsor-item {
  font-family: 'Orbitron', monospace;
  font-size: 1.1rem; font-weight: 700;
  letter-spacing: 4px;
  color: rgba(139,122,168,0.35);
  text-transform: uppercase;
  transition: color .2s;
  user-select: none;
}
.sponsor-item:hover { color: var(--muted); }

/* — NEWS — */
.news { background: var(--deep); }
.news-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px;
}
.news-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2px; }
.news-card {
  background: var(--panel);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color .25s;
  cursor: pointer;
}
.news-card:hover { border-color: var(--violet); }
.news-img {
  width: 100%; height: 200px;
  background: linear-gradient(135deg, var(--violet-dim) 0%, var(--deep) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}
.news-card:first-child .news-img { height: 280px; font-size: 6rem; }
.news-body { padding: 24px; }
.news-cat {
  font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--violet-light); font-weight: 700; margin-bottom: 10px;
}
.news-title {
  font-family: 'Orbitron', monospace;
  font-size: 0.95rem; font-weight: 700;
  line-height: 1.4; color: var(--white);
  margin-bottom: 10px;
}
.news-card:first-child .news-title { font-size: 1.2rem; }
.news-meta { font-size: 0.75rem; color: var(--muted); }

/* — FOOTER — */
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 60px 60px 32px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 60px;
}
.footer-brand .nav-logo { display: block; margin-bottom: 16px; font-size: 1.2rem; }
.footer-brand p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }
.footer-col h4 {
  font-family: 'Orbitron', monospace;
  font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--white); margin-bottom: 20px; font-weight: 700;
}
.footer-col a {
  display: block; color: var(--muted); text-decoration: none;
  font-size: 0.9rem; margin-bottom: 12px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--violet-light); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; border-top: 1px solid var(--border);
}
.footer-copy { color: var(--muted); font-size: 0.8rem; }
.socials { display: flex; gap: 16px; }
.social-btn {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); text-decoration: none;
  font-size: 0.9rem;
  transition: border-color .2s, color .2s, background .2s;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.social-btn:hover {
  border-color: var(--violet);
  color: var(--violet-light);
  background: rgba(123,47,255,0.1);
}

/* — GLOW DIVIDER — */
.glow-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet), var(--violet-light), var(--violet), transparent);
  opacity: 0.5;
}

/* — ANIMATIONS — */
@keyframes heroFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
.floating { animation: heroFloat 4s ease-in-out infinite; }

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(123,47,255,0.3); }
  50% { box-shadow: 0 0 50px rgba(123,47,255,0.7); }
}

/* — SCROLL REVEAL — */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* — LIVE BADGE — */
.live-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(123,47,255,0.15);
  border: 1px solid var(--violet);
  padding: 6px 16px;
  font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--violet-glow); font-weight: 700;
  margin-bottom: 32px;
}
.live-dot {
  width: 8px; height: 8px;
  background: #ff4455;
  border-radius: 50%;
  animation: blink 1s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; } 50% { opacity: 0; }
}


/* ============================================================
   TABLET — 768px to 1024px
   ============================================================ */
@media (max-width: 1024px) {

  /* Nav */
  nav { padding: 0 32px; }
  .logo-img { height: 90px; }
  .nav-links { gap: 24px; }
  .nav-links a { font-size: 0.75rem; letter-spacing: 1px; }
  .nav-cta { padding: 8px 16px; font-size: 0.65rem; }

  /* Hero */
  .hero { padding: 100px 32px 60px; flex-direction: column; align-items: flex-start; justify-content: center; gap: 48px; }
  .hero-content { max-width: 100%; }
  .hero-stats {
    position: static;
    transform: none;
    flex-direction: row;
    gap: 2px;
    width: 100%;
  }
  .stat-card {
    flex: 1;
    padding: 16px 12px;
  }
  .stat-num { font-size: 1.6rem; }
  .hero-desc { font-size: 1rem; max-width: 100%; margin-bottom: 36px; }

  /* Sections */
  section { padding: 72px 32px; }
  .sponsors { padding: 48px 32px; }
  .sponsors-row { gap: 32px; }

  /* Games */
  .games-grid { grid-template-columns: repeat(2, 1fr); }

  /* Roster */
  .roster-header { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 40px; }
  .players-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .player-image { height: 320px; }

  /* Achievements */
  .ach-grid { grid-template-columns: 1fr; max-width: 100%; }
  .ach-item { padding: 24px 28px; }

  /* News */
  .news-header { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 32px; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-card:first-child { grid-column: 1 / -1; }
  .news-card:first-child .news-img { height: 220px; font-size: 5rem; }

  /* Footer */
  footer { padding: 48px 32px 28px; }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}


/* ============================================================
   MOBILE — up to 767px
   ============================================================ */
@media (max-width: 767px) {

  /* Hide cursor elements on touch */
  .cursor, .cursor-ring { display: none; }

  /* Nav */
  nav {
    padding: 0 20px;
    height: 64px;
  }
  .logo-img { height: 70px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  /* Mobile nav open state */
  nav.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(5,5,8,0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 24px 20px 32px;
    gap: 0;
    z-index: 99;
  }
  nav.nav-open .nav-links li {
    border-bottom: 1px solid var(--border);
  }
  nav.nav-open .nav-links a {
    display: block;
    padding: 16px 0;
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: var(--white);
  }
  nav.nav-open .nav-cta {
    display: block;
    margin: 20px 0 0;
    text-align: center;
    clip-path: none;
    padding: 14px 20px;
    font-size: 0.75rem;
  }

  /* Hero */
  .hero {
    padding: 100px 20px 60px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 100svh;
  }
  .hero-content { max-width: 100%; }
  .hero-tag { font-size: 0.65rem; letter-spacing: 2px; margin-bottom: 20px; }
  .hero-tag::before { width: 20px; }
  h1 { font-size: clamp(2.2rem, 11vw, 3.5rem); letter-spacing: -0.5px; margin-bottom: 16px; }
  h1 .outline { -webkit-text-stroke: 1.5px var(--violet-light); }
  .hero-desc { font-size: 0.95rem; margin-bottom: 32px; max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .btn-primary { justify-content: center; padding: 14px 24px; clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%); }
  .btn-ghost { justify-content: center; padding: 12px 24px; }
  .live-badge { font-size: 0.6rem; padding: 5px 12px; margin-bottom: 20px; }

  /* Hero stats — horizontal strip */
  .hero-stats {
    position: static;
    transform: none;
    flex-direction: row;
    gap: 2px;
    width: 100%;
    margin-top: 32px;
  }
  .stat-card {
    flex: 1;
    padding: 14px 8px;
  }
  .stat-num { font-size: 1.4rem; }
  .stat-label { font-size: 0.58rem; letter-spacing: 1px; }

  /* Sections */
  section { padding: 60px 20px; }
  .section-title { font-size: clamp(1.6rem, 7vw, 2.4rem); }

  /* Sponsors */
  .sponsors { padding: 40px 20px; }
  .sponsors-row { gap: 20px; }
  .sponsor-item { font-size: 0.8rem; letter-spacing: 2px; }

  /* Games */
  .games-header { margin-bottom: 36px; }
  .games-grid { grid-template-columns: 1fr; }
  .game-card { padding: 28px 20px; }

  /* Roster */
  .roster-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 28px;
  }
  .players-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .player-image { height: 220px; }
  .player-alias { font-size: 0.8rem; }
  .player-role { font-size: 0.62rem; }
  .player-info { padding: 12px; }

  /* Achievements */
  .ach-header { margin-bottom: 36px; }
  .ach-grid { grid-template-columns: 1fr; max-width: 100%; gap: 2px; }
  .ach-item { padding: 20px 20px; gap: 16px; }
  .ach-icon { font-size: 2rem; }
  .ach-title { font-size: 0.82rem; }
  .ach-desc { font-size: 0.8rem; }

  /* News */
  .news-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 28px;
  }
  .news-grid { grid-template-columns: 1fr; gap: 2px; }
  .news-card:first-child .news-img { height: 180px; font-size: 4rem; }
  .news-img { height: 140px; font-size: 3rem; }
  .news-body { padding: 16px; }
  .news-title { font-size: 0.85rem; }
  .news-card:first-child .news-title { font-size: 1rem; }

  /* Footer */
  footer { padding: 48px 20px 28px; }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }
  .footer-col h4 { margin-bottom: 14px; }
  .footer-col a { margin-bottom: 10px; }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .socials { justify-content: center; }
}

/* ============================================================
   SMALL PHONES — up to 380px
   ============================================================ */
@media (max-width: 380px) {
  h1 { font-size: clamp(1.9rem, 10vw, 2.4rem); }
  .players-grid { grid-template-columns: 1fr; }
  .player-image { height: 280px; }
  .hero-stats { flex-direction: column; gap: 2px; }
  .stat-card { padding: 12px 20px; }
  .stat-num { font-size: 1.6rem; }
}


.enquiry-section {
  text-align: center;
  padding: 120px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.enquiry-text {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 20px auto 40px;
}

.enquiry-btn {
  display: inline-block;
  padding: 16px 36px;
  background: var(--violet);
  color: var(--white);
  text-decoration: none;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.enquiry-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(123, 47, 255, 0.5);
}


.socials-section {
  text-align: center;
  padding: 100px 20px;
  background: var(--deep);
}

.socials-text {
  max-width: 700px;
  margin: 20px auto 40px;
  color: var(--muted);
  line-height: 1.8;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-links a {
  padding: 14px 28px;
  background: var(--panel);
  border: 1px solid var(--border);
  color: var(--white);
  text-decoration: none;
  font-family: 'Orbitron', sans-serif;
  transition: 0.3s ease;
}

.social-links a:hover {
  border-color: var(--violet);
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(123, 47, 255, 0.3);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-jersey {
  position: relative;
  width: 450px;
  height: 550px;
  z-index: 2;
}

.jersey-front {
  position: absolute;
  width: 340px;

  left: 20px;
  top: 20px;

  z-index: 2;

  filter: drop-shadow(0 0 40px rgba(123,47,255,0.5));
  animation: jerseyFloat 4s ease-in-out infinite;
}

.jersey-back {
  position: absolute;
  width: 310px;

  left: 150px;
  top: 10px;

  z-index: 1;
  opacity: 0.6;

  filter: blur(1px) drop-shadow(0 0 30px rgba(123,47,255,0.4));
}

@keyframes jerseyFloat {
  0%,100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}
.hero-jersey img {
  width: 500px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(123,47,255,0.5));
  animation: jerseyFloat 4s ease-in-out infinite;
}

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


@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding-top: 120px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-jersey {
    margin-top: 50px;
  }

  .hero-jersey img {
    width: 300px;
  }
}