/* ============================================================
   BITTERSEET ESPORTS — style.css
   Colors: #ff0066 (primary) | #ffba00 (secondary)
           #f3f3f3 (text)    | #101010 (bg)
   ============================================================ */

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --primary:   #ff0066;
  --secondary: #ffba00;
  --text:      #f3f3f3;
  --bg:        #0d0d0d;
  --bg-card:   #161616;
  --bg-card-2: #121212;
  --border:    rgba(255, 0, 102, 0.25);
  --glow-p:    0 0 30px rgba(255, 0, 102, 0.5);
  --glow-s:    0 0 30px rgba(255, 186, 0, 0.5);
  --font-head: 'Orbitron', sans-serif;
  --font-body: 'Rajdhani', sans-serif;
  --ease:      0.3s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
}

a { color: var(--text); text-decoration: none; transition: color var(--ease); }
img { max-width: 100%; display: block; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section    { padding: 100px 0; }

.section-tag {
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--secondary);
  text-align: center;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  text-align: center;
  margin-bottom: 0.75rem;
}
.section-title span { color: var(--primary); }

.section-sub {
  text-align: center;
  color: rgba(243,243,243,0.5);
  font-size: 1.05rem;
  margin-bottom: 4rem;
}

.divider {
  width: 70px; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
  margin: 0.75rem auto 3.5rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--primary);
  color: var(--bg);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: transparent;
  color: var(--primary);
  box-shadow: var(--glow-p);
}

.btn-outline {
  background: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
}
.btn-outline:hover {
  background: var(--secondary);
  color: var(--bg);
  box-shadow: var(--glow-s);
}

/* ghost button — used in hero */
.btn-ghost {
  background: transparent;
  color: rgba(243,243,243,0.75);
  border-color: rgba(243,243,243,0.2);
}
.btn-ghost:hover {
  border-color: var(--text);
  color: var(--text);
  background: rgba(255,255,255,0.04);
}

/* ===== PAGE LOADER ===== */
.page-loader {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; }

.loader-logo {
  width: 56px; height: 56px;
  animation: loaderPulse 1.4s ease-in-out infinite;
}
.loader-logo img { width: 100%; height: 100%; }

.loader-wordmark {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 3px;
}
.loader-wordmark span { color: var(--primary); }

.loader-bar {
  width: 160px; height: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 1px;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  animation: loaderFill 1.4s ease forwards;
}

@keyframes loaderFill    { from { width: 0; } to { width: 100%; } }
@keyframes loaderPulse   { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.6; transform:scale(0.92); } }

/* ===== BG GRID ===== */
.bg-grid {
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(255,0,102,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,0,102,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(13,13,13,0.7);
  border-bottom: 1px solid rgba(255,0,102,0.1);
  transition: padding var(--ease), background var(--ease);
}
.navbar.scrolled {
  padding: 0.7rem 0;
  background: rgba(13,13,13,0.97);
  border-bottom-color: rgba(255,0,102,0.18);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 1px;
}
.nav-logo img { width: 34px; height: 34px; }
.nav-logo .logo-bs { color: var(--primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(243,243,243,0.55);
  position: relative;
  transition: color var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  box-shadow: var(--glow-p);
  transition: width var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  padding: 0.42rem 1.3rem !important;
  background: var(--primary) !important;
  color: var(--bg) !important;
  border-radius: 3px !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: rgba(255,0,102,0.15) !important; color: var(--primary) !important; }

/* Nav dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a::after { content: ' ▾'; font-size: 0.55rem; }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(13,13,13,0.97);
  border: 1px solid rgba(255,0,102,0.2);
  border-radius: 6px;
  padding: 0.4rem 0;
  padding-top: calc(0.4rem + 10px);
  min-width: 140px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  transform: translateX(-50%) translateY(-4px);
  z-index: 2000;
  backdrop-filter: blur(12px);
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown,
.has-dropdown.dropdown-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown li { list-style: none; }
.nav-dropdown a {
  display: block;
  padding: 0.55rem 1.2rem;
  font-size: 0.65rem;
  letter-spacing: 1px;
  color: rgba(243,243,243,0.6);
  white-space: nowrap;
}
.nav-dropdown a::after { display: none !important; }
.nav-dropdown a:hover { color: var(--primary); background: rgba(255,0,102,0.06); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  transition: all 0.35s ease;
}
.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 {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
}

/* ambient glow orbs */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.hero-glow-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,0,102,0.13) 0%, transparent 70%);
  top: -200px; left: -150px;
  animation: glowFloat1 8s ease-in-out infinite;
}
.hero-glow-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,186,0,0.08) 0%, transparent 70%);
  bottom: -100px; right: -80px;
  animation: glowFloat2 10s ease-in-out infinite;
}
.hero-glow-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,0,102,0.07) 0%, transparent 70%);
  top: 50%; right: 20%;
  animation: glowFloat1 12s ease-in-out infinite reverse;
}

@keyframes glowFloat1 {
  0%,100% { transform: translate(0, 0); }
  50%      { transform: translate(40px, 30px); }
}
@keyframes glowFloat2 {
  0%,100% { transform: translate(0, 0); }
  50%      { transform: translate(-30px, -20px); }
}

