/* =============================================
   APPATHY ESPORTS – Stylesheet
   ============================================= */

/* =============================================
   SPONSORS STRIP — MARQUEE
   ============================================= */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.sponsors-strip {
  background: #0b0b0f;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 20px 0 24px;
  overflow: hidden;
}
.sponsors-label {
  text-align: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 18px;
}
.sponsors-marquee {
  overflow: hidden;
  /* fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.sponsors-marquee:hover .sponsors-track { animation-play-state: paused; }
.sponsors-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 0;
  animation: marquee 28s linear infinite;
}
.sponsor-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 48px;
  opacity: .45;
  transition: opacity .3s;
  cursor: default;
  flex-shrink: 0;
}
.sponsor-item:hover { opacity: 1; }
.sp-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter .3s;
}
.sp-img-wide {
  width: auto;
  max-width: 100px;
  height: 28px;
}
.sponsor-item:hover .sp-img { filter: none; }
.sp-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

/* =============================================
   TRYOUTS SECTION
   ============================================= */
.tryouts-section {
  background: linear-gradient(180deg, var(--bg) 0%, #0e0820 100%);
  border-top: 1px solid rgba(124,58,237,.15);
}
.tryouts-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
}
.tryouts-text p {
  color: var(--grey);
  line-height: 1.7;
  margin: 18px 0 24px;
  max-width: 540px;
}
.tryouts-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.tryouts-list li {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--light);
  letter-spacing: .04em;
}
.tryouts-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.tryouts-badge {
  display: flex;
  justify-content: center;
}
.tb-inner {
  background: rgba(124,58,237,.08);
  border: 1px solid rgba(124,58,237,.3);
  border-radius: 16px;
  padding: 36px 32px;
  text-align: center;
  width: 100%;
  max-width: 340px;
  position: relative;
  overflow: hidden;
}
.tb-inner::before {
  content: '';
  position: absolute;
  top: -40px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(124,58,237,.2), transparent 70%);
  pointer-events: none;
}
.tb-icon { font-size: 2.8rem; margin-bottom: 14px; }
.tb-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: .18em;
  color: var(--purple-light);
  margin-bottom: 6px;
}
.tb-game {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  letter-spacing: .06em;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 20px;
}
.tb-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
}
.tb-roles span {
  font-family: 'Rajdhani', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  background: rgba(34,211,238,.1);
  color: var(--cyan);
  border: 1px solid rgba(34,211,238,.2);
}
.tb-note {
  font-size: .78rem;
  color: var(--grey);
  line-height: 1.5;
}

/* =============================================
   DISCORD CTA
   ============================================= */
