/* ==========================================================================
   OBSIDIAN OATH // SKATE COLLECTIVE — CORE STYLESHEET
   Style Directive: Obsidian glass background, radiant hermetic gold (#fbbf24) trims,
   Cinzel typography, subtle ambient gold glow.
   Zero commercial checkout • Raw street energy • 100% Free
   ========================================================================== */

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

:root {
  --bg-obsidian: #070709;
  --bg-obsidian-glass: rgba(13, 13, 18, 0.78);
  --bg-obsidian-surface: #0f0f14;
  --bg-obsidian-elevated: #161620;
  
  --gold-primary: #fbbf24;
  --gold-light: #fef08a;
  --gold-hover: #f59e0b;
  --gold-dark: #b45309;
  --gold-ambient: rgba(251, 191, 36, 0.14);
  --gold-border: rgba(251, 191, 36, 0.22);
  --gold-border-bright: rgba(251, 191, 36, 0.65);
  
  --text-primary: #f4f4f5;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  
  --accent-red: #ef4444;
  --accent-green: #22c55e;
  
  --font-cinzel: 'Cinzel', serif;
  --font-cinzel-dec: 'Cinzel Decorative', 'Cinzel', serif;
  --font-tech: 'Space Grotesk', monospace, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --glow-sm: 0 0 15px rgba(251, 191, 36, 0.16);
  --glow-md: 0 0 30px rgba(251, 191, 36, 0.22), 0 0 60px rgba(251, 191, 36, 0.08);
  --glow-lg: 0 0 50px rgba(251, 191, 36, 0.35), 0 0 100px rgba(251, 191, 36, 0.12);
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 20px;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  background-color: var(--bg-obsidian);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -60px;
  left: 20px;
  background: var(--gold-primary);
  color: #000;
  font-weight: 700;
  padding: 10px 18px;
  z-index: 99999;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: top 0.2s ease;
  font-family: var(--font-tech);
}
.skip-link:focus {
  top: 20px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #09090c;
}
::-webkit-scrollbar-thumb {
  background: #272732;
  border-radius: 4px;
  border: 1px solid var(--gold-border);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

/* Ambient Background Canvas & Grid */
.ambient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  background: 
    radial-gradient(circle at 50% -10%, rgba(251, 191, 36, 0.08) 0%, transparent 55%),
    radial-gradient(circle at 85% 60%, rgba(251, 191, 36, 0.04) 0%, transparent 45%),
    radial-gradient(circle at 15% 85%, rgba(217, 119, 6, 0.04) 0%, transparent 45%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M60 0 L0 0 0 60' fill='none' stroke='rgba(251,191,36,0.025)' stroke-width='1'/%3E%3C/svg%3E");
}

/* Obsidian Glass Card Component */
.obsidian-card {
  background: var(--bg-obsidian-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--gold-border);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6), var(--glow-sm);
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.obsidian-card:hover {
  border-color: var(--gold-border-bright);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.8), var(--glow-md);
}

.obsidian-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-primary) 50%, transparent 100%);
  opacity: 0.35;
}

/* Typography Directives */
h1, h2, h3, .cinzel-title {
  font-family: var(--font-cinzel);
  color: var(--text-primary);
  letter-spacing: 0.04em;
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  line-height: 1.08;
}

h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
}

.gold-gradient-text {
  background: linear-gradient(135deg, #fffbeb 0%, #fbbf24 45%, #d97706 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  text-shadow: 0 0 30px rgba(251, 191, 36, 0.25);
}

.gold-accent {
  color: var(--gold-primary);
}

.tech-mono {
  font-family: var(--font-tech);
  letter-spacing: 0.06em;
}

/* Header & Navigation Bar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 7, 9, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gold-border);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
}

.brand-symbol {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--gold-primary);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(251, 191, 36, 0.35);
  position: relative;
  background: radial-gradient(circle, #1c1917 0%, #070709 100%);
}

.brand-symbol svg {
  width: 20px;
  height: 20px;
  fill: var(--gold-primary);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-cinzel);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--gold-primary);
  line-height: 1;
}

.brand-tag {
  font-family: var(--font-tech);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Nav Links */
.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-family: var(--font-tech);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  position: relative;
}