/* scanlines */
.hero-scanlines {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.04) 3px,
    rgba(0,0,0,0.04) 4px
  );
  pointer-events: none;
  z-index: 2;
}

/* corner brackets */
.hero-corner {
  position: absolute;
  width: 48px; height: 48px;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  animation: cornerFadeIn 0.6s ease 1.8s forwards;
}
.hero-corner::before,
.hero-corner::after {
  content: '';
  position: absolute;
  background: var(--primary);
  opacity: 0.6;
}
.hero-corner::before { width: 100%; height: 2px; top: 0; left: 0; }
.hero-corner::after  { width: 2px; height: 100%; top: 0; left: 0; }

.hero-corner-tl { top: 2rem; left: 2rem; }
.hero-corner-tr { top: 2rem; right: 2rem; transform: scaleX(-1); }
.hero-corner-bl { bottom: 2rem; left: 2rem; transform: scaleY(-1); }
.hero-corner-br { bottom: 2rem; right: 2rem; transform: scale(-1,-1); }

@keyframes cornerFadeIn { to { opacity: 1; } }

/* hero content */
.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 0 2rem;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.68rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeSlideDown 0.6s ease 0.4s forwards;
}
.eyebrow-line {
  flex: 0 0 50px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--secondary));
}
.eyebrow-line-r {
  background: linear-gradient(90deg, var(--secondary), transparent);
}

/* hero title */
.hero-title {
  display: block;
  font-weight: 900;
  letter-spacing: -4px;
  line-height: 0.88;
  margin-bottom: 2rem;
}

.hero-word-bitter {
  display: block;
  font-size: clamp(5rem, 14vw, 11rem);
  color: var(--text);
  -webkit-text-stroke: 0;
}

.hero-word-sweet {
  display: block;
  font-size: clamp(5rem, 14vw, 11rem);
  color: transparent;
  -webkit-text-stroke: 2px var(--primary);
  text-shadow: none;
  filter: drop-shadow(0 0 40px rgba(255,0,102,0.3));
}

/* glitch effect */
.glitch {
  position: relative;
  display: inline-block;
}
.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
.hero-word-bitter::before { color: var(--primary); }
.hero-word-bitter::after  { color: var(--secondary); }
.hero-word-sweet::before  {
  color: transparent;
  -webkit-text-stroke: 2px var(--primary);
}
.hero-word-sweet::after   {
  color: transparent;
  -webkit-text-stroke: 2px var(--secondary);
}

.glitch::before {
  clip-path: polygon(0 0, 100% 0, 100% 38%, 0 38%);
  animation: glitchTop 4s infinite;
}
.glitch::after {
  clip-path: polygon(0 62%, 100% 62%, 100% 100%, 0 100%);
  animation: glitchBot 4s infinite;
}

@keyframes glitchTop {
  0%, 85%, 100% { transform: translate(-3px, 0); opacity: 1; }
  86% { transform: translate(6px, -2px); opacity: 0.8; }
  88% { transform: translate(-4px, 2px); opacity: 0.8; }
  90% { transform: translate(-3px, 0); opacity: 1; }
}
@keyframes glitchBot {
  0%, 85%, 100% { transform: translate(3px, 0); opacity: 1; }
  86% { transform: translate(-6px, 2px); opacity: 0.8; }
  88% { transform: translate(4px, -2px); opacity: 0.8; }
  90% { transform: translate(3px, 0); opacity: 1; }
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: rgba(243,243,243,0.45);
  margin-bottom: 2.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 1px;
  opacity: 0;
  animation: fadeSlideUp 0.6s ease 0.8s forwards;
}
.typewriter {
  color: var(--secondary);
  border-right: 2px solid var(--secondary);
  padding-right: 3px;
  animation: blink 0.8s step-end infinite;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  opacity: 0;
  animation: fadeSlideUp 0.6s ease 1.1s forwards;
}

/* inline hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 2.5rem;
  gap: 0;
  opacity: 0;
  animation: fadeSlideUp 0.6s ease 1.4s forwards;
}

.hero-stat { padding: 0 2.5rem; text-align: center; }
.hero-stat-sep {
  width: 1px; height: 36px;
  background: rgba(255,255,255,0.1);
}
.hero-stat-val {
  display: block;
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.hero-stat-lbl {
  font-family: var(--font-head);
  font-size: 0.58rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(243,243,243,0.3);
}

/* scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(243,243,243,0.25);
  font-family: var(--font-head);
  font-size: 0.58rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: scrollBounce 2.5s ease-in-out infinite;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--primary));
}

/* ===== MARQUEE ===== */
.marquee-band {
  overflow: hidden;
  padding: 0.9rem 0;
  position: relative;
  z-index: 1;
  user-select: none;
}

.marquee-band-primary {
  background: rgba(255,0,102,0.04);
  border-top: 1px solid rgba(255,0,102,0.12);
  border-bottom: 1px solid rgba(255,0,102,0.12);
}

.marquee-band-gold {
  background: rgba(255,186,0,0.03);
  border-top: 1px solid rgba(255,186,0,0.1);
  border-bottom: 1px solid rgba(255,186,0,0.1);
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marqueeScroll 40s linear infinite;
}
.marquee-reverse {
  animation-direction: reverse;
}

