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

:root {
  --bg-dark: #0a0e1a;
  --bg-light: #ffffff;
  --text-dark: #ffffff;
  --text-light: #111111;
  --accent: #ff0033;
  --accent-hover: #cc0029;
  --glass: rgba(255, 255, 255, 0.06);
  --card-border: rgba(255, 255, 255, 0.08);
  --header-height: 70px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text-dark);
  transition: background 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.light {
  background: var(--bg-light);
  color: var(--text-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ================= HEADER & NAV ================= */

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  position: fixed;
  width: 100%;
  height: var(--header-height);
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  transition: background 0.3s ease;
}

body.light header {
  background: rgba(255, 255, 255, 0.85);
}

.left-controls {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  height: 40px;
  width: auto;
}

.nav-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  color: white;
  font-weight: 600;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

body.light nav a {
  color: #111;
}

nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

nav a:hover::after, nav a.active::after {
  width: 100%;
}

nav a.active {
  color: var(--accent);
}

body.light nav a.active {
  color: var(--accent);
}

/* ================= HAMBURGER & MOBILE MENU ================= */

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 2001;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: white;
  margin: 4px 0;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

body.light .hamburger span {
  background: #111;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: flex;
  flex-direction: column;
  text-align: center;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
  z-index: 1500;
}

body.light .mobile-menu {
  background: rgba(255, 255, 255, 0.95);
}

.mobile-menu a {
  padding: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: white;
  font-weight: 600;
  transition: background 0.2s ease;
}

body.light .mobile-menu a {
  color: #111;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-menu a.active {
  color: var(--accent);
}

.mobile-menu.active {
  max-height: 400px;
}

/* ================= DARK/LIGHT MODE TOGGLE ================= */

.toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 26px;
  border-radius: 20px;
  background: #222;
  display: flex;
  align-items: center;
  padding: 4px;
  cursor: pointer;
  z-index: 2000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.toggle-circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 4px;
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body.light .toggle {
  background: #ccc;
  border-color: rgba(0, 0, 0, 0.1);
}

body.light .toggle-circle {
  left: 26px;
  background: #000;
}

/* ================= FOOTER ================= */

footer {
  width: 100%;
  margin-top: 40px;
  padding: 24px 20px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: center;
  box-sizing: border-box;
}

body.light footer {
  background: rgba(255, 255, 255, 0.85);
}

.socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.socials img {
  width: 26px;
  height: 26px;
  opacity: 0.85;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.socials img:hover {
  transform: translateY(-4px);
  opacity: 1;
}

footer p {
  font-size: 13px;
  opacity: 0.75;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 600px) {
  footer {
    padding: 24px 15px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}

/* ================= SECTIONS & UTILITIES ================= */

.section {
  padding: 35px 20px;
}

.section h2 {
  font-size: 42px;
  margin-bottom: 22px;
  font-weight: 800;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

body.light .section h2 {
  color: var(--accent);
}

/* ================= PAGE SPECIFIC STYLES ================= */

/* ----- INDEX (HOME) SLIDER ----- */
.hero-slider {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  will-change: opacity;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  animation: zoomPan 14s ease-in-out infinite;
  transform: translateZ(0);
  will-change: transform;
}

@keyframes zoomPan {
  0% { transform: scale(1.03) translate3d(0,0,0); }
  50% { transform: scale(1.08) translate3d(-12px,0,0); }
  100% { transform: scale(1.03) translate3d(0,0,0); }
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.78), rgba(0,0,0,0.2));
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 70px;
  transform: translateY(-50%);
  z-index: 5;
  max-width: 620px;
}

.sport-tag {
  display: inline-block;
  background: var(--accent);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.slide-content h1 {
  font-size: 58px;
  line-height: 1.1;
  margin-bottom: 25px;
  font-weight: 800;
}

.hero-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 40px;
  background: #007bff;
  color: white;
  font-weight: 600;
  transition: transform 0.3s ease, background 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-3px);
  background: #0d8dff;
}

.slider-dots {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: 0.3s;
  cursor: pointer;
}

.dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

/* ----- INDEX (HOME) TOURNAMENTS ----- */
.tournaments {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scrollbar-width: none;
  align-items: center;
}

.tournaments::-webkit-scrollbar {
  display: none;
}

.tournament {
  min-width: 80px;
  text-align: center;
  transition: 0.3s;
  flex-shrink: 0;
}

.tournament:hover {
  transform: translateY(-5px);
}

.tournament-circle {
  width: 62px;
  height: 62px;
  margin: auto;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

body.light .tournament-circle {
  background: rgba(0,0,0,0.05);
  border-color: rgba(0,0,0,0.08);
}

.tournament-circle img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.tournament p {
  margin-top: 8px;
  font-size: 12px;
  white-space: nowrap;
}

/* ----- PARTNERS GRID ----- */
.partners {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.partner-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
  border: 1px solid rgba(255,255,255,0.08);
}

body.light .partner-card {
  background: rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.06);
}

.partner-card img {
  height: 60px;
  object-fit: contain;
}

.partner-card:hover {
  transform: translateY(-5px) scale(1.05);
  background: rgba(255,255,255,0.08);
}

body.light .partner-card:hover {
  background: rgba(0,0,0,0.06);
}

/* ----- ABOUT & SOLUTIONS COMMON SECTION WRAPPER ----- */
.page-section {
  padding: 120px 18px 60px;
  max-width: 1100px;
  margin: auto;
}

.hero-header {
  text-align: center;
  margin-bottom: 30px;
}

.hero-header h1 {
  font-size: 44px;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.hero-header p {
  max-width: 900px;
  margin: auto;
  font-size: 17px;
  line-height: 1.8;
  opacity: 0.85;
}

/* ----- STREAM BANNER ----- */
.stream-banner {
  margin: 40px auto 60px;
  max-width: 1100px;
  border-radius: 18px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

.stream-banner img {
  width: 100%;
  display: block;
  border-radius: 18px;
  transform: scale(1.02);
  transition: transform 0.6s ease;
}

.stream-banner.show {
  opacity: 1;
  transform: translateY(0);
}

.stream-banner:hover img {
  transform: scale(1.04);
}

/* ----- STORY CARDS (ABOUT) ----- */
.card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 22px;
  position: relative;
  backdrop-filter: blur(10px);
  transition: background 0.3s ease, border-color 0.3s ease;
}

body.light .card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

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

.card h2 {
  margin-bottom: 12px;
}

/* ----- STATS GRID ----- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
  text-align: center;
}

.stat {
  padding: 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.3s ease, background 0.3s ease;
}

body.light .stat {
  background: rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.06);
}

.stat h3 {
  color: var(--accent);
  font-size: 30px;
  margin: 0;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
}

.stat:hover {
  transform: translateY(-6px);
}

/* ----- CONTACT HERO & PAGE ----- */
.contact-hero {
  min-height: 100vh;
  padding: 140px 7% 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  overflow: hidden;
}

.contact-hero::before,
.contact-hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.10;
  z-index: 0;
  pointer-events: none;
}

.contact-hero::before {
  background: var(--accent);
  top: -200px;
  right: -200px;
}

.contact-hero::after {
  background: #0066ff;
  bottom: -200px;
  left: -200px;
}

.contact-left {
  max-width: 620px;
  position: relative;
  z-index: 2;
}

.contact-tag {
  display: inline-block;
  background: var(--accent);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.contact-left h1 {
  font-size: 68px;
  line-height: 1;
  margin-bottom: 25px;
  font-weight: 900;
}

.contact-left p {
  font-size: 18px;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 35px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.contact-card {
  background: var(--glass);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 25px;
  backdrop-filter: blur(14px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

body.light .contact-card {
  background: #ffffff;
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.contact-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.contact-card p {
  opacity: 0.85;
}

.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.2);
}

body.light .contact-card:hover {
  border-color: rgba(0,0,0,0.2);
}

.contact-buttons {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.contact-btn {
  padding: 14px 24px;
  border-radius: 40px;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.primary-btn {
  background: var(--accent);
  color: white;
}

.secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
}

body.light .secondary-btn {
  border-color: rgba(0, 0, 0, 0.15);
  color: #111;
}

.contact-btn:hover {
  transform: translateY(-4px);
}

.contact-right {
  width: 420px;
  height: 420px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.core {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff0033, #ff3366);
  box-shadow: 0 0 40px rgba(255, 0, 51, 0.4);
  animation: pulse 3s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.06); }
  100% { transform: scale(1); }
}

/* ----- GALLERY HERO & GRID ----- */
.gallery-hero {
  padding: 140px 7% 60px;
  text-align: center;
  position: relative;
}

.gallery-hero::before,
.gallery-hero::after {
  content: '';
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}

.gallery-hero::before {
  background: var(--accent);
  top: -150px;
  right: -150px;
}

.gallery-hero::after {
  background: #0066ff;
  bottom: -150px;
  left: -150px;
}

.gallery-content {
  position: relative;
  z-index: 1;
}

.gallery-tag {
  display: inline-block;
  background: var(--accent);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.gallery-hero h1 {
  font-size: 64px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1;
}

.gallery-hero p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  opacity: 0.9;
}

.gallery-section {
  padding: 0 7% 80px;
}

.month-section {
  margin-bottom: 70px;
}

.month-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.month-title {
  font-size: 34px;
  font-weight: 800;
}

.month-count {
  background: var(--glass);
  border: 1px solid var(--card-border);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  opacity: 0.85;
}

body.light .month-count {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.gallery-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--glass);
  border: 1px solid var(--card-border);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  contain: layout paint;
}

body.light .gallery-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.4s ease;
  background: rgba(255, 255, 255, 0.04);
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.05));
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-info h3 {
  font-size: 20px;
  margin-bottom: 6px;
  color: #fff;
}

.gallery-info p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

/* ----- LIGHTBOX ----- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  z-index: 3000;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 95%;
  max-height: 90vh;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 42px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  line-height: 1;
}

/* ----- SPORT SOLUTIONS PAGES ----- */
.solutions-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 120px 7%;
  position: relative;
  overflow: hidden;
}

