/* ============================================
   livetv — IRIDESCENT THEME
   Oil-on-water · Holographic foil · Deep void
   ============================================ */

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

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

:root {
  /* Core void */
  --void:        #07050F;
  --void2:       #0C0916;
  --void3:       #12103A;

  /* Iridescent spectrum */
  --iris-violet: #C084FC;
  --iris-sky:    #38BDF8;
  --iris-rose:   #F472B6;
  --iris-mint:   #34D399;
  --iris-amber:  #FBBF24;
  --iris-indigo: #818CF8;

  /* Glass surfaces */
  --glass:       rgba(255,255,255,0.04);
  --glass-h:     rgba(255,255,255,0.08);
  --glass-border:rgba(255,255,255,0.10);
  --glass-border-h: rgba(255,255,255,0.25);

  /* Text */
  --text:        #F0ECFF;
  --text2:       #A89EC8;
  --text3:       #5A5278;

  /* Functional */
  --red:         #FF4D6D;
  --font:        'Inter', 'Segoe UI', system-ui, sans-serif;
  --r:           8px;
  --r2:          16px;
  --r3:          24px;
  --r-pill:      999px;
}

/* ============ IRIDESCENT GRADIENT KEYFRAMES ============ */
@keyframes iris-rotate {
  0%   { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}

@keyframes orb-drift {
  0%   { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(40px, -30px) scale(1.08); }
  50%  { transform: translate(-20px, 50px) scale(0.95); }
  75%  { transform: translate(-50px, -20px) scale(1.04); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes orb-drift2 {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(-60px, 40px) scale(1.1); }
  66%  { transform: translate(30px, -60px) scale(0.92); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes orb-drift3 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(70px, 30px) scale(1.06); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes shimmer-border {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes pulse-live {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.5); }
}

@keyframes text-iris {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* ============ BASE ============ */
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background-color: var(--void);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* ============ AMBIENT BACKGROUND ORBS ============ */
/* These are always-on iridescent blobs behind all content */
body::before {
  content: '';
  position: fixed;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%,
    rgba(192,132,252,0.18) 0%,
    rgba(56,189,248,0.12) 30%,
    rgba(244,114,182,0.10) 60%,
    transparent 80%
  );
  top: -200px; left: -150px;
  pointer-events: none; z-index: 0;
  animation: orb-drift 22s ease-in-out infinite, iris-rotate 30s linear infinite;
  filter: blur(2px);
}

body::after {
  content: '';
  position: fixed;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle at 60% 60%,
    rgba(52,211,153,0.14) 0%,
    rgba(251,191,36,0.10) 35%,
    rgba(129,140,248,0.12) 65%,
    transparent 80%
  );
  bottom: -100px; right: -100px;
  pointer-events: none; z-index: 0;
  animation: orb-drift2 28s ease-in-out infinite, iris-rotate 40s linear infinite reverse;
  filter: blur(2px);
}

/* Third orb — center pulse */
.orb-center {
  position: fixed;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%,
    rgba(244,114,182,0.09) 0%,
    rgba(56,189,248,0.08) 40%,
    transparent 75%
  );
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none; z-index: 0;
  animation: orb-drift3 18s ease-in-out infinite;
}

/* All content above orbs */
.site-header, main, .site-footer, .announce-bar { position: relative; z-index: 1; }

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--void2); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--iris-violet), var(--iris-sky));
  border-radius: 3px;
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 {
  line-height: 1.15;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.45rem); font-weight: 800; }
h4 { font-size: 1rem; font-weight: 700; }

p  { color: var(--text2); margin-bottom: 1rem; line-height: 1.7; }
a  { color: var(--iris-violet); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--iris-sky); }
a:focus-visible { outline: 2px solid var(--iris-violet); outline-offset: 3px; border-radius: 4px; }

/* ============ IRIDESCENT TEXT ============ */
.iris-text {
  background: linear-gradient(
    135deg,
    var(--iris-violet) 0%,
    var(--iris-sky)    25%,
    var(--iris-rose)   50%,
    var(--iris-mint)   75%,
    var(--iris-amber)  100%
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: text-iris 5s ease infinite;
}

/* ============ UTILITY ============ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.section    { padding: 5rem 0; }
.sr-only    { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ============ IRIS BORDER (shared mixin via class) ============ */
.iris-border {
  border: 1px solid transparent;
  background-clip: padding-box;
  position: relative;
}
.iris-border::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg,
    var(--iris-violet), var(--iris-sky),
    var(--iris-rose),   var(--iris-mint),
    var(--iris-amber),  var(--iris-violet)
  );
  background-size: 400% 400%;
  animation: shimmer-border 6s ease infinite;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
}
.iris-border:hover::before { opacity: 1; }