/* pause on hover */
.marquee-band:hover .marquee-track {
  animation-play-state: paused;
}

.mq-item {
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(243,243,243,0.35);
  padding: 0 2.5rem;
  white-space: nowrap;
}
.mq-red  { color: var(--primary); }
.mq-gold { color: var(--secondary); }

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== FEATURE CARDS ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,0,102,0.1);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,0,102,0.3);
  box-shadow: 0 24px 48px rgba(255,0,102,0.08), 0 0 0 1px rgba(255,0,102,0.08);
}
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon { font-size: 3rem; margin-bottom: 1.25rem; }
.feature-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}
.feature-text {
  color: rgba(243,243,243,0.5);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

/* ===== NEWS CARDS ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.news-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
}
.news-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,0,102,0.22);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.news-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a1a1a, #1e1e1e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
}
.news-tag {
  position: absolute;
  bottom: 0.75rem; left: 0.75rem;
  background: var(--primary);
  color: var(--bg);
  font-family: var(--font-head);
  font-size: 0.6rem;
  letter-spacing: 1px;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  text-transform: uppercase;
}
.news-body { padding: 1.5rem; }
.news-date {
  font-family: var(--font-head);
  font-size: 0.68rem;
  letter-spacing: 1px;
  color: rgba(243,243,243,0.3);
  margin-bottom: 0.5rem;
}
.news-title {
  font-family: var(--font-head);
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}
.news-excerpt {
  font-size: 0.9rem;
  color: rgba(243,243,243,0.5);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.read-more {
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--primary);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap var(--ease);
}
.read-more:hover { gap: 1rem; color: var(--primary); }

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, rgba(255,0,102,0.1), rgba(255,186,0,0.05));
  border: 1px solid rgba(255,0,102,0.15);
  border-radius: 12px;
  padding: 4.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(255,0,102,0.015) 3px,
    rgba(255,0,102,0.015) 4px
  );
  pointer-events: none;
}
.cta-band h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; position: relative; }
.cta-band p  { color: rgba(243,243,243,0.5); margin-bottom: 2rem; font-size: 1.05rem; position: relative; }
.cta-band .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 170px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,0,102,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,0,102,0.2), rgba(255,186,0,0.1), transparent);
}
.page-header-tag {
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 1rem;
}
.page-header h1 { font-size: clamp(3rem, 7vw, 5.5rem); margin-bottom: 1rem; }
.page-header p {
  color: rgba(243,243,243,0.5);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual { position: relative; }
.about-frame {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(255,0,102,0.1), rgba(255,186,0,0.05));
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  position: relative;
  overflow: hidden;
}
.about-frame::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(transparent, rgba(255,0,102,0.07), transparent 30%);
  animation: spinSlow 8s linear infinite;
}
.about-frame-label {
  position: absolute;
  bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-size: 0.65rem;
  letter-spacing: 4px;
  color: rgba(243,243,243,0.3);
  text-transform: uppercase;
  white-space: nowrap;
}
.about-frame .af-corner {
  position: absolute;
  width: 40px; height: 40px;
  border-color: var(--primary);
  border-style: solid;
  border-width: 0;
}
.about-frame .af-corner.tl { top: 16px; left: 16px; border-top-width: 2px; border-left-width: 2px; }
.about-frame .af-corner.tr { top: 16px; right: 16px; border-top-width: 2px; border-right-width: 2px; }
.about-frame .af-corner.bl { bottom: 16px; left: 16px; border-bottom-width: 2px; border-left-width: 2px; }
.about-frame .af-corner.br { bottom: 16px; right: 16px; border-bottom-width: 2px; border-right-width: 2px; }

.about-content h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 1.5rem; }
.about-content h2 span { color: var(--primary); }
.about-content p { color: rgba(243,243,243,0.65); line-height: 1.9; margin-bottom: 1.25rem; font-size: 1.05rem; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.value-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,186,0,0.1);
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}
.value-card:hover {
  border-color: var(--secondary);
  box-shadow: 0 0 20px rgba(255,186,0,0.07);
  transform: translateY(-4px);
}
.value-icon { font-size: 1.75rem; margin-bottom: 0.5rem; }
.value-name {
  font-family: var(--font-head);
  font-size: 0.9rem;
  color: var(--secondary);
  margin-bottom: 0.35rem;
}
.value-desc { font-size: 0.88rem; color: rgba(243,243,243,0.5); line-height: 1.6; }

/* Timeline */
.timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--secondary), transparent);
}
.tl-item {
  position: relative;
  padding: 0 0 3rem 2.5rem;
}
.tl-item::before {
  content: '';
  position: absolute;
  top: 5px; left: -4.5px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid var(--bg);
  box-shadow: 0 0 10px var(--primary);
}
.tl-year {
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 2px;
  color: var(--secondary);
  margin-bottom: 0.4rem;
}
.tl-title { font-family: var(--font-head); font-size: 1.15rem; margin-bottom: 0.4rem; }
.tl-text  { color: rgba(243,243,243,0.55); font-size: 0.95rem; line-height: 1.7; }