.nav-link:hover, .nav-link:focus-visible {
  color: var(--gold-primary);
  background: rgba(251, 191, 36, 0.08);
}

.nav-link.active {
  color: var(--gold-primary);
  border-bottom: 2px solid var(--gold-primary);
}

.nav-link:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 2px;
}

/* Header Utilities */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.audio-toggle-btn {
  background: rgba(24, 24, 32, 0.8);
  border: 1px solid var(--gold-border);
  color: var(--gold-primary);
  padding: 7px 12px;
  font-family: var(--font-tech);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.audio-toggle-btn:hover, .audio-toggle-btn:focus-visible {
  border-color: var(--gold-primary);
  box-shadow: 0 0 14px rgba(251, 191, 36, 0.25);
}

.audio-indicator {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--text-muted);
}

.audio-indicator.playing {
  background: var(--accent-green);
  box-shadow: 0 0 8px var(--accent-green);
}

.menu-toggle-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--gold-border);
  color: var(--gold-primary);
  padding: 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

/* Buttons & Interactive Elements */
.gold-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  color: #070709;
  font-family: var(--font-cinzel);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.3);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.gold-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(251, 191, 36, 0.5), var(--glow-md);
  filter: brightness(1.08);
}

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

.gold-btn:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.gold-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(13, 13, 18, 0.6);
  backdrop-filter: blur(8px);
  color: var(--gold-primary);
  font-family: var(--font-cinzel);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: 1px solid var(--gold-primary);
  cursor: pointer;
  transition: all 0.25s ease;
}

.gold-btn-outline:hover {
  background: rgba(251, 191, 36, 0.12);
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
  transform: translateY(-2px);
}

.gold-btn-outline:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 3px;
}

/* Badges & Tags */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-family: var(--font-tech);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(18, 18, 24, 0.9);
  border: 1px solid var(--gold-border);
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.status-dot.red { background: var(--accent-red); box-shadow: 0 0 6px var(--accent-red); }
.status-dot.green { background: var(--accent-green); box-shadow: 0 0 6px var(--accent-green); }
.status-dot.gold { background: var(--gold-primary); box-shadow: 0 0 6px var(--gold-primary); }

.tape-stamp {
  font-family: var(--font-tech);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 8px;
  background: #000;
  color: var(--gold-primary);
  border: 1px dashed var(--gold-primary);
  display: inline-block;
}

/* Layout Containers */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.section-py {
  padding: 90px 0;
}

.section-header {
  margin-bottom: 45px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-eyebrow {
  font-family: var(--font-tech);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold-primary);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-eyebrow::before {
  content: '//';
  opacity: 0.6;
}

.section-desc {
  max-width: 680px;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 60px 0 80px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 6px 14px;
  background: rgba(15, 15, 22, 0.85);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-tech);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--gold-primary);
}

.hero-title {
  font-weight: 900;
  letter-spacing: 0.02em;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-cinzel);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold-primary);
}

.stat-label {
  font-family: var(--font-tech);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* 3D Skateboard Viewer Frame in Hero */
.hero-3d-wrapper {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: radial-gradient(circle at 50% 50%, #151520 0%, #08080c 100%);
  border: 1px solid var(--gold-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), var(--glow-sm);
}

#deck-canvas-container {
  width: 100%;
  height: 100%;
  cursor: grab;
}

#deck-canvas-container:active {
  cursor: grabbing;
}

.deck-3d-overlay {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  pointer-events: none;
}

.deck-3d-controls {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  pointer-events: auto;
}

.deck-btn {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gold-border);
  color: var(--gold-primary);
  padding: 6px 12px;
  font-family: var(--font-tech);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
}