.solutions-hero::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--accent), transparent 70%);
  opacity: 0.12;
  top: -200px;
  right: -200px;
  animation: float 10s ease-in-out infinite;
}

.solutions-left {
  max-width: 620px;
  position: relative;
  z-index: 2;
}

.solutions-left h1 {
  font-size: 68px;
  line-height: 1;
  margin-bottom: 25px;
  font-weight: 900;
}

.solutions-left p {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 35px;
}

.solutions-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  width: 450px;
  position: relative;
  z-index: 2;
}

.floating-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 25px;
  backdrop-filter: blur(15px);
  transition: transform 0.3s ease, border-color 0.3s ease;
  min-height: 170px;
}

body.light .floating-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.floating-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.18);
}

body.light .floating-card:hover {
  border-color: rgba(0, 0, 0, 0.18);
}

.floating-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.floating-card p {
  opacity: 0.8;
  line-height: 1.5;
  font-size: 14px;
}

.floating-card:nth-child(2) {
  margin-top: 40px;
}

.floating-card:nth-child(3) {
  margin-top: 18px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.service-card {
  background: var(--glass);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 30px;
  transition: transform 0.3s ease, background 0.3s ease;
  backdrop-filter: blur(12px);
}

body.light .service-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
}

body.light .service-card:hover {
  background: rgba(0,0,0,0.02);
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.service-card p {
  line-height: 1.7;
  opacity: 0.85;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 22px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

body.light .stat-card {
  background: #ffffff;
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.stat-card h2 {
  font-size: 52px;
  color: var(--accent);
  margin-bottom: 10px;
}

.stat-card p {
  opacity: 0.8;
}

.platforms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.platform-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 280px;
  background: #111;
  display: block;
}

.platform-card,
.platform-card:link,
.platform-card:visited,
.platform-card:hover,
.platform-card:active,
.platform-card:focus {
  color: #fff !important;
  text-decoration: none;
}

.platform-card h3,
.platform-card p,
.platform-card span {
  color: #fff;
}

.platform-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.platform-card:hover img {
  transform: scale(1.08);
}

.platform-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.15));
  display: flex;
  align-items: flex-end;
  padding: 25px;
}