/* ============ PILL BADGE ============ */
.pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.28rem 0.85rem;
  border-radius: var(--r-pill);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--iris-violet);
  backdrop-filter: blur(8px);
}

.badge-live {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.22rem 0.65rem; border-radius: var(--r-pill);
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.07em;
  background: rgba(255,77,109,0.15);
  border: 1px solid rgba(255,77,109,0.35);
  color: var(--red);
}
.badge-live::before {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--red);
  animation: pulse-live 1.2s infinite;
}

.badge-pill {
  padding: 0.2rem 0.6rem; border-radius: var(--r-pill);
  font-size: 0.65rem; font-weight: 700;
  background: var(--glass); border: 1px solid var(--glass-border);
  color: var(--text2); white-space: nowrap;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--r2);
  font-weight: 800; font-size: 0.9rem;
  letter-spacing: 0.04em;
  cursor: pointer; border: none;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  text-transform: uppercase;
  position: relative; overflow: hidden;
  isolation: isolate;
}

/* Iris primary button — the gradient IS the button */
.btn-iris {
  background: linear-gradient(135deg,
    var(--iris-violet) 0%,
    var(--iris-sky)    40%,
    var(--iris-rose)   70%,
    var(--iris-violet) 100%
  );
  background-size: 250% 250%;
  animation: shimmer-border 4s ease infinite;
  color: var(--void);
  box-shadow: 0 0 30px rgba(192,132,252,0.35);
}
.btn-iris:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(192,132,252,0.5);
  color: var(--void);
}

/* Glass secondary button */
.btn-glass {
  background: var(--glass);
  color: var(--text);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border-h);
}
.btn-glass:hover {
  background: var(--glass-h);
  transform: translateY(-3px);
  border-color: rgba(192,132,252,0.5);
  color: var(--text);
  box-shadow: 0 6px 24px rgba(192,132,252,0.2);
}

/* ============ ANNOUNCE BAR ============ */
.announce-bar {
  background: linear-gradient(90deg,
    rgba(192,132,252,0.12),
    rgba(56,189,248,0.12),
    rgba(244,114,182,0.12),
    rgba(52,211,153,0.12)
  );
  background-size: 300% 100%;
  animation: shimmer-border 8s ease infinite;
  border-bottom: 1px solid var(--glass-border);
  padding: 0.5rem 0;
  text-align: center;
  font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text2);
  backdrop-filter: blur(8px);
}
.announce-bar b { color: var(--iris-rose); }

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(7,5,15,0.75);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 4px 40px rgba(192,132,252,0.12);
  border-bottom-color: rgba(192,132,252,0.2);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 66px; gap: 1rem;
}

/* LOGO */
.logo {
  display: flex; align-items: center; gap: 0.65rem;
  text-decoration: none; flex-shrink: 0;
}
.logo-gem {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg,
    var(--iris-violet) 0%,
    var(--iris-sky)    40%,
    var(--iris-rose)   70%,
    var(--iris-mint)   100%
  );
  background-size: 200% 200%;
  animation: shimmer-border 4s ease infinite;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  box-shadow: 0 0 20px rgba(192,132,252,0.4);
}
.logo-name {
  font-size: 1.5rem; font-weight: 900;
  letter-spacing: -0.04em; color: var(--text);
}
.logo-name em { font-style: normal; }
.logo-name em.iri { /* inherits iris-text applied via class */ }

/* DESKTOP NAV */
.desktop-nav {
  display: flex; align-items: center; gap: 0.1rem;
  flex: 1; justify-content: center;
}
.desktop-nav a {
  padding: 0.42rem 0.72rem;
  border-radius: var(--r);
  font-size: 0.78rem; font-weight: 600;
  color: var(--text3);
  letter-spacing: 0.04em;
  transition: all 0.2s;
  white-space: nowrap;
}
.desktop-nav a:hover, .desktop-nav a.active {
  color: var(--text);
  background: var(--glass);
}
.desktop-nav a.active {
  color: var(--iris-violet);
  background: rgba(192,132,252,0.1);
}