.deck-btn:hover, .deck-btn:focus-visible {
  border-color: var(--gold-primary);
  background: rgba(251, 191, 36, 0.15);
  box-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

/* ==========================================================================
   VIDEO CLIPS & RAW TAPE VAULT
   ========================================================================== */
.tape-player-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.vhs-screen-container {
  position: relative;
  background: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gold-border);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.9), var(--glow-sm);
  aspect-ratio: 16 / 9;
}

.vhs-canvas {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Scanlines and chromatic aberration overlay */
.vhs-scanlines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(
    rgba(18, 16, 16, 0) 50%, 
    rgba(0, 0, 0, 0.5) 50%
  ), linear-gradient(
    90deg,
    rgba(255, 0, 0, 0.04),
    rgba(0, 255, 0, 0.02),
    rgba(0, 0, 255, 0.04)
  );
  background-size: 100% 3px, 6px 100%;
  opacity: 0.85;
  z-index: 2;
  transition: opacity 0.3s ease;
}

.vhs-scanlines.disabled {
  opacity: 0;
}

.vhs-hud {
  position: absolute;
  top: 14px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-tech);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #fff;
  text-shadow: 0 0 6px #000;
  z-index: 3;
  pointer-events: none;
}

.vhs-rec {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-red);
}

.rec-blink {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-red);
  box-shadow: 0 0 8px var(--accent-red);
  animation: blink 1.2s infinite ease-in-out;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.vhs-controls-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 16px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.95) 0%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 3;
}

.vhs-play-btn {
  background: var(--gold-primary);
  border: none;
  color: #000;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  transition: transform 0.2s ease;
}
.vhs-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px var(--gold-primary);
}