.platform-overlay h3 {
  font-size: 30px;
}

.platform-content {
  width: 100%;
}

.platform-content p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.88;
  max-width: 90%;
}

.platform-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.platform-tags span {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 11px;
  backdrop-filter: blur(10px);
}

/* ----- WATCH LIVE ----- */
.live-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  margin-bottom: 15px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulseWatch 1.5s infinite;
}

@keyframes pulseWatch {
  0% { transform: scale(1); }
  50% { transform: scale(1.4); }
  100% { transform: scale(1); }
}

.stream {
  border-radius: 14px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.stream iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.info {
  padding: 18px;
}

.info h3 {
  margin-bottom: 5px;
  font-size: 22px;
}

.live-tag {
  display: inline-block;
  background: var(--accent);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.section-title {
  margin: 40px 0 15px;
  font-size: 18px;
  opacity: 0.9;
  font-weight: 700;
  text-transform: uppercase;
}

.upcoming {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.upcoming .card {
  background: #141414;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease;
  text-decoration: none;
  color: #fff;
  padding: 0;
  margin: 0;
}

body.light .upcoming .card {
  background: #ffffff;
}

.upcoming .card:hover {
  transform: translateY(-4px);
}

.upcoming .card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}

.upcoming .card div {
  padding: 10px;
}

/* ================= COMMON MEDIA QUERIES ================= */

@media(max-width: 1000px) {
  .contact-hero {
    flex-direction: column;
    text-align: center;
  }

  .contact-left h1 {
    font-size: 52px;
  }

  .contact-right {
    width: 100%;
    height: 320px;
  }
}

@media(max-width: 900px) {
  nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-slider {
    height: 100vh;
  }

  .slide-content {
    left: 25px;
    right: 25px;
  }

  .slide-content h1 {
    font-size: 34px;
  }

  .fixture-card {
    min-width: 240px;
  }

  .hero {
    flex-direction: column;
    justify-content: center;
    gap: 50px;
    padding: 120px 20px;
  }

  .hero-left h1 {
    font-size: 48px;
  }

  .hero-right {
    width: 100%;
  }

  .gallery-hero h1 {
    font-size: 48px;
  }

  .stream iframe {
    height: 260px;
  }
}

@media (max-width: 600px) {
  .gallery-hero {
    padding: 120px 5% 50px;
  }

  .gallery-hero h1 {
    font-size: 38px;
  }

  .gallery-hero p {
    font-size: 16px;
    line-height: 1.7;
  }

  .gallery-section {
    padding: 0 5% 70px;
  }

  .month-title {
    font-size: 28px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-left h1 {
    font-size: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

.hero-tag {
  display: inline-block;
  background: var(--accent);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

/* ================= MODERNIZATION RULES ================= */

/* Glow variables on body and backgrounds */
body {
  transition: background 0.5s cubic-bezier(0.4, 0, 0.2, 1), color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body::before {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200vw;
  height: 200vh;
  background: radial-gradient(circle at 80% 20%, rgba(255, 0, 51, 0.04), transparent 50%),
              radial-gradient(circle at 15% 85%, rgba(0, 102, 255, 0.04), transparent 50%);
  z-index: -1;
  pointer-events: none;
  transition: opacity 0.5s ease;
  animation: bgGlowRotation 40s linear infinite;
  will-change: transform;
}

@keyframes bgGlowRotation {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

body.light::before {
  opacity: 0;
  animation: none;
}

/* Neon Glows on Badges */
.sport-tag, .contact-tag, .gallery-tag, .live-tag, .hero-tag {
  box-shadow: 0 0 15px rgba(255, 0, 51, 0.35);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 0, 51, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sport-tag:hover, .contact-tag:hover, .gallery-tag:hover, .live-tag:hover, .hero-tag:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 0, 51, 0.5);
}

/* Premium Card hover lifts and subtle gradient borders */
.card, .fixture-card, .service-card, .contact-card, .stat-card, .partner-card {
  position: relative;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
              box-shadow 0.4s ease, 
              background 0.4s ease, 
              border-color 0.4s ease;
  overflow: hidden;
}

/* Glass border-gradient ring on hover */
.card::after, .fixture-card::after, .service-card::after, .contact-card::after, .stat-card::after, .partner-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 0, 51, 0.25), transparent, rgba(0, 102, 255, 0.25));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.2;
  transition: opacity 0.4s ease;
}

.card:hover::after, .fixture-card:hover::after, .service-card:hover::after, .contact-card:hover::after, .stat-card:hover::after, .partner-card:hover::after {
  opacity: 1;
}

.card:hover, .fixture-card:hover, .service-card:hover, .contact-card:hover, .stat-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(255, 0, 51, 0.25);
  box-shadow: 0 12px 30px rgba(255, 0, 51, 0.15);
  background: rgba(255, 255, 255, 0.09);
}

body.light .card:hover, body.light .fixture-card:hover, body.light .service-card:hover, body.light .contact-card:hover, body.light .stat-card:hover {
  border-color: rgba(255, 0, 51, 0.3);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  background: #ffffff;
}

/* Cinematic Slider Transitions */
.slide .sport-tag,
.slide h1,
.slide .hero-btn {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.slide .sport-tag {
  transform: translate3d(0, -25px, 0);
}

.slide .hero-btn {
  transform: translate3d(0, 15px, 0) scale(0.95);
}

/* Active states with stagger */
.slide.active .sport-tag {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.1s;
}

.slide.active h1 {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.25s;
}

.slide.active .hero-btn {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transition-delay: 0.4s;
}

/* Infinite Marquee sponsors scroll */
.marquee-container {
  overflow: hidden;
  user-select: none;
  display: flex;
  gap: 20px;
  padding: 20px 0;
  position: relative;
  width: 100%;
}

.marquee-container::before,
.marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-dark), transparent);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-dark), transparent);
}