/* HAMBURGER */
.hamburger {
  display: none; flex-direction: column;
  justify-content: center; gap: 5px;
  width: 40px; height: 40px; cursor: pointer;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--r2); padding: 9px;
  flex-shrink: 0;
}
.hamburger span {
  display: block; height: 1.5px;
  background: var(--text); border-radius: 2px; transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* MOBILE NAV */
.mobile-nav {
  display: none;
  position: fixed; top: 66px; left: 0; right: 0; bottom: 0;
  background: rgba(7,5,15,0.96);
  backdrop-filter: blur(30px);
  padding: 1.5rem 1.25rem;
  overflow-y: auto; z-index: 999;
  flex-direction: column; gap: 0.4rem;
  border-top: 1px solid var(--glass-border);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 0.9rem 1.1rem;
  border-radius: var(--r2);
  font-size: 1rem; font-weight: 700;
  color: var(--text2);
  border: 1px solid transparent;
  transition: all 0.2s;
}
.mobile-nav a:hover, .mobile-nav a.active {
  color: var(--text);
  background: var(--glass);
  border-color: var(--glass-border);
}
.mobile-nav a.active { color: var(--iris-violet); border-color: rgba(192,132,252,0.25); }

/* ============ HERO ============ */
.hero {
  padding: 6rem 0 5rem;
  position: relative; overflow: hidden;
}

/* Hero iridescent mega-orb — the signature visual */
.hero-orb {
  position: absolute;
  width: 900px; height: 900px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(192,132,252,0.22),
    rgba(56,189,248,0.18),
    rgba(52,211,153,0.16),
    rgba(251,191,36,0.14),
    rgba(244,114,182,0.20),
    rgba(129,140,248,0.18),
    rgba(192,132,252,0.22)
  );
  top: 50%; right: -200px;
  transform: translateY(-50%);
  filter: blur(80px);
  pointer-events: none;
  animation: iris-rotate 20s linear infinite, orb-drift3 25s ease-in-out infinite;
  opacity: 0.7;
}

.hero-content { position: relative; z-index: 2; max-width: 720px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow-line {
  width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--iris-violet), var(--iris-sky));
  border-radius: 1px;
}
.hero-eyebrow-text {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--iris-violet);
}

.hero h1 {
  margin-bottom: 1.4rem;
  line-height: 1.08;
}

.hero-desc {
  font-size: 1.1rem; color: var(--text2);
  max-width: 560px; margin-bottom: 2.2rem; line-height: 1.75;
}

.hero-btns {
  display: flex; flex-wrap: wrap; gap: 0.85rem;
  margin-bottom: 3.5rem;
}

/* Hero spectrum bar */
.hero-spectrum {
  display: flex; gap: 3px; margin-bottom: 3rem;
  height: 3px;
}
.hero-spectrum span {
  flex: 1; border-radius: 2px;
  animation: text-iris 3s ease infinite;
}
.hero-spectrum span:nth-child(1) { background: var(--iris-violet); animation-delay: 0s; }
.hero-spectrum span:nth-child(2) { background: var(--iris-indigo); animation-delay: 0.3s; }
.hero-spectrum span:nth-child(3) { background: var(--iris-sky);    animation-delay: 0.6s; }
.hero-spectrum span:nth-child(4) { background: var(--iris-mint);   animation-delay: 0.9s; }
.hero-spectrum span:nth-child(5) { background: var(--iris-amber);  animation-delay: 1.2s; }
.hero-spectrum span:nth-child(6) { background: var(--iris-rose);   animation-delay: 1.5s; }
.hero-spectrum span:nth-child(7) { background: var(--iris-violet); animation-delay: 1.8s; }

/* Hero stats */
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--glass-border);
}
.stat-num {
  font-size: 2.2rem; font-weight: 900;
  line-height: 1; color: var(--text);
  letter-spacing: -0.03em;
}
.stat-num b { /* iris-text applied inline */ }
.stat-lbl {
  font-size: 0.68rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text3); margin-top: 0.3rem;
}

