:root {
  --bg: #05070c;
  --bg-elevated: #0b0f1a;
  --accent-yellow: #ffd300;
  --accent-pink: #ff3b8d;
  --accent-blue: #00c8ff;
  --text-main: #f5f5f5;
  --text-muted: #9ca3af;
  --border-soft: rgba(255,255,255,0.06);
  --card-radius: 18px;
  --transition-fast: 0.18s ease-out;
  --glow-soft: 0 0 22px rgba(255, 211, 0, 0.26);
  --nav-height: 80px;
  --max-width: 1400px;
}

/* Global reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top, #151933 0, #05070c 46%, #020309 100%);
  color: var(--text-main);
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Glowing background accents */
.bg-orbit {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.9;
}

.bg-orbit::before,
.bg-orbit::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.42;
}

.bg-orbit::before {
  background: radial-gradient(circle, rgba(255, 211, 0, 0.9), transparent 70%);
  top: -120px;
  left: -60px;
}

.bg-orbit::after {
  background: radial-gradient(circle, rgba(255, 59, 141, 0.9), transparent 70%);
  bottom: -160px;
  right: -60px;
}

/* Top nav – scoped so only the site header is sticky */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(5, 7, 12, 0.92), rgba(5, 7, 12, 0.75), transparent);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  gap: 18px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-wrap {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  background: radial-gradient(circle at top, #ffd300 0, #4b2500 70%);
  box-shadow: var(--glow-soft);
  flex-shrink: 0;
}

.nav-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-title-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-title {
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-subtitle {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.9rem;
}

.nav-links a {
  position: relative;
  padding: 4px 0;
  color: var(--text-muted);
  font-weight: 500;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-yellow), var(--accent-pink));
  transition: width var(--transition-fast);
}

.nav-links a:hover {
  color: var(--text-main);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: none;
}

@media (min-width: 880px) {
  .nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: radial-gradient(circle at top, rgba(255, 211, 0, 0.2), rgba(5, 7, 12, 0.92));
  color: var(--text-main);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.btn span.icon {
  font-size: 1rem;
}

.btn-primary {
  border-color: rgba(255, 211, 0, 0.66);
  box-shadow: 0 0 18px rgba(255, 211, 0, 0.35);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 28px rgba(255, 211, 0, 0.45);
  background: radial-gradient(circle at top, rgba(255, 211, 0, 0.35), rgba(5, 7, 12, 0.98));
}

/* Layout shell */
.page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 18px 80px;
}

/* HERO (home page) */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  gap: 26px;
  padding-top: 26px;
  padding-bottom: 32px;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }
}

.hero-main {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 211, 0, 0.4);
  background: radial-gradient(circle at top left, rgba(255, 211, 0, 0.15), rgba(11, 15, 26, 0.98));
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-yellow);
}

.hero-kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, #00ff85, #009b4e);
  box-shadow: 0 0 10px rgba(0, 255, 133, 0.8);
}

.hero-title {
  font-family: "Oswald", system-ui, sans-serif;
  font-size: clamp(2.15rem, 3.2vw + 1.1rem, 3.2rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-title span.highlight {
  background: linear-gradient(90deg, var(--accent-yellow), var(--accent-pink), var(--accent-blue));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-copy {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 460px;
}

.hero-copy strong {
  color: var(--text-main);
}

/* Meta bullets above the main buttons */
.hero-meta-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(8, 11, 22, 0.9);
}

.hero-meta-pill span.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-pink);
  box-shadow: 0 0 12px rgba(255, 59, 141, 0.8);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

/* Live cam card */
.hero-live {
  position: relative;
  border-radius: var(--card-radius);
  background: radial-gradient(circle at top, #18203d 0, #05070c 80%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.75);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-live-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px 8px;
  background: linear-gradient(to right, rgba(5, 7, 12, 0.98), rgba(11, 15, 26, 0.8));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-live-title {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-live-title span.label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-live-title span.main {
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-live-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.64);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #f97373;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, #ff4b4b, #9b1717);
  box-shadow: 0 0 12px rgba(255, 75, 75, 0.9);
}

.hero-live-video {
  position: relative;
  background: radial-gradient(circle, #111827, #020617);
  overflow: hidden;
}

.hero-live-video::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.hero-live-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 102%;
  height: 102%;
  transform: translate(-1%, -1%);
  border: 0;
  display: block;
}

.hero-live-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px 10px;
  font-size: 0.8rem;
  color: var(--text-muted);
  gap: 10px;
  background: radial-gradient(circle at bottom, rgba(0, 200, 255, 0.28), transparent 70%);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.hero-badge {
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.hero-live-link {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--accent-yellow);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Sections (home) */
section {
  margin-top: 40px;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
}

.section-title {
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-kicker {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 420px;
}

.pill-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.pill-label-line {
  flex: 1;
  height: 1px;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(148, 163, 184, 0.65), transparent);
}

/* Grids */
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 980px) {
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Base card shell */
.card {
  position: relative;
  border-radius: var(--card-radius);
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.98), rgba(17, 24, 39, 0.98));
  border: 1px solid var(--border-soft);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.75);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
  cursor: pointer;
  height: 100%;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 211, 0, 0.45);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9), 0 0 24px rgba(255, 211, 0, 0.2);
  background: radial-gradient(circle at top, rgba(255, 211, 0, 0.12), rgba(15, 23, 42, 1));
}

