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

:root {
  --blue: #2060c8;
  --blue-bright: #3a7ff0;
  --blue-light: #5a9fff;
  --blue-dark: #1040a0;
  --white: #ffffff;
  --silver: #c8d4e0;
  --red: #cc2222;
  --bg: #080808;
  --bg-2: #0e0e0e;
  --bg-3: #161616;
  --surface: #1e1e1e;
  --text: #f0ede6;
  --text-muted: #7a7a7a;
  --border: #252525;
  --radius: 4px;
  --shadow: 0 4px 24px rgba(0,0,0,0.6);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--blue);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; cursor: pointer; }
.nav-logo img { height: 52px; width: auto; display: block; }
.nav-links { display: flex; gap: 0.25rem; list-style: none; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted);
  text-decoration: none; padding: 0.5rem 0.9rem;
  border-radius: var(--radius); transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--blue-light); background: rgba(58,127,240,0.08);
}
.nav-live-badge {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--red); color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.85rem; letter-spacing: 0.15em;
  padding: 0.35rem 0.85rem; border-radius: 3px;
  text-decoration: none; text-transform: uppercase;
  animation: pulse-badge 2s ease-in-out infinite;
}
.nav-live-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: #fff; animation: blink 1.2s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }
@keyframes pulse-badge { 0%,100%{box-shadow:0 0 0 0 rgba(204,34,34,0.4)} 50%{box-shadow:0 0 0 6px rgba(204,34,34,0)} }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* ── PAGES ── */
.page { display: none; }
.page.active { display: block; }

/* ── HERO ── */
.hero {
  position: relative; background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  overflow: hidden; padding: 5rem 2rem 4rem; text-align: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 110%, rgba(32,96,200,0.14) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 85% 15%, rgba(58,127,240,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.hero-diamond { position: absolute; width: 340px; height: 340px; border: 1px solid rgba(58,127,240,0.08); transform: rotate(45deg); top: -90px; right: -90px; }
.hero-diamond-2 { position: absolute; width: 220px; height: 220px; border: 1px solid rgba(32,96,200,0.1); transform: rotate(45deg); bottom: -70px; left: -50px; }
.hero-logo { margin: 0 auto 2.5rem; display: block; width: min(340px, 70vw); height: auto; filter: drop-shadow(0 0 32px rgba(58,127,240,0.35)) drop-shadow(0 8px 24px rgba(0,0,0,0.8)); }
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1; letter-spacing: 0.02em; text-transform: uppercase;
  margin-bottom: 1.25rem; color: var(--silver);
}
.hero h1 em { font-style: italic; color: var(--blue-light); }
.hero p { max-width: 540px; margin: 0 auto 2.5rem; color: var(--text-muted); font-size: 1.05rem; line-height: 1.65; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1rem; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.85rem 2rem;
  border-radius: var(--radius); border: none; cursor: pointer;
  text-decoration: none; transition: all 0.2s;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-bright); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(32,96,200,0.35); }
.btn-secondary { background: transparent; color: var(--text); border: 2px solid var(--border); }
.btn-secondary:hover { border-color: var(--blue-light); color: var(--blue-light); }
.btn-ghost { background: transparent; color: var(--blue-light); border: 2px solid var(--blue); }
.btn-ghost:hover { background: var(--blue); color: #fff; }

/* ── SECTIONS ── */
.section { padding: 5rem 2rem; max-width: 1200px; margin: 0 auto; }
.section-full { padding: 5rem 2rem; }
.section-dark { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-label {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--blue-light); margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.section-label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--blue-bright); }
.section-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem); line-height: 0.95;
  text-transform: uppercase; letter-spacing: -0.01em; margin-bottom: 1rem;
}
.section-title em { color: var(--blue-light); font-style: italic; }
.divider { width: 60px; height: 3px; background: var(--blue); margin: 1.25rem 0; }

/* ── FEATURES STRIP ── */
.features-strip { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1.25rem 2rem; }
.features-strip-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 1rem; text-align: center; }
.feature-item-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 2rem; color: var(--blue-light); }
.feature-item-lbl { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; }

