/* ============================================
   16SHOTEM VISUALZ — COMPLETE PREMIUM STYLESHEET
   Black + Neon Green | Chicago Media Brand
   ============================================ */

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

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* NEW PALETTE: Black + Royal Blue + Neon Green + White */
  --neon: #39ff6e;
  --neon-dim: #22cc50;
  --neon-glow: rgba(57,255,110,0.15);
  --neon-glow-strong: rgba(57,255,110,0.35);
  --blue: #1e4fff;
  --blue-bright: #3b6fff;
  --blue-dark: #0f2a99;
  --blue-glow: rgba(30,79,255,0.25);
  --blue-glow-strong: rgba(30,79,255,0.45);
  --black: #000000;
  --dark: #05080f;
  --dark2: #080d18;
  --dark3: #0d1220;
  --dark4: #111826;
  --card-bg: #080d18;
  --border: rgba(255,255,255,0.07);
  --border-blue: rgba(30,79,255,0.35);
  --border-neon: rgba(57,255,110,0.35);
  --white: #ffffff;
  --gray: #7a8499;
  --gray-light: #c0cce0;
  --font-head: 'Oswald', 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--dark);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- NOISE TEXTURE ---- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.25;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.section-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--neon);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--neon);
}

.section-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 16px;
}

.section-title span { color: var(--neon); }

.section-sub {
  font-size: 17px;
  color: var(--gray-light);
  font-weight: 400;
  max-width: 580px;
  line-height: 1.6;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all var(--transition);
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--neon);
  color: #000;
  box-shadow: 0 0 24px rgba(0,255,65,0.4);
}
.btn-primary:hover {
  background: #fff;
  box-shadow: 0 0 40px rgba(0,255,65,0.6);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--neon);
  border: 1px solid var(--neon);
}
.btn-outline:hover {
  background: var(--neon);
  color: #000;
  box-shadow: 0 0 24px rgba(0,255,65,0.4);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}


/* ---- BLUE BUTTON VARIANT ---- */
.btn-blue {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 0 24px rgba(30,79,255,0.4);
}
.btn-blue:hover {
  background: var(--blue-bright);
  box-shadow: 0 0 40px rgba(30,79,255,0.6);
  transform: translateY(-2px);
}

.btn-outline-blue {
  background: transparent;
  color: var(--blue-bright);
  border: 1px solid var(--blue);
}
.btn-outline-blue:hover {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 0 24px rgba(30,79,255,0.4);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 40px; font-size: 15px; letter-spacing: 2px; }
.btn-sm { padding: 10px 22px; font-size: 12px; }

/* ---- HEADER / NAV ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 70px;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(0,0,0,0.98);
  box-shadow: 0 4px 30px rgba(30,79,255,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--neon);
  box-shadow: 0 0 12px rgba(0,255,65,0.4);
}
.logo-text {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1.1;
}
.logo-text span { color: var(--neon); display: block; font-size: 10px; letter-spacing: 3px; font-weight: 500; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-light);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

/* ---- MOBILE NAV ---- */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 70px 0 0 0;
  background: rgba(0,0,0,0.98);
  z-index: 999;
  flex-direction: column;
  padding: 32px 24px;
  gap: 8px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-light);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--neon); }
.mobile-nav .btn { margin-top: 16px; width: 100%; justify-content: center; }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 70% at 80% 30%, rgba(30,79,255,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(57,255,110,0.06) 0%, transparent 55%),
    linear-gradient(135deg, #000 0%, #05080f 50%, #080d18 100%);
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(30,79,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,79,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30,79,255,0.12);
  border: 1px solid var(--border-blue);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--neon);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 90px);
  font-weight: 700;
  line-height: 1.0;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero h1 span { color: var(--neon); }