/* ============ SECTION LABELS ============ */
.section-label {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem;
}
.section-label-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg, var(--iris-violet), var(--iris-sky));
  flex-shrink: 0;
}
.section-label-text {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--iris-sky);
}
.section-subtitle { color: var(--text2); margin-bottom: 2.5rem; font-size: 1.05rem; }

/* ============ SPORT CARDS ============ */
.sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1.1rem;
}

.sport-card {
  display: block; text-decoration: none;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r2);
  padding: 1.5rem 1.35rem;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  position: relative; overflow: hidden;
  backdrop-filter: blur(16px);
  isolation: isolate;
}

/* Iridescent border shimmer on hover */
.sport-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg,
    var(--iris-violet), var(--iris-sky),
    var(--iris-rose),   var(--iris-mint),
    var(--iris-amber),  var(--iris-indigo),
    var(--iris-violet)
  );
  background-size: 400% 400%;
  animation: shimmer-border 5s ease infinite;
  opacity: 0; transition: opacity 0.3s;
  z-index: -1;
}
.sport-card::after {
  content: '';
  position: absolute; inset: 1px;
  border-radius: calc(var(--r2) - 1px);
  background: rgba(7,5,15,0.85);
  z-index: -1;
  transition: background 0.3s;
}
.sport-card:hover::before { opacity: 1; }
.sport-card:hover::after  { background: rgba(12,9,22,0.80); }
.sport-card:hover { transform: translateY(-5px); }

.card-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.card-title {
  font-size: 0.95rem; font-weight: 800;
  color: var(--text); margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}
.card-meta { font-size: 0.75rem; color: var(--text3); }
.card-arrow {
  position: absolute; top: 1.35rem; right: 1.35rem;
  color: var(--text3); font-size: 0.9rem;
  transition: all 0.25s;
}
.sport-card:hover .card-arrow { color: var(--iris-sky); transform: translate(3px,-3px); }

/* ============ MATCH CARDS ============ */
.match-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 1.2rem;
}

.match-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r2);
  padding: 1.5rem;
  transition: all 0.3s;
  backdrop-filter: blur(16px);
  position: relative; overflow: hidden;
  isolation: isolate;
}
.match-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg,
    var(--iris-violet), var(--iris-sky), var(--iris-rose), var(--iris-mint)
  );
  background-size: 300% 100%;
  animation: shimmer-border 4s ease infinite;
  opacity: 0; transition: opacity 0.3s;
}
.match-card:hover { border-color: rgba(192,132,252,0.3); }
.match-card:hover::before { opacity: 1; }

.match-head {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 1.1rem;
}
.match-league {
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text3);
}
.match-time {
  font-size: 0.78rem; font-weight: 700;
  color: var(--iris-sky);
}

.match-teams {
  display: flex; align-items: center;
  justify-content: space-between; margin-bottom: 1.1rem;
}
.team { flex: 1; text-align: center; }
.team-name { font-size: 0.9rem; font-weight: 800; color: var(--text); }
.team-sub  { font-size: 0.68rem; color: var(--text3); margin-top: 0.2rem; }

.vs-chip {
  padding: 0.35rem 0.75rem;
  background: rgba(192,132,252,0.1);
  border: 1px solid rgba(192,132,252,0.2);
  border-radius: var(--r);
  font-size: 0.72rem; font-weight: 900;
  color: var(--iris-violet);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.match-foot {
  display: flex; justify-content: space-between;
  align-items: center; padding-top: 1rem;
  border-top: 1px solid var(--glass-border);
  font-size: 0.76rem;
}
.match-ch { color: var(--text2); }
.match-ch strong { color: var(--iris-mint); }

/* ============ GLASS CONTENT BLOCK ============ */
.glass-block {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r2);
  padding: 2rem;
  backdrop-filter: blur(16px);
  margin-bottom: 1.5rem;
}
.glass-block h2, .glass-block h3 { margin-bottom: 0.8rem; }
.glass-block p:last-child { margin-bottom: 0; }

/* ============ TWO-COL ============ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width:700px) { .two-col { grid-template-columns: 1fr; } }

/* ============ TIPS BOX ============ */
.tips-box {
  background: rgba(192,132,252,0.05);
  border: 1px solid rgba(192,132,252,0.18);
  border-radius: var(--r2); padding: 1.6rem;
  backdrop-filter: blur(16px);
}
.tips-box h3 { margin-bottom: 1rem; font-size: 1.05rem; }