/* ── LIVE STREAM ── */
.live-layout { display: grid; grid-template-columns: 1fr 300px; gap: 1.5rem; max-width: 1400px; margin: 0 auto; padding: 2rem; align-items: start; }
.stream-wrapper { background: #000; border: 2px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.stream-header { background: var(--bg-3); padding: 0.75rem 1rem; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); }
.stream-title-text { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.05rem; letter-spacing: 0.05em; }
.live-indicator { display: flex; align-items: center; gap: 0.4rem; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--red); }
.live-indicator .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); animation: blink 1.2s ease-in-out infinite; }
.live-indicator.offline { color: var(--text-muted); }
.live-indicator.offline .dot { background: var(--text-muted); animation: none; }
.stream-embed-container { position: relative; width: 100%; padding-top: 56.25%; background: #000; }
.stream-embed-container iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.stream-offline-msg { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; color: var(--text-muted); background: #020202; }
.stream-offline-icon { width: 72px; height: auto; opacity: 0.2; }
.stream-offline-msg p { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.1rem; letter-spacing: 0.1em; text-transform: uppercase; }
.stream-ads-below { margin-top: 1rem; display: grid; gap: 0.75rem; }
.stream-ads-below.ads-1 { grid-template-columns: 1fr; }
.stream-ads-below.ads-2 { grid-template-columns: 1fr 1fr; }
.stream-ads-below.ads-3 { grid-template-columns: 1fr 1fr 1fr; }
.stream-ads-below.ads-4 { grid-template-columns: 1fr 1fr; }
.ad-slot { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: var(--surface); position: relative; transition: border-color 0.2s, transform 0.2s; }
.ad-slot:hover { border-color: var(--blue-bright); transform: translateY(-2px); }
.ad-slot a { display: block; }
.ad-slot img { width: 100%; height: 100px; object-fit: cover; display: block; }
.ad-slot-label, .sidebar-ad-label { position: absolute; top: 4px; left: 4px; font-family: 'Barlow Condensed', sans-serif; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); background: rgba(0,0,0,0.55); padding: 1px 5px; border-radius: 2px; }
.live-sidebar { display: flex; flex-direction: column; gap: 1rem; }
.sidebar-ad-slot { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: var(--surface); transition: border-color 0.2s, transform 0.2s; position: relative; }
.sidebar-ad-slot:hover { border-color: var(--blue-bright); transform: translateY(-2px); }
.sidebar-ad-slot a { display: block; }
.sidebar-ad-slot img { width: 100%; height: 160px; object-fit: cover; display: block; }
.upcoming-box { background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; }
.upcoming-box h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue-light); margin-bottom: 1rem; }
.upcoming-item { padding: 0.75rem 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.upcoming-item:last-child { border-bottom: none; }
.upcoming-item strong { display: block; font-size: 0.95rem; }
.upcoming-item span { color: var(--text-muted); font-size: 0.8rem; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.felt-box { background: #0d1a2e; border-radius: var(--radius); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; border: 2px solid rgba(58,127,240,0.2); box-shadow: inset 0 0 60px rgba(32,96,200,0.1), 0 20px 60px rgba(0,0,0,0.6); }
.felt-box img { width: 70%; height: auto; filter: drop-shadow(0 0 24px rgba(58,127,240,0.4)); }
.about-visual { position: relative; }
.about-stat-badge { position: absolute; bottom: -20px; right: -20px; background: var(--blue); color: #fff; padding: 1rem 1.25rem; border-radius: var(--radius); font-family: 'Barlow Condensed', sans-serif; font-weight: 900; text-align: center; box-shadow: var(--shadow), 0 0 20px rgba(32,96,200,0.3); }
.about-stat-badge .num { font-size: 2.5rem; line-height: 1; display: block; }
.about-stat-badge .lbl { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.8; }
.about-content p { color: var(--text-muted); line-height: 1.7; margin-bottom: 1.25rem; font-size: 1rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 2rem; }
.about-feature { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.85rem; background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius); }
.about-feature-icon { width: 32px; height: 32px; background: rgba(32,96,200,0.2); border: 1px solid rgba(58,127,240,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; }
.about-feature-text strong { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 0.95rem; font-weight: 700; letter-spacing: 0.05em; margin-bottom: 0.1rem; }
.about-feature-text span { font-size: 0.8rem; color: var(--text-muted); }

/* ── CLINICS ── */
.clinics-layout { display: grid; grid-template-columns: 1fr 420px; gap: 4rem; align-items: start; }
.clinic-cards { display: grid; gap: 1rem; }
.clinic-card { background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; display: grid; grid-template-columns: auto 1fr auto; gap: 1rem; align-items: center; transition: border-color 0.2s; }
.clinic-card:hover { border-color: var(--blue-bright); }
.clinic-level { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.clinic-level.beginner { background: rgba(58,127,240,0.12); border: 2px solid var(--blue); }
.clinic-level.intermediate { background: rgba(200,212,224,0.1); border: 2px solid var(--silver); }
.clinic-level.advanced { background: rgba(204,34,34,0.12); border: 2px solid var(--red); }
.clinic-info h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.15rem; letter-spacing: 0.05em; margin-bottom: 0.3rem; }
.clinic-info p { font-size: 0.85rem; color: var(--text-muted); }
.clinic-tag { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.3rem 0.7rem; border-radius: 2px; white-space: nowrap; }
.clinic-tag.open { background: rgba(58,127,240,0.12); color: var(--blue-light); border: 1px solid var(--blue); }
.clinic-tag.limited { background: rgba(200,212,224,0.08); color: var(--silver); border: 1px solid rgba(200,212,224,0.3); }

/* ── FORMS ── */
.signup-form-box, .contact-form-box { background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; }
.signup-form-box { position: sticky; top: 80px; }
.signup-form-box h3, .contact-form-box h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.6rem; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 0.5rem; }
.signup-form-box > p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.5; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 0.75rem 1rem; color: var(--text); font-family: 'Barlow', sans-serif; font-size: 0.95rem; transition: border-color 0.2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue-bright); box-shadow: 0 0 0 2px rgba(58,127,240,0.15); }
.form-group select option { background: var(--surface); }
.form-success { display: none; text-align: center; padding: 2rem; color: var(--blue-light); }
.form-success .check { font-size: 2.5rem; margin-bottom: 0.75rem; }
.form-success h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.3rem; text-transform: uppercase; margin-bottom: 0.5rem; }
.form-success p { font-size: 0.85rem; color: var(--text-muted); }