.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--gray-light);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--neon);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-visual {
  position: absolute;
  right: 0;
  top: 70px;
  bottom: 0;
  width: 44%;
  z-index: 1;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #000 0%, transparent 60%),
              linear-gradient(to top, #000 0%, transparent 30%);
}

/* ---- TICKER ---- */
.ticker-bar {
  background: var(--blue);
  color: #fff;
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-flex;
  animation: ticker 30s linear infinite;
  gap: 0;
}
.ticker-item {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.ticker-item::after { content: '●'; font-size: 8px; }

/* ---- SECTIONS ---- */
.section { padding: 100px 0; position: relative; }
.section-sm { padding: 60px 0; }

.section-header {
  margin-bottom: 60px;
}
.section-header.center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-header.center .section-label { justify-content: center; }
.section-header.center .section-label::before { display: none; }

/* ---- SERVICE CARDS ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  position: relative;
  background: var(--card-bg);
  padding: 40px 36px;
  overflow: hidden;
  transition: all var(--transition);
  cursor: default;
  border: 1px solid var(--border);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,79,255,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  border-color: var(--border-blue);
  transform: translateY(-4px);
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(30,79,255,0.12);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  font-size: 36px;
  margin-bottom: 20px;
  display: block;
}
.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.service-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 24px;
}
.service-link {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--neon);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition);
}
.service-card:hover .service-link { gap: 14px; }

.service-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-head);
  font-size: 60px;
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
}

/* ---- STUDIO GALLERY ---- */
.studio-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 4px;
  position: relative;
}

.studio-gallery-main {
  grid-row: 1 / 3;
  overflow: hidden;
  border-radius: var(--radius) 0 0 var(--radius);
  cursor: pointer;
}

.gallery-thumb {
  overflow: hidden;
  cursor: pointer;
}
.gallery-thumb:nth-child(3) { border-radius: 0 var(--radius) 0 0; }
.gallery-thumb:nth-child(5) { border-radius: 0 0 var(--radius) 0; }

.studio-gallery img, .studio-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.studio-gallery-main:hover img,
.gallery-thumb:hover img { transform: scale(1.05); }

.view-all-photos {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0,0,0,0.8);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all var(--transition);
  text-transform: uppercase;
}
.view-all-photos:hover {
  background: var(--neon);
  color: #000;
  border-color: var(--neon);
}

/* ---- PACKAGES ---- */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.package-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.package-card.featured {
  border-color: var(--neon);
  box-shadow: 0 0 40px rgba(57,255,110,0.15), 0 0 60px rgba(30,79,255,0.1);
}

.package-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: transparent;
  transition: background var(--transition);
}
.package-card:hover::before,
.package-card.featured::before { background: var(--neon); }

.package-card:hover {
  border-color: var(--border-blue);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 30px rgba(0,255,65,0.08);
}