/* Sponsors */
.sponsors-row {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.sponsor-placeholder {
  width: 150px; height: 150px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: rgba(243,243,243,0.2);
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.sponsor-placeholder:hover {
  border-color: rgba(255,0,102,0.3);
  color: rgba(243,243,243,0.4);
  background: rgba(255,255,255,0.03);
}
.sponsor-placeholder img {
  max-width: 110px;
  max-height: 110px;
  object-fit: contain;
}

/* ===== TEAMS ===== */
.game-section { margin-bottom: 5rem; }

.game-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.game-tag {
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--primary);
  color: var(--bg);
  padding: 0.3rem 1rem;
  border-radius: 3px;
}
.game-name { font-size: clamp(1.4rem, 2.5vw, 2rem); }
.game-divider { flex: 1; height: 1px; background: rgba(255,0,102,0.1); }

.game-accent-bar { height: 4px; border-radius: 2px; margin-bottom: 2.5rem; width: 60px; }
.game-accent-val { background: linear-gradient(90deg, var(--primary), transparent); }
.game-accent-lol { background: linear-gradient(90deg, var(--secondary), transparent); }
.game-accent-rl  { background: linear-gradient(90deg, rgba(80,160,255,0.8), transparent); }

.roster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1.25rem;
}

.player-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,0,102,0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
}
.player-card:hover {
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(255,0,102,0.1), 0 0 0 1px rgba(255,0,102,0.25);
}