/* ── CONTACT ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 2rem; align-items: flex-start; }
.contact-item-icon { width: 44px; height: 44px; background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-item-text strong { display: block; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; letter-spacing: 0.05em; margin-bottom: 0.2rem; }
.contact-item-text span { font-size: 0.9rem; color: var(--text-muted); }
.contact-item-text a { color: var(--blue-light); text-decoration: none; }
.contact-item-text a:hover { color: var(--white); }
.contact-form-box h3 { margin-bottom: 1.5rem; }

/* ── FOOTER ── */
footer { background: #040404; border-top: 2px solid var(--blue); padding: 3rem 2rem 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2rem; }
.footer-logo { height: 48px; width: auto; margin-bottom: 0.75rem; display: block; }
.footer-brand p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; max-width: 280px; }
.footer-links h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--blue-light); margin-bottom: 1rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; }
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .live-layout { grid-template-columns: 1fr; }
  .live-sidebar { flex-direction: row; flex-wrap: wrap; }
  .sidebar-ad-slot { flex: 1; min-width: 200px; }
  .about-grid { grid-template-columns: 1fr; }
  .clinics-layout { grid-template-columns: 1fr; }
  .signup-form-box { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--bg); padding: 1rem; border-bottom: 1px solid var(--border); }
  .hamburger { display: flex; }
  .hero { padding: 3.5rem 1.5rem 3rem; }
  .section { padding: 3.5rem 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-features { grid-template-columns: 1fr; }
  .stream-ads-below.ads-2,
  .stream-ads-below.ads-3,
  .stream-ads-below.ads-4 { grid-template-columns: 1fr; }
}