.package-badge {
  display: inline-block;
  background: var(--neon);
  color: #000;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.package-icon { font-size: 32px; margin-bottom: 16px; }
.package-card h3 {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.package-price {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  color: var(--neon);
  margin-bottom: 16px;
}
.package-price span { font-size: 16px; color: var(--gray); font-weight: 400; }
.package-card p { font-size: 14px; color: var(--gray); margin-bottom: 24px; line-height: 1.6; }
.package-features { margin-bottom: 28px; }
.package-features li {
  font-size: 13px;
  color: var(--gray-light);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.package-features li::before {
  content: '✓';
  color: var(--neon);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}

/* ---- FORMS ---- */
.form-section {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 50px 48px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-full { grid-column: 1 / -1; }

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-light);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--neon);
  box-shadow: 0 0 0 3px rgba(0,255,65,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #444; }
.form-group select option { background: #111; color: #fff; }

.form-submit { margin-top: 8px; }

/* ---- PLATFORM CARDS (Kick, Twitch, etc.) ---- */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.platform-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
}
.platform-card:hover {
  border-color: var(--border-blue);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 20px rgba(30,79,255,0.1);
}
.platform-icon { font-size: 32px; }
.platform-name {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.platform-handle { font-size: 12px; color: var(--gray); }
.platform-stat { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--neon); }

/* ---- STREAMING SECTION ---- */
.streaming-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stream-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.stream-card.kick { border-color: rgba(83,252,74,0.2); }
.stream-card.twitch { border-color: rgba(145,70,255,0.2); }

.stream-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.stream-card.kick:hover { box-shadow: 0 20px 50px rgba(83,252,74,0.1); }
.stream-card.twitch:hover { box-shadow: 0 20px 50px rgba(145,70,255,0.1); }

.stream-logo { font-size: 40px; margin-bottom: 16px; }
.stream-card h3 {
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.stream-card.kick h3 { color: #53fc4a; }
.stream-card.twitch h3 { color: #9146ff; }
.stream-card p { font-size: 14px; color: var(--gray); margin-bottom: 24px; line-height: 1.6; }

/* ---- MEMBERSHIP / DISCORD ---- */
.membership-card {
  background: linear-gradient(135deg, #05080f 0%, #0a1220 100%);
  border: 1px solid var(--border-neon);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.membership-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(30,79,255,0.12) 0%, transparent 70%);
}
.membership-card > * { position: relative; z-index: 1; }

.discord-card {
  background: linear-gradient(135deg, #0a0a14 0%, #0d0d1a 100%);
  border: 1px solid rgba(88,101,242,0.3);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.discord-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(88,101,242,0.08) 0%, transparent 70%);
}
.discord-card > * { position: relative; z-index: 1; }

/* ---- REVIEW CARDS ---- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
}
.review-card:hover {
  border-color: var(--border-blue);
  transform: translateY(-3px);
}

.review-stars {
  color: #ffd700;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.review-text {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon), #006620);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
}
.review-name { font-family: var(--font-head); font-size: 15px; font-weight: 700; }
.review-meta { font-size: 11px; color: var(--gray); letter-spacing: 1px; }
.review-platform { font-size: 10px; color: var(--neon); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

/* ---- STATS BAR ---- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat-item {
  padding: 36px 24px;
  text-align: center;
  background: var(--card-bg);
  border-right: 1px solid var(--border);
  transition: all var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(0,255,65,0.04); }
.stat-num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 700;
  color: var(--neon);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 12px; color: var(--gray); letter-spacing: 1px; text-transform: uppercase; }
.stat-platform { font-size: 10px; color: var(--gray); margin-top: 2px; }

/* ---- VIDEO GRID ---- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--dark3);
  border: 1px solid var(--border);
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, #080808 0%, #0d1a0e 50%, #080808 100%);
  border: 1px solid var(--border-neon);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,255,65,0.1) 0%, transparent 65%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(30px, 4vw, 52px); text-transform: uppercase; margin-bottom: 16px; }
.cta-banner p { font-size: 17px; color: var(--gray-light); margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- DARK DIVIDER ---- */
.dark-section {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ---- MERCH ---- */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.merch-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.merch-card:hover {
  border-color: var(--border-neon);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.merch-img {
  width: 100%;
  aspect-ratio: 1;
  background: var(--dark3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  position: relative;
  overflow: hidden;
}
.merch-img img { width: 100%; height: 100%; object-fit: cover; }
.merch-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--neon);
  color: #000;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
}
.merch-info { padding: 24px; }
.merch-name { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.merch-price { font-family: var(--font-head); font-size: 22px; color: var(--neon); font-weight: 700; margin-bottom: 16px; }

/* ---- SPONSOR PACKAGES ---- */
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.sponsor-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
}
.sponsor-card:hover {
  border-color: var(--border-neon);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.sponsor-icon { font-size: 32px; margin-bottom: 16px; }
.sponsor-card h3 { font-size: 18px; font-weight: 700; text-transform: uppercase; margin-bottom: 8px; }
.sponsor-card p { font-size: 13px; color: var(--gray); line-height: 1.6; margin-bottom: 20px; }
.sponsor-features li {
  font-size: 12px;
  color: var(--gray-light);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sponsor-features li::before { content: '→'; color: var(--neon); font-size: 11px; }

/* ---- ADD-ONS ---- */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.addon-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
  text-align: center;
}
.addon-card:hover {
  border-color: var(--border-neon);
  box-shadow: 0 0 24px rgba(0,255,65,0.08);
}
.addon-icon { font-size: 32px; margin-bottom: 12px; }
.addon-name { font-family: var(--font-head); font-size: 15px; font-weight: 700; text-transform: uppercase; margin-bottom: 6px; }
.addon-price { font-family: var(--font-head); font-size: 22px; color: var(--neon); font-weight: 700; margin-bottom: 8px; }
.addon-desc { font-size: 12px; color: var(--gray); line-height: 1.5; }

/* ---- INFO BOXES ---- */
.info-box {
  background: rgba(0,255,65,0.04);
  border: 1px solid var(--border-neon);
  border-radius: var(--radius);
  padding: 24px 28px;
}
.info-box h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--neon);
  margin-bottom: 12px;
}
.info-box ul li {
  font-size: 13px;
  color: var(--gray-light);
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.info-box ul li::before { content: '⚠'; color: var(--neon); flex-shrink: 0; font-size: 11px; margin-top: 2px; }

/* ---- CLIPS CARDS ---- */
.clips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ---- BOOKING STICKY BAR ---- */
.booking-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.95);
  border-top: 1px solid var(--border-neon);
  backdrop-filter: blur(20px);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 900;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.booking-sticky.visible { transform: translateY(0); }
.booking-sticky-text { font-family: var(--font-head); font-size: 16px; font-weight: 600; }
.booking-sticky-text span { color: var(--neon); }
.booking-sticky-price { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--neon); }
.booking-sticky-sub { font-size: 11px; color: var(--gray); }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all var(--transition);
  text-decoration: none;
  color: var(--gray);
}
.social-btn:hover {
  background: var(--neon);
  border-color: var(--neon);
  color: #000;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: var(--gray);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--neon); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: #444; }
.footer-bottom a { color: var(--gray); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--neon); }

/* ---- PAGE HERO ---- */
.page-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(0,255,65,0.06) 0%, transparent 70%),
    linear-gradient(135deg, #000 0%, #080808 100%);
  z-index: 0;
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(30,79,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,79,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-size: clamp(48px, 7vw, 90px);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.page-hero p {
  font-size: 18px;
  color: var(--gray-light);
  max-width: 600px;
  line-height: 1.65;
  margin-bottom: 36px;
}

/* ---- BREADCRUMB ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 24px;
  font-family: var(--font-head);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.breadcrumb a { color: var(--gray); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--neon); }
.breadcrumb span { color: var(--neon); }

/* ---- NEWSLETTER ---- */
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
}
.newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input:focus { border-color: var(--neon); }
.newsletter-form input::placeholder { color: #444; }

/* ---- LIGHTBOX ---- */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.97);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.lightbox-overlay.active { display: flex; }
.lightbox-main-img {
  max-width: 88vw;
  max-height: 76vh;
  object-fit: contain;
  border-radius: var(--radius);
  border: 1px solid #1a1a1a;
  box-shadow: 0 0 80px rgba(0,255,65,0.12);
}
.lightbox-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 20px;
}
.lightbox-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid #333;
  color: #fff;
  width: 46px; height: 46px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  font-family: var(--font-body);
}
.lightbox-btn:hover { background: var(--neon); color: #000; border-color: var(--neon); }
.lightbox-counter { font-family: var(--font-head); font-size: 13px; color: #666; letter-spacing: 3px; min-width: 70px; text-align: center; }
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  background: transparent;
  border: none;
  color: #555;
  font-size: 34px;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition);
  z-index: 10;
}
.lightbox-close:hover { color: #fff; }
.lightbox-thumbstrip {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  overflow-x: auto;
  max-width: 88vw;
  padding-bottom: 6px;
  scrollbar-width: thin;
  scrollbar-color: var(--neon) #111;
}
.lightbox-thumbstrip img {
  height: 58px;
  width: 82px;
  object-fit: cover;
  border-radius: 5px;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.45;
  transition: all var(--transition);
  flex-shrink: 0;
}
.lightbox-thumbstrip img:hover { opacity: 0.75; }
.lightbox-thumbstrip img.active-thumb { border-color: var(--neon); opacity: 1; }
.lightbox-caption {
  font-family: var(--font-head);
  font-size: 12px;
  color: #555;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 10px;
  text-align: center;
  max-width: 88vw;
}

/* ---- CALENDLY EMBED ---- */
.calendly-section {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 700px;
}
.calendly-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  text-align: center;
  padding: 60px;
}

/* ---- ANIMATIONS ---- */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(0,255,65,0.3); }
  50% { box-shadow: 0 0 40px rgba(0,255,65,0.6); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-full { grid-column: 1; }
  .studio-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .studio-gallery-main { grid-row: auto; grid-column: 1 / -1; height: 260px; border-radius: var(--radius) var(--radius) 0 0; }
  .gallery-thumb { height: 160px; }
  .gallery-thumb:nth-child(3) { border-radius: 0; }
  .gallery-thumb:nth-child(5) { border-radius: 0 0 var(--radius) var(--radius); }
  .video-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .streaming-grid { grid-template-columns: 1fr; }
  .merch-grid { grid-template-columns: repeat(2, 1fr); }
  .addons-grid { grid-template-columns: repeat(2, 1fr); }
  .clips-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-banner { padding: 40px 28px; }
  .form-section { padding: 32px 24px; }
  .membership-card, .discord-card { padding: 40px 28px; }
  .hero-visual { display: none; }
  .booking-sticky { flex-direction: column; gap: 12px; text-align: center; padding: 16px 20px; }
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .sponsor-grid { grid-template-columns: 1fr 1fr; }
  .newsletter-form { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 38px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; text-align: center; }
  .merch-grid { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: 1fr; }
  .sponsor-grid { grid-template-columns: 1fr; }
  .platform-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
}

/* ============================================================
   BLUE PANEL SYSTEM — inspired by thumbnail aesthetic
   Black left | Royal Blue right panels | Neon green accents
   ============================================================ */

/* Blue brick-texture panel used as bg on hero right side */
.hero-blue-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 42%;
  background: 
    repeating-linear-gradient(
      0deg,
      rgba(0,0,0,0.08) 0px, rgba(0,0,0,0.08) 1px,
      transparent 1px, transparent 28px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(0,0,0,0.06) 0px, rgba(0,0,0,0.06) 1px,
      transparent 1px, transparent 60px
    ),
    linear-gradient(135deg, #0a1fff 0%, #1a3dcc 40%, #0d2799 100%);
  z-index: 0;
}
.hero-blue-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--dark) 0%, transparent 40%);
}
.hero-blue-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--dark) 0%, transparent 30%);
}