.player-avatar {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #1c1c1c, #222);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}
.player-avatar::before {
  content: '';
  position: absolute;
  width: 80%; height: 80%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,0,102,0.1) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.player-avatar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(to top, var(--bg-card), transparent);
}
.av-lol::before { background: radial-gradient(circle, rgba(255,186,0,0.1) 0%, transparent 70%); }
.av-lol { background: linear-gradient(135deg, #1a1a10, #1e1e14) !important; }
.av-rl  { background: linear-gradient(135deg, #0e1018, #10121e) !important; }
.av-rl::before { background: radial-gradient(circle, rgba(80,160,255,0.1) 0%, transparent 70%); }

.av-initials {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  color: rgba(255,0,102,0.7);
  text-shadow: 0 0 40px rgba(255,0,102,0.4), 0 2px 8px rgba(0,0,0,0.6);
  position: relative;
  z-index: 1;
}
.av-lol .av-initials {
  color: rgba(255,186,0,0.7);
  text-shadow: 0 0 40px rgba(255,186,0,0.4), 0 2px 8px rgba(0,0,0,0.6);
}
.av-rl .av-initials {
  color: rgba(80,160,255,0.7);
  text-shadow: 0 0 40px rgba(80,160,255,0.4), 0 2px 8px rgba(0,0,0,0.6);
}

.role-badge {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  background: rgba(255,0,102,0.9);
  color: var(--bg);
  font-family: var(--font-head);
  font-size: 0.6rem;
  letter-spacing: 1px;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  text-transform: uppercase;
  z-index: 1;
}

/* Player photo — hidden until an image is uploaded via admin */
.player-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 2;
  display: none;
  border-radius: 0;
}
.player-photo.loaded { display: block; }

/* When a photo is loaded, fade out the initials */
.player-avatar:has(.player-photo.loaded) .av-initials { opacity: 0; }

/* Admin upload overlay — shown when admin panel is open */
.player-avatar .bsa-photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  z-index: 4;
  opacity: 0;
  transition: opacity 0.2s;
  cursor: pointer;
  border-radius: 0;
}
.player-avatar:hover .bsa-photo-overlay { opacity: 1; }
.bsa-photo-overlay-icon { font-size: 1.6rem; line-height: 1; }
.bsa-photo-overlay-lbl {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 2px;
  color: #fff;
  text-transform: uppercase;
}
.bsa-photo-overlay-remove {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.5rem;
  letter-spacing: 1px;
  color: rgba(255,100,100,0.9);
  text-transform: uppercase;
  margin-top: 0.2rem;
  padding: 0.2rem 0.5rem;
  border: 1px solid rgba(255,100,100,0.4);
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s;
  background: none;
}
.bsa-photo-overlay-remove:hover { background: rgba(255,0,0,0.2); }

.player-info { padding: 1.15rem; }
.player-ign  { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; margin-bottom: 0.2rem; }
.player-real { font-size: 0.82rem; color: rgba(243,243,243,0.35); }

.player-stats {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.p-stat { flex: 1; text-align: center; }
.p-stat-val { font-family: var(--font-head); font-size: 0.95rem; font-weight: 700; color: var(--secondary); }
.p-stat-lbl { font-size: 0.6rem; color: rgba(243,243,243,0.3); text-transform: uppercase; letter-spacing: 1px; }

.coach-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}
.coach-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,186,0,0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}
.coach-card:hover {
  border-color: var(--secondary);
  box-shadow: 0 20px 40px rgba(255,186,0,0.1), 0 0 0 1px rgba(255,186,0,0.25);
}
.coach-card .player-avatar {
  background: linear-gradient(135deg, #1a1a10, #1e1e14);
}
.coach-card .player-avatar::before {
  background: radial-gradient(circle, rgba(255,186,0,0.1) 0%, transparent 70%);
}
.coach-card .av-initials {
  color: rgba(255,186,0,0.7);
  text-shadow: 0 0 40px rgba(255,186,0,0.4), 0 2px 8px rgba(0,0,0,0.6);
}
.coach-card .role-badge {
  background: rgba(255,186,0,0.9);
  color: var(--bg);
}
.coach-name { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; margin-bottom: 0.2rem; }
.coach-real { font-size: 0.82rem; color: rgba(243,243,243,0.4); }

/* ===== PLAYER BIO MODAL ===== */
.player-card { cursor: pointer; }

.player-bio-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.player-bio-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.player-bio-modal {
  background: #111;
  border: 1px solid rgba(255,0,102,0.25);
  border-radius: 14px;
  max-width: 680px;
  width: 100%;
  overflow: hidden;
  position: relative;
  transform: translateY(28px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 40px 100px rgba(0,0,0,0.65), 0 0 0 1px rgba(255,0,102,0.08);
  max-height: 90vh;
  overflow-y: auto;
}
.player-bio-overlay.open .player-bio-modal {
  transform: translateY(0) scale(1);
}
.player-bio-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--primary), transparent);
}
.player-bio-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(243,243,243,0.5);
  font-size: 1rem;
  transition: all 0.2s;
  z-index: 10;
  line-height: 1;
}
.player-bio-close:hover {
  background: rgba(255,0,102,0.15);
  border-color: rgba(255,0,102,0.4);
  color: var(--primary);
}
.player-bio-body {
  display: grid;
  grid-template-columns: 220px 1fr;
}
.player-bio-avatar-col {
  background: linear-gradient(135deg, #161616, #1c1c1c);
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
.player-bio-avatar-col::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 60%, rgba(255,0,102,0.12) 0%, transparent 70%);
  z-index: 0;
}
.player-bio-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
}
.player-bio-avatar-img:not([src]), .player-bio-avatar-img[src=""] { display: none; }
.player-bio-avatar-initials {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255,0,102,0.2);
  letter-spacing: 4px;
  z-index: 0;
}
.player-bio-info-col {
  padding: 2rem 2rem 2rem 1.75rem;
  display: flex;
  flex-direction: column;
}
.player-bio-role-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.55rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid rgba(255,0,102,0.35);
  border-radius: 3px;
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.6rem;
  width: fit-content;
}
.player-bio-ign {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 0.3rem;
}
.player-bio-real {
  font-size: 0.85rem;
  color: rgba(243,243,243,0.35);
  margin-bottom: 1.25rem;
}
.player-bio-stats {
  display: flex;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.player-bio-stat {
  flex: 1;
  text-align: center;
  padding: 0.75rem 0.5rem;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.player-bio-stat:last-child { border-right: none; }
.player-bio-stat-val {
  display: block;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
}
.player-bio-stat-lbl {
  display: block;
  font-size: 0.58rem;
  color: rgba(243,243,243,0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.15rem;
}
.player-bio-about-title {
  font-family: var(--font-head);
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,0,102,0.7);
  margin-bottom: 0.5rem;
}
.player-bio-about-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(243,243,243,0.55);
  flex: 1;
}

@media (max-width: 560px) {
  .player-bio-body { grid-template-columns: 1fr; }
  .player-bio-avatar-col { min-height: 200px; }
  .player-bio-info-col { padding: 1.5rem; }
  .player-bio-ign { font-size: 1.4rem; }
}

/* ===== SCHEDULE ===== */
.tabs {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  width: fit-content;
  margin: 0 auto 3rem;
}
.tab-btn {
  padding: 0.75rem 2.5rem;
  background: transparent;
  border: none;
  border-right: 1px solid var(--border);
  color: rgba(243,243,243,0.5);
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--ease);
}
.tab-btn:last-child { border-right: none; }
.tab-btn.active, .tab-btn:hover { background: var(--primary); color: var(--bg); }

.tab-content { display: none; animation: fadeIn 0.4s ease; }
.tab-content.active { display: block; }

.match-list { display: flex; flex-direction: column; gap: 1rem; }

.match-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,0,102,0.08);
  border-radius: 8px;
  padding: 1.5rem 2rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color var(--ease), box-shadow var(--ease);
}
.match-card.visible { opacity: 1; transform: translateX(0); }
.match-card:hover { border-color: rgba(255,0,102,0.28); box-shadow: 0 0 24px rgba(255,0,102,0.05); }

.match-team { display: flex; align-items: center; gap: 1rem; font-family: var(--font-head); font-size: 1rem; }
.match-team.away { flex-direction: row-reverse; text-align: right; }