/* Video cards (with thumbs) */
.card-video .card-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: radial-gradient(circle, #111827, #020617);
  overflow: hidden;
}

.card-video .card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.4s ease-out, filter 0.4s ease-out;
  filter: saturate(1.15) contrast(1.1);
}

.card-video:hover .card-thumb img {
  transform: scale(1.06);
  filter: saturate(1.3) contrast(1.15);
}

.card-video .card-body {
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.card-video .card-title {
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.25;
  min-height: 2.6em;
}

.card-video .card-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
  display: flex;
  flex-wrap: wrap;
  min-height: 2.8em;
}

.card-video .card-meta span:not(:last-child)::after {
  content: "•";
  margin: 0 5px;
  opacity: 0.7;
}

.card-footer-row {
  margin-top: auto;
  padding-top: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.card-footer {
  font-size: 0.78rem;
  color: var(--accent-yellow);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.card-pill {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.7);
  flex-shrink: 0;
  white-space: nowrap;
}

/* Article-style cards */
.article-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px 14px 16px;
  height: 100%;
}

.article-eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-blue);
  margin-bottom: 4px;
}

.article-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.article-summary {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.article-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.article-meta span.key {
  color: var(--accent-yellow);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
}

/* Footer */
footer {
  margin-top: 50px;
  padding-top: 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}

footer a {
  color: var(--accent-yellow);
  font-weight: 500;
}

footer a:hover {
  text-decoration: underline;
}

/* Mobile tweaks */
@media (max-width: 720px) {
  .nav-links {
    display: none;
  }

  .hero-meta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-live-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* --------------------------- */
/* GUIDE PAGES                 */
/* --------------------------- */

.page.guide {
  max-width: 900px;
  padding: 26px 18px 60px;
}

.guide-back {
  margin-bottom: 18px;
  font-size: 0.82rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.guide-back span.arrow {
  font-size: 0.9rem;
}

.guide-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-blue);
  margin-bottom: 6px;
}

.guide-title {
  font-family: "Oswald", system-ui, sans-serif;
  font-size: clamp(2rem, 2.4vw + 1.4rem, 2.6rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.guide-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.5;
  margin-bottom: 18px;
}

.guide-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.guide-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(8, 11, 22, 0.9);
}

.guide-meta-pill span.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-yellow);
  box-shadow: 0 0 8px rgba(255, 211, 0, 0.9);
}

.guide-section {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(148,163,184,0.35);
}

.guide-section:first-of-type {
  margin-top: 26px;
}

.guide-section-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.guide-section-title {
  font-family: "Oswald", system-ui, sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.guide-section-lead {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.55;
  margin-bottom: 12px;
}

.guide-body {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.guide-body p {
  margin-bottom: 10px;
}

.spot-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

@media (max-width: 700px) {
  .spot-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.spot-card {
  border-radius: 14px;
  border: 1px solid var(--border-soft);
  padding: 10px 11px 11px;
  background: radial-gradient(circle at top, rgba(15,23,42,0.96), rgba(5,7,12,0.96));
}

.spot-name {
  font-size: 0.96rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.spot-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.spot-meta span:not(:last-child)::after {
  content: "•";
  margin: 0 4px;
  opacity: 0.7;
}

.spot-notes {
  font-size: 0.82rem;
  color: var(--text-main);
  line-height: 1.5;
}