/* Section with blue left border accent */
.section-blue-accent {
  border-left: 4px solid var(--blue);
  padding-left: 24px;
}

/* Blue background sections */
.section-bg-blue {
  background: linear-gradient(135deg, #05080f 0%, #0a1428 50%, #0d1835 100%);
  border-top: 1px solid rgba(30,79,255,0.2);
  border-bottom: 1px solid rgba(30,79,255,0.2);
}

/* Cards with blue top accent */
.card-blue-top::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
}
.card-blue-top:hover::before {
  background: linear-gradient(90deg, var(--blue), var(--neon));
}

/* Blue glow badge */
.badge-blue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30,79,255,0.15);
  border: 1px solid rgba(30,79,255,0.4);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #7ea8ff;
}

/* Stat boxes — blue background */
.stat-box-blue {
  background: linear-gradient(135deg, rgba(30,79,255,0.15) 0%, rgba(30,79,255,0.06) 100%);
  border: 1px solid rgba(30,79,255,0.3);
  border-radius: var(--radius);
  padding: 24px 28px;
}

/* Section divider line — blue/neon gradient */
.divider-blue {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--neon));
  border-radius: 2px;
  margin: 0 auto 24px;
}

/* Cards: blue-left-border on hover */
.service-card:hover {
  border-left: 3px solid var(--blue) !important;
}