.team-ico {
  width: 48px; height: 48px;
  background: transparent;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.match-mid    { text-align: center; }
.match-score  { font-family: var(--font-head); font-size: 1.6rem; font-weight: 900; }
.match-vs     { font-family: var(--font-head); font-size: 0.9rem; color: var(--primary); letter-spacing: 2px; }
.match-date   { font-family: var(--font-head); font-size: 0.68rem; letter-spacing: 1px; color: rgba(243,243,243,0.3); margin-top: 0.25rem; }
.match-event  { font-size: 0.82rem; color: rgba(243,243,243,0.4); margin-top: 0.2rem; }

.badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.65rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.2rem 0.75rem;
  border-radius: 20px;
  margin-top: 0.35rem;
}
.badge-win  { background: rgba(0,255,100,0.08);  color: #00ff64; border: 1px solid rgba(0,255,100,0.2); }
.badge-loss { background: rgba(255,0,102,0.08);  color: var(--primary); border: 1px solid rgba(255,0,102,0.2); }
.badge-up   { background: rgba(255,186,0,0.08);  color: var(--secondary); border: 1px solid rgba(255,186,0,0.2); }
.badge-live {
  background: rgba(255,0,102,0.15); color: var(--primary);
  border: 1px solid rgba(255,0,102,0.45);
  animation: livePulse 1.4s ease-in-out infinite;
}
@keyframes livePulse {
  0%,100% { opacity:1; box-shadow: 0 0 0 0 rgba(255,0,102,0.35); }
  50%      { opacity:.75; box-shadow: 0 0 0 5px rgba(255,0,102,0); }
}
.live-dot {
  display: inline-block; width: 7px; height: 7px;
  background: var(--primary); border-radius: 50%;
  animation: livePulse 1.4s ease-in-out infinite;
  margin-right: 5px; vertical-align: middle;
}
.live-empty {
  text-align: center; padding: 3rem 0;
  color: rgba(243,243,243,.3);
  font-family: var(--font-body); font-size: 1.05rem;
}
.tab-btn[data-tab="live"].active { color: var(--primary); border-color: var(--primary); }

/* ===== SHOP ===== */
.shop-filter {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: 0.5rem 1.4rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  color: rgba(243,243,243,0.5);
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--ease);
}
.filter-btn.active, .filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(255,0,102,0.05);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,0,102,0.22);
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
}

.shop-store-link {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(243,243,243,0.3);
  margin-bottom: 2.5rem;
  letter-spacing: 0.5px;
}
.shop-store-link a {
  color: rgba(243,243,243,0.45);
  text-decoration: none;
  border-bottom: 1px solid rgba(243,243,243,0.15);
  transition: color 0.2s, border-color 0.2s;
}
.shop-store-link a:hover { color: var(--primary); border-color: var(--primary); }

.product-img-link { display: block; text-decoration: none; }

.product-img {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #1a1a1a, #1e1e1e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}
.product-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img img { transform: scale(1.04); }
.product-img::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
  transition: left 0.6s ease;
}
.product-card:hover .product-img::before { left: 100%; }

.product-badge {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  background: var(--primary);
  color: var(--bg);
  font-family: var(--font-head);
  font-size: 0.6rem;
  letter-spacing: 1px;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  text-transform: uppercase;
}
.product-body { padding: 1.25rem; }
.product-name { font-family: var(--font-head); font-size: 1.05rem; margin-bottom: 0.3rem; }
.product-cat  { font-size: 0.78rem; color: rgba(243,243,243,0.3); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price  { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; color: var(--secondary); }
.add-btn {
  padding: 0.5rem 1.1rem;
  text-decoration: none;
  display: inline-block;
  background: var(--primary);
  color: var(--bg);
  border: 1px solid var(--primary);
  border-radius: 4px;
  font-family: var(--font-head);
  font-size: 0.68rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--ease);
}
.add-btn:hover { background: transparent; color: var(--primary); }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.contact-info > p { color: rgba(243,243,243,0.55); line-height: 1.8; margin-bottom: 2rem; font-size: 1rem; }
.contact-links { display: flex; flex-direction: column; gap: 1rem; }
.c-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(243,243,243,0.6);
  transition: color var(--ease);
}
.c-link:hover { color: var(--primary); }
.c-link-icon {
  width: 42px; height: 42px;
  border: 1px solid rgba(255,0,102,0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--ease);
  flex-shrink: 0;
}
.c-link:hover .c-link-icon { border-color: var(--primary); background: rgba(255,0,102,0.07); }