.tips-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.tips-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--r);
  font-size: 0.88rem; color: var(--text2);
}
.tips-list li::before {
  content: '◈';
  color: var(--iris-violet); font-size: 0.7rem;
  margin-top: 0.25rem; flex-shrink: 0;
}

/* ============ CTA SECTION ============ */
.cta-section {
  position: relative; overflow: hidden;
  border-radius: var(--r3); padding: 3.5rem 2rem;
  text-align: center; margin: 2rem 0;
  isolation: isolate;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(135deg,
    rgba(192,132,252,0.12) 0%,
    rgba(56,189,248,0.08)  30%,
    rgba(244,114,182,0.10) 60%,
    rgba(52,211,153,0.08)  100%
  );
  background-size: 300% 300%;
  animation: shimmer-border 8s ease infinite;
}
.cta-section::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  border: 1px solid rgba(192,132,252,0.2);
  border-radius: inherit;
}
.cta-section h2 { margin-bottom: 0.75rem; }
.cta-section p  { max-width: 500px; margin: 0 auto 2rem; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; }

/* ============ COMMENTS ============ */
.comments-section { margin-top: 3.5rem; }
.comments-section > h3 { margin-bottom: 1.75rem; }

.comment-list { display: flex; flex-direction: column; gap: 1rem; }

.comment-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r2); padding: 1.3rem 1.5rem;
  backdrop-filter: blur(16px);
  transition: border-color 0.3s;
}
.comment-card:hover { border-color: rgba(192,132,252,0.3); }

.c-head { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.65rem; }
.c-av {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg,
    var(--iris-violet) 0%, var(--iris-sky) 50%, var(--iris-rose) 100%
  );
  background-size: 200% 200%;
  animation: shimmer-border 6s ease infinite;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 0.85rem; color: var(--void);
  flex-shrink: 0;
}
.c-name { font-weight: 700; font-size: 0.9rem; color: var(--text); }
.c-loc  { font-size: 0.7rem; color: var(--text3); margin-top: 0.1rem; }

.c-text { font-size: 0.88rem; color: var(--text2); line-height: 1.65; }
.c-foot {
  display: flex; gap: 1rem; margin-top: 0.7rem;
  font-size: 0.7rem; color: var(--text3);
}
.c-likes { color: var(--iris-rose); font-weight: 600; }

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: 3.5rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 100% at 0% 50%,
    rgba(192,132,252,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; color: var(--text3);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--iris-violet); }
.breadcrumb span { color: var(--text3); }

/* ============ FOOTER ============ */
.site-footer {
  background: rgba(7,5,15,0.85);
  border-top: 1px solid var(--glass-border);
  padding: 4rem 0 1.75rem;
  backdrop-filter: blur(20px);
  margin-top: 5rem;
}

/* Iris top rule */
.footer-iris-rule {
  height: 2px;
  background: linear-gradient(90deg,
    transparent,
    var(--iris-violet), var(--iris-sky),
    var(--iris-rose), var(--iris-mint),
    transparent
  );
  background-size: 300% 100%;
  animation: shimmer-border 6s ease infinite;
  margin-bottom: 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.83rem; color: var(--text3);
  max-width: 260px; margin-top: 0.75rem;
}

.footer-col h4 {
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--iris-violet);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block; font-size: 0.85rem;
  color: var(--text2); margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--iris-sky); }

.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--glass-border);
}
.footer-bottom p { font-size: 0.78rem; color: var(--text3); margin: 0; }

.footer-disc {
  font-size: 0.73rem; color: var(--text3);
  padding-top: 1rem; margin-top: 1rem;
  border-top: 1px solid var(--glass-border);
  line-height: 1.65;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .desktop-nav a { font-size: 0.72rem; padding: 0.38rem 0.55rem; }
}
@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .hamburger   { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer-grid  { grid-template-columns: 1fr; }
  .hero         { padding: 3.5rem 0 3rem; }
  .hero-orb     { width: 500px; height: 500px; right: -150px; }
  .section      { padding: 3rem 0; }
  .match-grid   { grid-template-columns: 1fr; }
  .hero-stats   { gap: 1.5rem; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