.vhs-time-scrub {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.timeline-bar {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.timeline-fill {
  height: 100%;
  width: 35%;
  background: var(--gold-primary);
  box-shadow: 0 0 8px var(--gold-primary);
  transition: width 0.1s linear;
}

.vhs-mode-toggle {
  background: rgba(20, 20, 26, 0.8);
  border: 1px solid var(--gold-border);
  color: var(--gold-primary);
  font-family: var(--font-tech);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.tape-playlist-card {
  padding: 24px;
}

.tape-item {
  display: flex;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius-md);
  background: rgba(16, 16, 22, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tape-item:hover, .tape-item:focus-visible {
  border-color: var(--gold-primary);
  background: rgba(251, 191, 36, 0.08);
  transform: translateX(4px);
}

.tape-item.active {
  border-color: var(--gold-primary);
  background: rgba(251, 191, 36, 0.12);
  box-shadow: 0 0 15px rgba(251, 191, 36, 0.15);
}

.tape-thumb {
  width: 90px;
  height: 60px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  border: 1px solid var(--gold-border);
}

.tape-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tape-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.tape-name {
  font-family: var(--font-cinzel);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.tape-meta {
  font-family: var(--font-tech);
  font-size: 0.72rem;
  color: var(--text-secondary);
  display: flex;
  gap: 8px;
}

.trick-bookmarks {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trick-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.trick-pill {
  background: rgba(25, 25, 35, 0.9);
  border: 1px solid var(--gold-border);
  color: var(--text-primary);
  font-family: var(--font-tech);
  font-size: 0.72rem;
  padding: 5px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.trick-pill:hover, .trick-pill:focus-visible {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  background: rgba(251, 191, 36, 0.1);
}

/* ==========================================================================
   SPOT RADAR & INTERACTIVE SPOT DIRECTORY
   ========================================================================== */
.spot-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 30px;
}

.spot-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-btn {
  background: rgba(18, 18, 24, 0.8);
  border: 1px solid var(--gold-border);
  color: var(--text-secondary);
  font-family: var(--font-tech);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover, .filter-btn:focus-visible {
  color: var(--gold-primary);
  border-color: var(--gold-border-bright);
}

.filter-btn.active {
  background: var(--gold-primary);
  color: #000;
  font-weight: 800;
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(251, 191, 36, 0.35);
}

.spot-search-box {
  position: relative;
  min-width: 260px;
}

.spot-search-input {
  width: 100%;
  background: rgba(15, 15, 20, 0.9);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-tech);
  font-size: 0.85rem;
  padding: 9px 14px 9px 36px;
  outline: none;
  transition: border-color 0.2s ease;
}

.spot-search-input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 12px rgba(251, 191, 36, 0.2);
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.spots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.spot-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.spot-image-box {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #111;
}

.spot-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.spot-card:hover .spot-image-box img {
  transform: scale(1.06);
}

.spot-badge-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}

.spot-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.spot-title {
  font-family: var(--font-cinzel);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
}

.spot-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  font-family: var(--font-tech);
  font-size: 0.75rem;
  color: var(--text-secondary);
  background: rgba(10, 10, 15, 0.6);
  padding: 10px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.spot-coord-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(20, 20, 28, 0.8);
  border: 1px solid var(--gold-border);
  color: var(--gold-primary);
  font-family: var(--font-tech);
  font-size: 0.75rem;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  margin-top: auto;
  transition: all 0.2s ease;
}

.spot-coord-btn:hover, .spot-coord-btn:focus-visible {
  background: rgba(251, 191, 36, 0.15);
  border-color: var(--gold-primary);
}

/* ==========================================================================
   STICKER WALL (INTERACTIVE SLAP BOARD)
   ========================================================================== */
.sticker-wall-container {
  border-radius: var(--radius-xl);
  padding: 30px;
}

.sticker-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--gold-border);
}

.sticker-palettes {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.sticker-tray-item {
  width: 54px;
  height: 54px;
  padding: 4px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  background: rgba(15, 15, 20, 0.8);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.sticker-tray-item:hover, .sticker-tray-item:focus-visible {
  border-color: var(--gold-primary);
  transform: scale(1.1) rotate(4deg);
  box-shadow: 0 0 14px rgba(251, 191, 36, 0.4);
}

.sticker-tray-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.wall-action-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wall-action-btn {
  background: rgba(18, 18, 25, 0.9);
  border: 1px solid var(--gold-border);
  color: var(--text-primary);
  font-family: var(--font-tech);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
}

.wall-action-btn:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  background: rgba(251, 191, 36, 0.1);
}

/* The actual sticker board canvas / workspace */
.sticker-board {
  position: relative;
  width: 100%;
  height: 520px;
  background: 
    radial-gradient(circle at 50% 50%, #151520 0%, #08080c 100%),
    url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 10 L90 90 M90 10 L10 90' stroke='rgba(255,255,255,0.015)' stroke-width='1'/%3E%3C/svg%3E");
  border: 2px dashed rgba(251, 191, 36, 0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  user-select: none;
  cursor: crosshair;
}

.slapped-sticker {
  position: absolute;
  cursor: grab;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.7));
  touch-action: none;
  transition: transform 0.1s ease, filter 0.2s ease;
}

.slapped-sticker:active {
  cursor: grabbing;
  filter: drop-shadow(0 12px 24px rgba(251, 191, 36, 0.35));
}

.slapped-sticker img {
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: block;
}

/* Custom Text Sticker Modal/Drawer */
.custom-sticker-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.custom-sticker-input {
  flex: 1;
  min-width: 200px;
  background: rgba(10, 10, 14, 0.9);
  border: 1px solid var(--gold-border);
  color: var(--text-primary);
  font-family: var(--font-tech);
  font-size: 0.85rem;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
}

.custom-sticker-input:focus {
  border-color: var(--gold-primary);
  outline: none;
}

/* ==========================================================================
   PHOTO GALLERY & LIGHTBOX
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0d0d12;
  border: 1px solid var(--gold-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: contrast(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 7, 9, 0.95) 0%, rgba(7, 7, 9, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.gallery-caption-title {
  font-family: var(--font-cinzel);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-primary);
}

.gallery-caption-meta {
  font-family: var(--font-tech);
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 8, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  max-width: 1100px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--bg-obsidian-surface);
  border: 1px solid var(--gold-border-bright);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.95), var(--glow-lg);
  overflow: hidden;
}

.lightbox-image-wrap {
  position: relative;
  flex: 1;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 70vh;
  overflow: hidden;
}

.lightbox-image-wrap img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
}

.lightbox-footer {
  padding: 18px 24px;
  background: var(--bg-obsidian-surface);
  border-top: 1px solid var(--gold-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 15, 20, 0.85);
  border: 1px solid var(--gold-border);
  color: var(--gold-primary);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}

.lightbox-nav-btn:hover {
  background: var(--gold-primary);
  color: #000;
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(15, 15, 20, 0.85);
  border: 1px solid var(--gold-border);
  color: var(--gold-primary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

/* ==========================================================================
   BLOG / 'ZINE CHRONICLES
   ========================================================================== */
.zine-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 32px;
}

.featured-article-card {
  padding: 36px;
}

.article-badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.article-title {
  font-size: 1.75rem;
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.article-prose {
  color: #d4d4d8;
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

.article-prose p {
  margin-bottom: 16px;
}

.article-quote {
  padding: 16px 20px;
  border-left: 3px solid var(--gold-primary);
  background: rgba(251, 191, 36, 0.05);
  font-family: var(--font-cinzel);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-light);
  margin: 20px 0;
}

.zine-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.manifesto-blurb {
  padding: 24px;
}

.zine-post-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.zine-post-item {
  padding: 16px;
  background: rgba(16, 16, 22, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.2s ease;
  display: block;
}

.zine-post-item:hover, .zine-post-item:focus-visible {
  border-color: var(--gold-primary);
  background: rgba(251, 191, 36, 0.08);
  transform: translateX(4px);
}

.zine-post-title {
  font-family: var(--font-cinzel);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 4px;
}

.zine-post-date {
  font-family: var(--font-tech);
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ==========================================================================
   ABOUT PAGE STYLES
   ========================================================================== */
.about-hero {
  padding: 70px 0 40px;
}

.manifesto-banner {
  padding: 40px;
  margin-bottom: 60px;
}

.roster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.rider-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.rider-avatar-wrap {
  width: 140px;
  height: 140px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold-primary);
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

.rider-avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rider-specs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
  background: rgba(10, 10, 15, 0.6);
  padding: 12px;
  border-radius: var(--radius-sm);
  font-family: var(--font-tech);
  font-size: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.ethics-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.ethics-card {
  padding: 24px;
}

/* ==========================================================================
   CONTACT / SPOT SUBMISSION PAGE
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 36px;
}

.intake-form-card {
  padding: 36px;
}

.intake-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.intake-tab-btn {
  background: rgba(18, 18, 25, 0.8);
  border: 1px solid var(--gold-border);
  color: var(--text-secondary);
  font-family: var(--font-tech);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
}

.intake-tab-btn.active {
  background: var(--gold-primary);
  color: #000;
  border-color: var(--gold-primary);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-label {
  font-family: var(--font-tech);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
  text-transform: uppercase;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  background: rgba(10, 10, 15, 0.85);
  border: 1px solid var(--gold-border);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  outline: none;
  transition: all 0.2s ease;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 16px rgba(251, 191, 36, 0.25);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.terminal-box {
  background: #050508;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 20px;
  font-family: var(--font-tech);
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--gold-light);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.9);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  margin-top: 100px;
  background: #050507;
  border-top: 1px solid var(--gold-border);
  padding: 60px 0 30px;
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 320px;
}

.footer-heading {
  font-family: var(--font-cinzel);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-family: var(--font-tech);
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.footer-link:hover, .footer-link:focus-visible {
  color: var(--gold-primary);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-tech);
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  background: var(--bg-obsidian-surface);
  border: 1px solid var(--gold-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), var(--glow-sm);
  color: var(--text-primary);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-tech);
  font-size: 0.85rem;
  pointer-events: auto;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-grid, .tape-player-grid, .zine-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .main-nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #09090d;
    border-bottom: 1px solid var(--gold-border);
    padding: 20px;
    gap: 10px;
  }
  .menu-toggle-btn {
    display: block;
  }
  .form-row-2 {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