.socials { display: flex; gap: 0.75rem; margin-top: 2.5rem; }
.social-btn {
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all var(--ease);
}
.social-btn:hover {
  border-color: var(--primary);
  background: rgba(255,0,102,0.07);
  box-shadow: var(--glow-p);
  transform: translateY(-3px);
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid rgba(255,0,102,0.1);
  border-radius: 8px;
  padding: 2.5rem;
}
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(243,243,243,0.45);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: all var(--ease);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255,0,102,0.07);
  background: rgba(255,0,102,0.02);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select option { background: #161616; }

/* ===== FOOTER ===== */
.footer {
  background: #090909;
  border-top: 1px solid rgba(255,0,102,0.08);
  padding: 64px 0 32px;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p { color: rgba(243,243,243,0.4); font-size: 0.9rem; line-height: 1.8; max-width: 270px; }
.footer-col-title {
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.25rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a { color: rgba(243,243,243,0.4); font-size: 0.9rem; transition: all var(--ease); }
.footer-links a:hover { color: var(--text); padding-left: 6px; }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.82rem; color: rgba(243,243,243,0.22); }
.footer-copy span { color: var(--primary); }
.footer-socials { display: flex; gap: 0.75rem; }

/* ===== NEWS CARD — IMAGE SUPPORT ===== */
.news-thumb { position: relative; }
.news-thumb .news-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-thumb .news-icon {
  font-size: 3rem;
  position: relative;
  z-index: 1;
}
.news-tag { z-index: 2; }

/* ===== TEAM LOGO — IMAGE SUPPORT ===== */
.team-ico img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ===== FEATURE / VALUE ICON — IMAGE & SVG SUPPORT ===== */
.feature-icon img,
.value-icon img {
  display: inline-block;
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.feature-icon svg {
  width: 3rem;
  height: 3rem;
  stroke: currentColor;
  display: inline-block;
}
.value-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  stroke: currentColor;
  display: inline-block;
}
.shop-stat-icon svg {
  width: 2rem;
  height: 2rem;
  stroke: currentColor;
  display: inline-block;
}
.shop-stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

/* ===== NEWS THUMBNAIL DESIGNS ===== */
.news-thumb-inner {
  position: relative;
  z-index: 2;
  font-size: 3.5rem;
  filter: drop-shadow(0 4px 16px rgba(255,0,102,0.4));
}
.nt-diagonal {
  position: absolute;
  top: 0; right: 0;
  width: 55%; height: 100%;
  clip-path: polygon(35% 0%, 100% 0%, 100% 100%, 0% 100%);
  pointer-events: none;
  z-index: 1;
}
.nt-ring {
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  border: 1px solid transparent;
  top: -80px; right: -60px;
  pointer-events: none;
  z-index: 1;
}
.nt-announcement { background: linear-gradient(145deg, #200d10 0%, #18080c 60%, #100508 100%) !important; }
.nt-announcement .nt-diagonal { background: linear-gradient(180deg, rgba(255,0,102,0.05), transparent); }
.nt-announcement .nt-ring     { border-color: rgba(255,0,102,0.1); }
.nt-announcement .news-thumb-inner { filter: drop-shadow(0 4px 16px rgba(255,0,102,0.5)); }
.nt-roster { background: linear-gradient(145deg, #081410 0%, #061008 60%, #050c06 100%) !important; }
.nt-roster .nt-diagonal { background: linear-gradient(180deg, rgba(0,210,90,0.05), transparent); }
.nt-roster .nt-ring     { border-color: rgba(0,210,90,0.1); }
.nt-roster .news-thumb-inner { filter: drop-shadow(0 4px 16px rgba(0,210,90,0.4)); }
.nt-merch { background: linear-gradient(145deg, #10081e 0%, #0c0618 60%, #080414 100%) !important; }
.nt-merch .nt-diagonal { background: linear-gradient(180deg, rgba(140,70,255,0.05), transparent); }
.nt-merch .nt-ring     { border-color: rgba(140,70,255,0.1); }
.nt-merch .news-thumb-inner { filter: drop-shadow(0 4px 16px rgba(140,70,255,0.4)); }

/* ===== PRODUCT IMAGE DESIGNS ===== */
.pi-icon    { position: relative; z-index: 2; font-size: 4rem; filter: drop-shadow(0 8px 20px rgba(0,0,0,0.5)); }
.pi-stripe  { position: absolute; inset: 0; background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.02) 50%, transparent 70%); pointer-events: none; }
.pi-ring    { position: absolute; width: 180px; height: 180px; border-radius: 50%; border: 1px solid transparent; bottom: -60px; right: -40px; pointer-events: none; }

.pi-jersey      { background: radial-gradient(ellipse at 50% 110%, rgba(255,0,102,0.18) 0%, transparent 60%), linear-gradient(170deg, #200810 0%, #160608 50%, #1a0810 100%) !important; }
.pi-jersey .pi-ring      { border-color: rgba(255,0,102,0.08); }
.pi-jersey .pi-icon      { filter: drop-shadow(0 8px 20px rgba(255,0,102,0.35)); }
.pi-jersey-alt  { background: radial-gradient(ellipse at 50% 110%, rgba(255,186,0,0.14) 0%, transparent 60%), linear-gradient(170deg, #1a1808 0%, #141208 100%) !important; }
.pi-jersey-alt .pi-ring  { border-color: rgba(255,186,0,0.08); }
.pi-jersey-alt .pi-icon  { filter: drop-shadow(0 8px 20px rgba(255,186,0,0.3)); }
.pi-hoodie      { background: radial-gradient(ellipse at 50% 100%, rgba(255,0,102,0.14) 0%, transparent 60%), linear-gradient(170deg, #14101e 0%, #0e0c16 100%) !important; }
.pi-hoodie .pi-icon      { filter: drop-shadow(0 8px 20px rgba(100,60,200,0.3)); }
.pi-tracksuit   { background: radial-gradient(ellipse at 50% 110%, rgba(80,160,255,0.12) 0%, transparent 60%), linear-gradient(170deg, #0c1018 0%, #080c14 100%) !important; }
.pi-tracksuit .pi-icon   { filter: drop-shadow(0 8px 20px rgba(80,160,255,0.3)); }
.pi-cap         { background: radial-gradient(ellipse at 50% 80%, rgba(255,0,102,0.12) 0%, transparent 60%), linear-gradient(170deg, #180e14 0%, #100a0e 100%) !important; }
.pi-cap .pi-icon         { filter: drop-shadow(0 8px 20px rgba(255,0,102,0.25)); }
.pi-mousepad    { background: radial-gradient(ellipse at 50% 50%, rgba(255,186,0,0.08) 0%, transparent 60%), linear-gradient(170deg, #10100e 0%, #0c0c0a 100%) !important; }
.pi-mousepad .pi-icon    { filter: drop-shadow(0 8px 20px rgba(255,186,0,0.2)); }
.pi-limited     { background: radial-gradient(ellipse at 50% 50%, rgba(255,186,0,0.22) 0%, rgba(255,0,102,0.12) 50%, transparent 70%), linear-gradient(135deg, #1a1008 0%, #181008 100%) !important; }
.pi-limited .pi-ring     { border-color: rgba(255,186,0,0.12); }
.pi-limited .pi-icon     { filter: drop-shadow(0 8px 20px rgba(255,186,0,0.45)); }
.pi-founders    { background: conic-gradient(from 120deg at 50% 50%, rgba(255,186,0,0.06), rgba(255,0,102,0.06), rgba(255,186,0,0.04), transparent 60%), linear-gradient(135deg, #18100e 0%, #141018 100%) !important; }
.pi-founders .pi-icon    { filter: drop-shadow(0 8px 20px rgba(255,150,0,0.4)); }
.pi-bottle      { background: radial-gradient(ellipse at 50% 110%, rgba(80,200,255,0.1) 0%, transparent 60%), linear-gradient(170deg, #0e1416 0%, #0a1012 100%) !important; }
.pi-bottle .pi-icon      { filter: drop-shadow(0 8px 20px rgba(80,200,255,0.25)); }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ===== KEYFRAMES ===== */
@keyframes fadeSlideUp   { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeSlideDown { from { opacity:0; transform:translateY(-18px); } to { opacity:1; transform:translateY(0); } }
@keyframes blink         { 50% { border-color: transparent; } }
@keyframes scrollBounce  {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(10px); }
}
@keyframes spinSlow      { to { transform: rotate(360deg); } }
@keyframes fadeIn        { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .feature-grid  { grid-template-columns: repeat(2, 1fr); }
  .news-grid     { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: rgba(13,13,13,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    padding: 2rem;
    border-left: 1px solid var(--border);
    transition: right 0.4s cubic-bezier(0.77,0,0.175,1);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1rem; }
  .has-dropdown > a::after { content: ''; }
  .nav-dropdown {
    position: static;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: transparent;
    border: none;
    border-left: 2px solid rgba(255,0,102,0.2);
    border-radius: 0;
    padding: 0.25rem 0 0 0.75rem;
    margin-top: 0.5rem;
  }
  .nav-dropdown a { font-size: 0.85rem; padding: 0.3rem 0.5rem; }
  .about-grid   { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid  { grid-template-columns: 1fr 1fr; }
  .hero-stats   { gap: 0; }
  .hero-stat    { padding: 0 1.25rem; }
}

@media (max-width: 640px) {
  .section        { padding: 70px 0; }
  .feature-grid   { grid-template-columns: 1fr; }
  .news-grid      { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .hero-btns      { flex-direction: column; align-items: center; }
  .values-grid    { grid-template-columns: 1fr; }
  .match-card     { grid-template-columns: 1fr; text-align: center; gap: 1rem; }
  .match-team.away { flex-direction: row; }
  .hero-stats     { gap: 1rem; }
  .hero-stat-sep  { display: none; }
  .hero-word-sweet { -webkit-text-stroke-width: 1.5px; }
  .hero-corner    { display: none; }
}

/* ===== NEWS ARTICLE FULL PAGE ===== */
.news-article-overlay {
  position: fixed;
  inset: 0;
  background: #0a0a0a;
  z-index: 9000;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.news-article-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.news-article-modal {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.news-article-topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,0,102,0.15);
  padding: 0.85rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.news-article-back {
  background: none;
  border: 1px solid rgba(255,0,102,0.35);
  color: var(--primary);
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 0.45rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.news-article-back:hover {
  background: rgba(255,0,102,0.12);
  border-color: var(--primary);
}
.news-article-topbar-tag {
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--primary);
  text-transform: uppercase;
  opacity: 0.8;
}
.news-article-hero {
  width: 100%;
  height: 360px;
  position: relative;
  background: #141414;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  overflow: hidden;
  flex-shrink: 0;
}
.news-article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.news-article-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, #0a0a0a 100%);
}
.news-article-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
  width: 100%;
}
.news-article-content .news-tag {
  display: inline-block;
  margin-bottom: 1rem;
}
.news-article-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.15;
  margin: 0 0 0.75rem;
}
.news-article-date-line {
  color: rgba(243,243,243,0.4);
  font-size: 0.875rem;
  font-family: var(--font-body);
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.news-article-body {
  color: rgba(243,243,243,0.82);
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.9;
  white-space: pre-wrap;
}
@media (max-width: 640px) {
  .news-article-topbar { padding: 0.75rem 1rem; }
  .news-article-hero   { height: 220px; font-size: 4rem; }
  .news-article-content { padding: 2rem 1.25rem 4rem; }
}