body.light .marquee-container::before {
  background: linear-gradient(to right, var(--bg-light), transparent);
}

body.light .marquee-container::after {
  background: linear-gradient(to left, var(--bg-light), transparent);
}

.marquee-content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  min-width: 100%;
  gap: 20px;
  animation: scrollMarquee 30s linear infinite;
}

.marquee-container:hover .marquee-content {
  animation-play-state: paused;
}

.marquee-content .partner-card {
  min-width: 165px;
  height: 100px;
  margin: 0;
}

@keyframes scrollMarquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

/* IntersectionObserver Scroll Reveals */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), 
              transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), 
              transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), 
              transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active, .reveal-left.active, .reveal-right.active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* ================= STREAMING SERVICE UI ================= */

.stream-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  padding: 10px 0 25px 0;
  -webkit-overflow-scrolling: touch;
}

.stream-row::-webkit-scrollbar {
  display: none;
}

.broadcast-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  background: var(--glass);
  border: 1px solid var(--card-border);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
              box-shadow 0.4s ease, 
              border-color 0.4s ease,
              opacity 0.4s ease;
}

body.light .broadcast-card {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.08);
}

.broadcast-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 15px 35px rgba(255, 0, 51, 0.2);
  border-color: rgba(255, 0, 51, 0.35);
}