/* Ticker on blue background — text stays white */
.ticker-bar { background: var(--blue) !important; color: #fff !important; }
.ticker-item { color: #fff; }

/* Footer update — dark blue tinted */
.site-footer {
  background: linear-gradient(180deg, var(--dark) 0%, #030710 100%) !important;
  border-top: 1px solid rgba(30,79,255,0.2) !important;
}

/* Nav underline — blue on hover */
.nav-links a::after { background: var(--blue) !important; }
.nav-links a:hover { color: #7ea8ff !important; }

/* Section label line — blue */
.section-label::before { background: var(--blue) !important; }
.section-label { color: #7ea8ff !important; }

/* Breadcrumb */
.breadcrumb a:hover { color: var(--blue-bright) !important; }

/* Review card hover — blue border */
.review-card:hover { border-color: rgba(30,79,255,0.4) !important; }

/* Package featured card — dual glow */
.package-card.featured {
  box-shadow: 0 0 0 1px rgba(57,255,110,0.4), 0 0 50px rgba(30,79,255,0.15) !important;
}

/* Platform stat color */
.platform-stat { color: var(--neon) !important; }

/* Addon card hover */
.addon-card { border-left: 3px solid transparent; transition: border-color 0.25s; }
.addon-card:hover { border-left-color: var(--blue) !important; }

/* Form input focus — blue glow */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue) !important;
  box-shadow: 0 0 0 3px rgba(30,79,255,0.15) !important;
}

/* Hero h1 — second span/highlight in blue */
.hero h1 .blue { color: var(--blue-bright); }

/* Page hero bg — blue gradient right side */
.page-hero {
  background:
    radial-gradient(ellipse 55% 80% at 85% 50%, rgba(30,79,255,0.2) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 15% 60%, rgba(57,255,110,0.04) 0%, transparent 55%),
    linear-gradient(135deg, #000 0%, #05080f 60%, #080d18 100%) !important;
}

/* Streaming cards — blue brand colors maintained */
.stream-card.kick { border-color: rgba(57,255,110,0.3) !important; }
.stream-card.twitch { border-color: rgba(145,70,255,0.3) !important; }

/* Section alternating bg */
.section-alt {
  background: linear-gradient(180deg, var(--dark) 0%, #080d1a 50%, var(--dark) 100%);
}