.discord-section {
  padding: 24px 0 60px;
  background: #0e0820;
}
.discord-card {
  display: flex;
  align-items: center;
  gap: 28px;
  background: rgba(88,101,242,.08);
  border: 1px solid rgba(88,101,242,.25);
  border-radius: 16px;
  padding: 32px 40px;
  transition: border-color .25s;
}
.discord-card:hover { border-color: rgba(88,101,242,.5); }
.discord-icon {
  color: #5865f2;
  flex-shrink: 0;
  width: 64px; height: 64px;
  background: rgba(88,101,242,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.discord-text { flex: 1; }
.discord-text h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: .06em;
  color: var(--light);
  margin-bottom: 6px;
}
.discord-text p { color: var(--grey); font-size: .9rem; line-height: 1.6; }
.btn-discord {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #5865f2;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s, transform .2s;
}
.btn-discord:hover { background: #4752c4; transform: translateY(-2px); }

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Rajdhani:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

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

:root {
  --bg:         #070709;
  --dark:       #0c0c10;
  --card:       #111116;
  --card-2:     #18181f;
  --border:     rgba(255,255,255,0.06);
  --purple:     #7C3AED;
  --purple-l:   #9F67FF;
  --purple-dim: rgba(124,58,237,0.15);
  --cyan:       #22D3EE;
  --cyan-dim:   rgba(34,211,238,0.12);
  --green:      #22C55E;
  --red:        #EF4444;
  --gold:       #F59E0B;
  --white:      #FFFFFF;
  --grey:       #6B7280;
  --light:      #D1D5DB;
  --radius:     12px;
  --radius-sm:  8px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--light);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
h1,h2,h3 { font-family: 'Bebas Neue', sans-serif; line-height: 1.1; }
h4 { font-family: 'Rajdhani', sans-serif; font-weight: 700; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
strong { color: var(--white); }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.section-pad { padding: 100px 0; }

/* ---- Section headers ---- */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  gap: 16px;
}
.section-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--purple-l);
  margin-bottom: 8px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  color: var(--white);
  letter-spacing: .04em;
  line-height: 1;
}
.view-all {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--purple-l);
  white-space: nowrap;
  transition: color .2s;
  padding-bottom: 2px;
}
.view-all:hover { color: var(--cyan); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-purple {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 6px 28px rgba(124,58,237,.35);
}
.btn-purple:hover { background: var(--purple-l); box-shadow: 0 8px 36px rgba(124,58,237,.5); }
.btn-ghost {
  background: transparent;
  color: var(--light);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.04); }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background .3s, padding .3s, box-shadow .3s;
}
.navbar.scrolled {
  background: rgba(7,7,9,.96);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
  position: relative;
  flex-direction: column;
  line-height: 1;
}
.logo-a { font-family: 'Bebas Neue'; font-size: 1.6rem; color: var(--white); letter-spacing: .06em; }
.logo-b { font-family: 'Bebas Neue'; font-size: 1.6rem; color: var(--purple-l); letter-spacing: .06em; }
.logo-tag {
  font-family: 'Rajdhani', sans-serif;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--grey);
  text-transform: uppercase;
  line-height: 1;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--grey);
  padding: 8px 16px;
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,.05);
}
.nav-socials {
  display: flex;
  gap: 8px;
  align-items: center;
}
.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--grey);
  transition: color .2s, border-color .2s, background .2s;
}
.social-btn:hover { color: var(--white); border-color: var(--purple); background: var(--purple-dim); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: .3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: var(--bg);
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.glow-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(124,58,237,.18) 0%, transparent 70%);
  top: -150px; right: -100px;
}
.glow-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(34,211,238,.08) 0%, transparent 70%);
  bottom: 0; left: -100px;
}
.hero-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,.08) 2px,
    rgba(0,0,0,.08) 4px
  );
  pointer-events: none;
  opacity: .5;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 130px 0 80px;
  max-width: 900px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid var(--cyan-dim);
  background: var(--cyan-dim);
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.live-dot {
  width: 7px; height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  animation: livePulse 1.8s ease-in-out infinite;
  box-shadow: 0 0 8px var(--cyan);
}
@keyframes livePulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.6); }
}
.hero-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.ht-main {
  font-size: clamp(5rem, 14vw, 12rem);
  color: var(--white);
  letter-spacing: .04em;
  line-height: .9;
}
.ht-accent { color: var(--purple-l); }
.ht-sub {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: .4em;
  color: var(--grey);
  text-transform: uppercase;
  margin-top: 8px;
}
.hero-tagline {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--purple-l);
  margin-bottom: 20px;
}
.tag-sep { color: var(--grey); margin: 0 4px; }
.hero-desc {
  font-size: .95rem;
  color: var(--grey);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero-stats {
  display: flex;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hstat { padding: 0 32px; }
.hstat:first-child { padding-left: 0; }
.hstat strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--white);
  letter-spacing: .06em;
  line-height: 1;
}
.hstat span { font-size: .7rem; color: var(--grey); letter-spacing: .08em; text-transform: uppercase; }
.hstat-sep { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; }
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}
.hero-scroll-hint span {
  display: block;
  width: 2px;
  height: 44px;
  background: linear-gradient(to bottom, var(--purple), transparent);
  border-radius: 2px;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: .3; transform: scaleY(1); }
  50% { opacity: .9; transform: scaleY(.6); }
}

/* =============================================
   NEWS
   ============================================= */