body.light .broadcast-card:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 0, 51, 0.4);
}

.broadcast-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.broadcast-card:hover img {
  transform: scale(1.05);
}

.broadcast-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  box-sizing: border-box;
  z-index: 2;
}

.card-live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 0, 51, 0.85);
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  align-self: flex-start;
  box-shadow: 0 0 10px rgba(255, 0, 51, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.card-live-badge .pulse-dot {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 6px #fff;
  animation: badgePulse 1.2s infinite;
}

@keyframes badgePulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

.card-duration-badge {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  align-self: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-bottom-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.card-bottom-info h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.card-bottom-info .card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.card-bottom-info .card-meta .viewers {
  color: #ff0033;
  font-weight: 600;
}

/* Play Hover Button Overlay */
.play-hover-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
  pointer-events: none;
}

.broadcast-card:hover .play-hover-overlay {
  opacity: 1;
}

.play-btn-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(255, 0, 51, 0.6);
  transform: scale(0.8);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.broadcast-card:hover .play-btn-circle {
  transform: scale(1);
}

.play-btn-circle svg {
  width: 16px;
  height: 16px;
  fill: white;
  margin-left: 2px;
}

/* Sport Category Filters */
.sport-filters {
  display: flex;
  gap: 10px;
  margin: 15px 0 25px 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.sport-filters::-webkit-scrollbar {
  display: none;
}

.filter-capsule {
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: white;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  animation: capsuleIn 0.3s ease both;
}

@keyframes capsuleIn {
  from { opacity: 0; transform: scale(0.85) translateY(4px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

body.light .filter-capsule {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
  color: #111;
}

.filter-capsule:hover, .filter-capsule.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  box-shadow: 0 0 15px rgba(255, 0, 51, 0.35);
  transform: translateY(-2px);
}

/* Stream Loader Overlay */
.stream-loader {
  position: absolute;
  inset: 0;
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  z-index: 10;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

body.light .stream-loader {
  background: var(--bg-light);
}

.loader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 0, 51, 0.2);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Offline Toast Notification */
.offline-toast {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: rgba(10, 14, 26, 0.95);
  border: 1px solid rgba(255, 0, 51, 0.3);
  box-shadow: 0 10px 30px rgba(255, 0, 51, 0.15);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 11;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
  font-size: 14px;
  font-weight: 600;
}

body.light .offline-toast {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 0, 0, 0.15);
  color: #111;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.offline-toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.loading-pulse-text {
  animation: pulseText 1.5s infinite ease-in-out;
}

@keyframes pulseText {
  0% { opacity: 0.5; }
  50% { opacity: 1; }
  100% { opacity: 0.5; }
}

/* ================= NATIONAL ELITE CHAMPIONSHIP FORM ================= */
.nec-container {
  max-width: 900px;
  margin: 40px auto;
  background: rgba(30, 41, 59, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
  animation: revealUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

body.light .nec-container {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.nec-header {
  text-align: center;
  padding: 50px 20px 30px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.3) 0%, rgba(30, 41, 59, 0) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

body.light .nec-header {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0) 100%);
  border-bottom-color: rgba(0, 0, 0, 0.04);
}

.nec-logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.nec-logo {
  height: 120px !important;
  max-width: 100% !important;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.4));
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

body.light .nec-logo {
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.nec-logo:hover {
  transform: scale(1.08);
}

.nec-header h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 8px;
  background: linear-gradient(90deg, #ffffff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

body.light .nec-header h1 {
  background: linear-gradient(90deg, #111111, #475569);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nec-header p {
  color: #94a3b8;
  font-size: 1.05rem;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}

body.light .nec-header p {
  color: #475569;
}

.nec-form-section {
  padding: 40px;
}

@media (max-width: 768px) {
  .nec-form-section {
    padding: 20px;
  }
}

.nec-section-box {
  background: rgba(15, 23, 42, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 25px;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

body.light .nec-section-box {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.05);
}

.nec-section-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.08);
}

body.light .nec-section-box:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
}

.nec-section-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
}

body.light .nec-section-title {
  color: #111111;
}

.nec-section-title::before {
  content: '';
  display: block;
  width: 5px;
  height: 20px;
  background: var(--accent);
  border-radius: 3px;
}

.nec-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

@media (max-width: 580px) {
  .nec-form-grid {
    grid-template-columns: 1fr;
  }
}

.nec-input-group {
  display: flex;
  flex-direction: column;
}

.nec-input {
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
  color: #ffffff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

body.light .nec-input {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 0, 0, 0.12);
  color: #111111;
}

.nec-input::placeholder {
  color: #64748b;
}

body.light .nec-input::placeholder {
  color: #94a3b8;
}

.nec-input:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.25);
}

body.light .nec-input:hover {
  border-color: rgba(0, 0, 0, 0.2);
  background: #ffffff;
}

.nec-input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 0 4px rgba(255, 0, 51, 0.15);
}