.news-section { background: var(--dark); }
.news-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
}
.news-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.news-card:hover { border-color: rgba(124,58,237,.4); transform: translateY(-4px); }
.news-img-wrap { position: relative; }
.news-img {
  height: 200px;
  background-size: cover;
}
.news-featured .news-img { height: 240px; }
.news-img-1 { background: url('../images/news/news-1.jpg') center/cover no-repeat; }
.news-img-2 { background: url('../images/news/news-2.jpg') center/cover no-repeat; }
.news-img-3 { background: url('../images/news/news-3.jpg') center/cover no-repeat; }
.news-cat {
  position: absolute;
  top: 14px; left: 14px;
  font-family: 'Rajdhani', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
}
.news-cat.valorant { background: rgba(255,70,85,.9); color: #fff; }
.news-cat.cs2      { background: rgba(34,211,238,.9); color: #000; }
.news-cat.org      { background: rgba(124,58,237,.9); color: #fff; }
.news-body { padding: 22px; }
.news-date {
  font-size: .72rem;
  color: var(--grey);
  letter-spacing: .06em;
  display: block;
  margin-bottom: 8px;
}
.news-body h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.4;
}
.news-body p {
  font-size: .85rem;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 16px;
}
.news-link {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--purple-l);
  transition: color .2s;
}
.news-link:hover { color: var(--cyan); }

/* =============================================
   ROSTER
   ============================================= */
.roster-section { background: var(--bg); }
.roster-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
}
.roster-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--card);
  color: var(--grey);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all .2s;
}
.roster-tab.active {
  background: var(--purple-dim);
  border-color: var(--purple);
  color: var(--white);
}
.tab-dot { width: 8px; height: 8px; border-radius: 50%; }
.valorant-dot { background: #FF4655; }
.cs2-dot      { background: var(--cyan); }
.roster-panel { display: none; }
.roster-panel.active { display: block; }
.roster-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.roster-grid-rl {
  max-width: 720px;
}
.tab-game-pill {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 2px 8px;
  border-radius: 4px;
}
.tab-game-pill.cs2 { background: rgba(34,211,238,.15); color: #22D3EE; }
.tab-game-pill.rl  { background: rgba(255,140,0,.15);  color: #FF8C00; }
.pg-rl-1 { background: linear-gradient(160deg, #2a1a00, #FF8C00); }
.pg-rl-2 { background: linear-gradient(160deg, #1a2a00, #a3e635); }
.pg-rl-3 { background: linear-gradient(160deg, #001a2a, #38bdf8); }
.role-scorer     { background: rgba(255,140,0,.15);  color: #FF8C00; }
.role-playmaker  { background: rgba(163,230,53,.15);  color: #a3e635; }
.role-gk         { background: rgba(56,189,248,.15);  color: #38bdf8; }
.player-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.player-card:hover {
  border-color: var(--purple);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(124,58,237,.2);
}
.player-bg {
  height: 140px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.player-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,.12);
  image-rendering: pixelated;
  position: relative;
  z-index: 2;
}
.pg-1  { background: linear-gradient(160deg, #1e0a3a, #7C3AED); }
.pg-2  { background: linear-gradient(160deg, #3a0a1a, #D946EF); }
.pg-3  { background: linear-gradient(160deg, #0a1e3a, #3B82F6); }
.pg-4  { background: linear-gradient(160deg, #0a3a1e, #22C55E); }
.pg-5  { background: linear-gradient(160deg, #3a2a0a, #F59E0B); }
.pg-6  { background: linear-gradient(160deg, #1e1a0a, #EF4444); }
.pg-7  { background: linear-gradient(160deg, #0a1a2e, #22D3EE); }
.pg-8  { background: linear-gradient(160deg, #2a0a0a, #F97316); }
.pg-9  { background: linear-gradient(160deg, #0a0a2a, #818CF8); }
.pg-10 { background: linear-gradient(160deg, #0a2a1a, #34D399); }
.player-num {
  position: absolute;
  top: 12px; right: 14px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: rgba(255,255,255,.15);
  letter-spacing: .04em;
  line-height: 1;
}
.player-body { padding: 16px; }
.player-role {
  font-family: 'Rajdhani', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 8px;
}
.role-igl       { background: rgba(245,158,11,.15); color: #F59E0B; }
.role-duelist   { background: rgba(255,70,85,.15);  color: #FF4655; }
.role-sentinel  { background: rgba(34,211,238,.15); color: #22D3EE; }
.role-controller{ background: rgba(34,197,94,.15);  color: #22C55E; }
.role-initiator { background: rgba(124,58,237,.15); color: #9F67FF; }
.role-awp       { background: rgba(34,211,238,.15); color: #22D3EE; }
.role-entry     { background: rgba(239,68,68,.15);  color: #EF4444; }
.role-support   { background: rgba(129,140,248,.15);color: #818CF8; }
.role-lurk      { background: rgba(107,114,128,.15);color: #9CA3AF; }
.role-rifler    { background: rgba(251,191,36,.15);  color: #FBBf24; }
.player-tag {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: .06em;
  margin-bottom: 4px;
}
.player-name {
  font-size: .78rem;
  color: var(--grey);
  margin-bottom: 12px;
}
.player-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.player-flag { font-size: 1rem; }
.player-game {
  font-family: 'Rajdhani', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--grey);
}

/* =============================================
   RESULTS
   ============================================= */
.results-section { background: var(--dark); }
.results-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}
.rf-btn {
  padding: 8px 20px;
  border-radius: 6px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--card);
  color: var(--grey);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all .2s;
}
.rf-btn.active, .rf-btn:hover {
  background: var(--purple-dim);
  border-color: var(--purple);
  color: var(--white);
}
.results-table {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.result-row {
  display: grid;
  grid-template-columns: 130px 1fr 2fr 80px 110px;
  align-items: center;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  transition: border-color .2s, background .2s;
}
.result-row:hover { background: var(--card-2); }
.result-row.win  { border-left-color: var(--green); }
.result-row.loss { border-left-color: var(--red); }
.r-game { flex-shrink: 0; }
.game-pill {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.game-pill.valorant { background: rgba(255,70,85,.15);  color: #FF4655; }
.game-pill.cs2      { background: rgba(34,211,238,.15); color: #22D3EE; }
.game-pill.rl       { background: rgba(255,140,0,.15);  color: #FF8C00; }
.r-event {
  font-size: .82rem;
  color: var(--grey);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.r-match {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.r-team { flex: 1; }
.r-us   { text-align: right; }
.r-them { text-align: left; }
.r-tag {
  font-family: 'Rajdhani', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--light);
}
.r-us .r-tag { color: var(--white); }
.r-score {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.score-us, .score-them {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: .06em;
  min-width: 28px;
  text-align: center;
}
.score-us { color: var(--white); }
.score-them { color: var(--grey); }
.result-row.win  .score-us   { color: var(--green); }
.result-row.loss .score-them { color: var(--red); }
.score-sep { color: var(--border); font-size: .9rem; }
.win-badge, .loss-badge {
  font-family: 'Rajdhani', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-align: center;
  padding: 5px 12px;
  border-radius: 4px;
}
.win-badge  { background: rgba(34,197,94,.15);  color: var(--green); }
.loss-badge { background: rgba(239,68,68,.15);  color: var(--red); }
.r-date {
  font-size: .78rem;
  color: var(--grey);
  text-align: right;
}

/* =============================================
   ABOUT
   ============================================= */
.about-section { background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-text p {
  font-size: .92rem;
  color: var(--grey);
  line-height: 1.9;
  margin-bottom: 16px;
}
.about-cta { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pillar-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: border-color .3s, transform .3s;
}
.pillar-card:hover { border-color: var(--purple); transform: translateY(-3px); }
.pillar-icon { font-size: 1.8rem; margin-bottom: 12px; }
.pillar-card h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 8px;
}
.pillar-card p { font-size: .83rem; color: var(--grey); line-height: 1.7; margin: 0; }

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: #040406;
  border-top: 1px solid var(--border);
  padding: 60px 0 24px;
  color: var(--grey);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo { display: flex; align-items: baseline; gap: 0; margin-bottom: 12px; }
.footer-brand p { font-size: .85rem; line-height: 1.8; max-width: 260px; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 8px; }
.footer-links h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { font-size: .85rem; color: var(--grey); transition: color .2s; }
.footer-links ul li a:hover { color: var(--purple-l); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.2); }
.footer-bottom a { color: var(--purple-l); }

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* =============================================
   SCROLL TOP
   ============================================= */
.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 42px; height: 42px;
  background: var(--purple);
  color: #fff;
  border: none; border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .2s;
  z-index: 500;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: translateY(-3px); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1200px) {
  .roster-grid { grid-template-columns: repeat(3, 1fr); }
  .news-grid   { grid-template-columns: 1fr 1fr; }
  .news-card:first-child { grid-column: span 2; }
}

@media (max-width: 1024px) {
  .result-row { grid-template-columns: 110px 1fr 2fr 70px 100px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .section-pad { padding: 72px 0; }
  .container   { padding: 0 20px; }

  .nav-links {
    display: none;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(7,7,9,.97);
    flex-direction: column;
    justify-content: center;
    z-index: 99;
    gap: 8px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.3rem; padding: 14px 32px; }
  .nav-socials { display: none; }
  .hamburger   { display: flex; z-index: 100; }

  .hero-content { padding: 110px 0 60px; }
  .hero-stats   { flex-wrap: wrap; gap: 20px; }
  .hstat-sep    { display: none; }
  .hstat        { padding: 0 16px; }

  .news-grid    { grid-template-columns: 1fr; }
  .news-card:first-child { grid-column: span 1; }

  .roster-grid  { grid-template-columns: repeat(2, 1fr); }

  .result-row   { grid-template-columns: 1fr; gap: 10px; padding: 14px 16px; }
  .r-date       { text-align: left; }

  .about-pillars { grid-template-columns: 1fr 1fr; }
  .footer-inner  { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 480px) {
  .ht-main     { font-size: 4.5rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .roster-grid  { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
  .roster-tabs  { flex-direction: column; }
  .roster-tab   { width: 100%; justify-content: center; }
  .tryouts-actions { flex-direction: column; }
  .tryouts-actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 1024px) {
  .tryouts-inner { grid-template-columns: 1fr; gap: 40px; }
  .tryouts-badge { display: none; }
}

@media (max-width: 768px) {
  .discord-card { flex-direction: column; text-align: center; gap: 20px; padding: 28px 24px; }
  .discord-card .btn-discord { width: 100%; justify-content: center; }
}