body.light .nec-input:focus {
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 0, 51, 0.1);
}

.nec-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.nec-check-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
  font-weight: 500;
  color: #ffffff;
}

body.light .nec-check-card {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 0, 0, 0.08);
  color: #111111;
}

.nec-check-card:hover {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.12);
}

body.light .nec-check-card:hover {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.15);
}

.nec-check-card input[type="checkbox"],
.nec-check-card input[type="radio"],
.nec-tc-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.nec-checkmark {
  height: 20px;
  width: 20px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

body.light .nec-checkmark {
  background-color: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.2);
}

.nec-check-card:hover input ~ .nec-checkmark,
.nec-tc-label:hover input ~ .nec-checkmark {
  border-color: rgba(255, 255, 255, 0.4);
}

body.light .nec-check-card:hover input ~ .nec-checkmark,
body.light .nec-tc-label:hover input ~ .nec-checkmark {
  border-color: rgba(0, 0, 0, 0.4);
}

.nec-check-card input:checked ~ .nec-checkmark,
.nec-tc-label input:checked ~ .nec-checkmark {
  background-color: var(--accent);
  border-color: var(--accent);
}

.nec-checkmark::after {
  content: "";
  display: none;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-bottom: 2px;
}

.nec-check-card input:checked ~ .nec-checkmark::after,
.nec-tc-label input:checked ~ .nec-checkmark::after {
  display: block;
}

.nec-check-card.selected {
  border-color: var(--accent);
  background: rgba(255, 0, 51, 0.06);
}

body.light .nec-check-card.selected {
  border-color: var(--accent);
  background: rgba(255, 0, 51, 0.03);
}

.nec-age-card {
  margin-top: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  animation: revealUp 0.4s ease forwards;
}

body.light .nec-age-card {
  background: rgba(0, 0, 0, 0.01);
  border-color: rgba(0, 0, 0, 0.1);
}

.nec-age-card h3 {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

body.light .nec-age-card h3 {
  color: #111111;
}

.nec-age-card h3::before {
  content: '→';
  color: var(--accent);
}

.nec-age-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
  margin-bottom: 15px;
}

.nec-tcs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nec-tc-label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  color: #cbd5e1;
  font-size: 0.9rem;
}

body.light .nec-tc-label {
  color: #334155;
}

.nec-tc-label:hover {
  background: rgba(255, 255, 255, 0.02);
}

body.light .nec-tc-label:hover {
  background: rgba(0, 0, 0, 0.02);
}

.nec-auth-box {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

body.light .nec-auth-box {
  border-top-color: rgba(0, 0, 0, 0.08);
}

.nec-submit-btn {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff0033 0%, #cc0029 100%);
  color: white;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  margin-top: 15px;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 8px 24px rgba(255, 0, 51, 0.3);
}

.nec-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 0, 51, 0.4);
  background: linear-gradient(135deg, #ff335c 0%, #ff0033 100%);
}

.nec-submit-btn:active {
  transform: translateY(0);
}

.nec-partners {
  background: rgba(0, 0, 0, 0.2);
  padding: 30px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

body.light .nec-partners {
  background: rgba(0, 0, 0, 0.01);
  border-top-color: rgba(0, 0, 0, 0.04);
}

.nec-partners p {
  color: #64748b;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

body.light .nec-partners p {
  color: #94a3b8;
}

.nec-partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.nec-partners-logos .nec-logo {
  height: 80px !important;
  max-width: 40% !important;
}

.nec-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 18px;
  background: rgba(0, 0, 0, 0.3);
  font-size: 0.85rem;
  color: #ffffff;
}

body.light .nec-footer {
  background: rgba(0, 0, 0, 0.03);
  color: #111111;
}

.nec-footer img {
  height: 28px !important;
  max-width: 100px !important;
  width: auto !important;
}

/* ================= BUBBLE LOADER FOR CAROUSELS ================= */
.home-stream-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 45px 20px;
  gap: 15px;
  opacity: 0.85;
}

.bubble-loader {
  display: flex;
  gap: 8px;
}

.bubble-loader .bubble {
  width: 12px;
  height: 12px;
  background-color: var(--accent);
  border-radius: 50%;
  animation: bounceBubble 1.2s infinite ease-in-out both;
}

.bubble-loader .bubble:nth-child(1) {
  animation-delay: -0.32s;
}

.bubble-loader .bubble:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes bounceBubble {
  0%, 80%, 100% { 
    transform: scale(0);
  } 
  40% { 
    transform: scale(1);
  }
}

/* ================= LIVE HERO SHOWCASE ================= */

.live-hero-showcase {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,0,51,0.12) 0%, rgba(10,14,26,0.95) 60%);
  border: 1px solid rgba(255, 0, 51, 0.25);
  box-shadow: 0 0 40px rgba(255, 0, 51, 0.15), 0 20px 60px rgba(0,0,0,0.4);
  margin-bottom: 10px;
  animation: heroReveal 0.6s ease both;
}

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.live-hero-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 30px;
  z-index: 5;
  box-shadow: 0 0 20px rgba(255, 0, 51, 0.55);
  animation: pulseBadge 2s infinite ease-in-out;
}

@keyframes pulseBadge {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 0, 51, 0.55); }
  50%       { box-shadow: 0 0 35px rgba(255, 0, 51, 0.85); }
}

.live-hero-content {
  display: flex;
  flex-direction: row;
  gap: 0;
}

.live-hero-thumbnail {
  position: relative;
  flex: 0 0 55%;
  min-height: 300px;
  overflow: hidden;
}

.live-hero-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.live-hero-showcase:hover .live-hero-thumbnail img {
  transform: scale(1.04);
}

.live-hero-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.live-hero-thumbnail:hover .live-hero-play-overlay {
  opacity: 1;
}

.live-hero-play-btn {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(255, 0, 51, 0.7);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.live-hero-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 45px rgba(255, 0, 51, 0.9);
}

.live-hero-play-btn svg {
  width: 28px;
  height: 28px;
  fill: white;
  margin-left: 4px;
}

.live-hero-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 36px;
  gap: 14px;
}

.live-hero-sport-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--accent);
  text-transform: uppercase;
}

.live-hero-title {
  font-size: clamp(1.2rem, 2.5vw, 1.9rem);
  font-weight: 900;
  line-height: 1.25;
  color: white;
}

.live-hero-subtitle {
  font-size: 14px;
  opacity: 0.65;
  line-height: 1.6;
  color: white;
  max-width: 380px;
}

.live-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.live-watch-btn {
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 30px;
  background: var(--accent);
  color: white;
  box-shadow: 0 6px 20px rgba(255, 0, 51, 0.4);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.live-watch-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 0, 51, 0.55);
}

.hero-btn-outline {
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  background: transparent;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hero-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
}

/* Mobile: stack thumbnail above info */
@media (max-width: 768px) {
  .live-hero-content {
    flex-direction: column;
  }

  .live-hero-thumbnail {
    flex: none;
    min-height: 200px;
  }

  .live-hero-info {
    padding: 24px 20px;
    gap: 10px;
  }

  .live-hero-title {
    font-size: 1.15rem;
  }

  .live-hero-subtitle {
    font-size: 13px;
  }
}

/* ================= NO ACTIVE LIVE STREAM MODAL ================= */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: rgba(30, 41, 59, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 35px 30px;
  border-radius: 20px;
  width: 90%;
  max-width: 480px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-align: center;
}

.modal-overlay.show .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 28px;
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 1;
}

.modal-close:hover {
  color: var(--accent);
}

.modal-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.modal-body h2 {
  font-size: 24px;
  margin-bottom: 12px;
  color: white;
}

body.light .modal-body h2 {
  color: #111;
}

.modal-body p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
}

body.light .modal-body p {
  color: #555;
}

.modal-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.modal-actions button {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.modal-actions .btn-primary {
  background: var(--accent);
  color: white;
  border: none;
}

.modal-actions .btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.modal-actions .btn-secondary {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

body.light .modal-actions .btn-secondary {
  color: #111;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.modal-actions .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

body.light .modal-actions .btn-secondary:hover {
  background: rgba(0, 0, 0, 0.05);
}

/* ================= LIVE STREAM SELECTOR (Watch Live page) ================= */
.live-selector-container {
  margin-top: 25px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 20px;
}

body.light .live-selector-container {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.live-selector-container h4 {
  font-size: 16px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 8px;
}

.live-streams-list {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding-bottom: 5px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.live-streams-list::-webkit-scrollbar {
  height: 6px;
}

.live-streams-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
}

.live-streams-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.live-stream-item {
  flex: 0 0 240px;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
  position: relative;
}

body.light .live-stream-item {
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.live-stream-item:hover, .live-stream-item.active {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 5px 15px rgba(255, 0, 51, 0.15);
}

.live-stream-item.active {
  background: rgba(255, 0, 51, 0.05);
}

.live-stream-thumb-wrap {
  position: relative;
  aspect-ratio: 16/9;
}

.live-stream-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.live-stream-badge-overlay {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--accent);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
  text-transform: uppercase;
}

.live-stream-item-info {
  padding: 12px;
}

.live-stream-item-info h5 {
  font-size: 13px;
  color: white;
  line-height: 1.4;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 700;
}

body.light .live-stream-item-info h5 {
  color: #111;
}

.live-stream-item-info span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

body.light .live-stream-item-info span {
  color: #666;
}

/* ================= MULTI-LIVE GRID (Homepage) ================= */
.live-streams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
  margin-top: 20px;
  width: 100%;
}

.live-grid-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

body.light .live-grid-card {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.live-grid-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  border-color: var(--accent);
}

.live-grid-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.live-grid-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.live-grid-card:hover .live-grid-thumb img {
  transform: scale(1.05);
}

.live-grid-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
  z-index: 2;
}

.live-grid-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.live-grid-card:hover .live-grid-play-overlay {
  opacity: 1;
}

.live-grid-play-btn {
  width: 50px;
  height: 50px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 15px rgba(255, 0, 51, 0.3);
  transform: scale(0.8);
  transition: transform 0.3s ease, background 0.3s ease;
}

.live-grid-play-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.live-grid-card:hover .live-grid-play-btn {
  transform: scale(1);
}

.live-grid-play-btn:hover {
  background: var(--accent-hover);
}

.live-grid-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.live-grid-info h3 {
  font-size: 18px;
  color: white;
  margin-bottom: 8px;
  line-height: 1.4;
  font-weight: 800;
}

body.light .live-grid-info h3 {
  color: #111;
}

.live-grid-info p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin-bottom: 15px;
  flex-grow: 1;
}

body.light .live-grid-info p {
  color: #555;
}

.live-grid-cta {
  background: var(--accent);
  color: white;
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.3s ease;
}

.live-grid-cta:hover {
  background: var(--accent-hover);
}

/* ================= OFFLINE HOMEPAGE STATUS CARD ================= */
.live-offline-card {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(10, 14, 26, 0.95) 100%);
  border: 1px solid var(--card-border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  padding: 40px 30px;
  text-align: center;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  animation: heroReveal 0.6s ease both;
}

body.light .live-offline-card {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.01) 0%, rgba(255, 255, 255, 0.98) 100%);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.live-offline-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

body.light .live-offline-badge {
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.offline-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #555;
  border-radius: 50%;
}

.live-offline-card h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900;
  color: white;
  margin: 0;
}

body.light .live-offline-card h3 {
  color: var(--text-light);
}

.live-offline-card p {
  font-size: 14px;
  opacity: 0.65;
  line-height: 1.6;
  color: white;
  max-width: 480px;
  margin: 0;
}

body.light .live-offline-card p {
  color: #555;
}

.live-offline-actions {
  margin-top: 10px;
}

body.light .live-offline-card .hero-btn-outline {
  border-color: rgba(0, 0, 0, 0.18);
  color: var(--text-light);
}

body.light .live-offline-card .hero-btn-outline:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.35);
}

/* ──────────────────────────────────────────────────────────────────────────
   NEC SUCCESS CARD
   ────────────────────────────────────────────────────────────────────────── */
.nec-success-card {
  text-align: center;
  padding: 40px 20px;
  animation: revealUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.nec-success-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.nec-success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  border: 2px solid rgba(16, 185, 129, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.15);
}

body.light .nec-success-icon {
  background: rgba(16, 185, 129, 0.05);
  border-color: rgba(16, 185, 129, 0.3);
}

.nec-checkmark-svg {
  width: 48px;
  height: 48px;
}

.nec-checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #10b981;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.nec-checkmark-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke: #10b981;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

.nec-success-card h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #ffffff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.01em;
}

body.light .nec-success-card h2 {
  background: linear-gradient(90deg, #111111, #475569);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nec-success-msg {
  color: #cbd5e1;
  font-size: 1.1rem;
  max-width: 550px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

body.light .nec-success-msg {
  color: #334155;
}

.nec-success-details {
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 24px;
  max-width: 550px;
  margin: 0 auto 25px;
  text-align: left;
}

body.light .nec-success-details {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.08);
}

.nec-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.95rem;
  gap: 15px;
}

body.light .nec-detail-row {
  border-bottom-color: rgba(0, 0, 0, 0.05);
}

.nec-detail-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.nec-detail-row:first-child {
  padding-top: 0;
}

.nec-detail-row span {
  color: #94a3b8;
  font-weight: 500;
  min-width: 120px;
}

body.light .nec-detail-row span {
  color: #64748b;
}

.nec-detail-row strong {
  color: #ffffff;
  text-align: right;
  word-break: break-word;
}

body.light .nec-detail-row strong {
  color: #111111;
}

.nec-success-note {
  font-size: 0.9rem;
  color: #94a3b8;
  max-width: 500px;
  margin: 0 auto;
}

body.light .nec-success-note {
  color: #64748b;
}


