/* ----------------------------------------------------
   ZEVIOKKE.TV - Design System & Modern Orange / Dark Slate Theme
   Vanilla CSS3 - High Performance & Modern Streamer Aesthetic
   ---------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Dark Slate / Charcoal Palette (Dark without being pitch black) */
  --bg-main: #121620;
  --bg-surface: #171d2b;
  --bg-card: rgba(25, 32, 48, 0.78);
  --bg-card-hover: rgba(33, 43, 64, 0.92);
  --bg-glass: rgba(18, 22, 32, 0.85);
  --bg-input: #151a27;

  /* Orange & Amber Accent Palette */
  --orange-primary: #ff6b00;
  --orange-bright: #ff7a18;
  --orange-vibrant: #ff8c00;
  --orange-glow: rgba(255, 107, 0, 0.35);
  --orange-glow-subtle: rgba(255, 107, 0, 0.15);
  --orange-deep: #e05300;
  --amber-gold: #f59e0b;
  --amber-glow: rgba(245, 158, 11, 0.3);

  /* Borders & Dividers */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-card: rgba(255, 255, 255, 0.1);
  --border-orange: rgba(255, 107, 0, 0.35);
  --border-orange-strong: #ff6b00;

  /* Typography Colors */
  --text-main: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #8e9bb0;
  --text-dim: #5c6a82;

  /* Brand Specifics */
  --tiktok-pink: #ff0050;
  --tiktok-cyan: #00f2fe;
  --youtube-red: #ff0000;
  --twitch-purple: #9146ff;
  --kick-green: #53fc18;
  --discord-blue: #5865f2;
  --instagram-pink: #e1306c;
  --x-white: #ffffff;

  /* Typography & Geometry */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-code: 'Fira Code', monospace;

  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --radius-full: 9999px;

  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --shadow-orange: 0 8px 25px rgba(255, 107, 0, 0.35);
  --shadow-orange-lg: 0 15px 40px rgba(255, 107, 0, 0.45);

  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Styles */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-main);
  background-image: 
    radial-gradient(at 15% 15%, rgba(255, 107, 0, 0.08) 0px, transparent 50%),
    radial-gradient(at 85% 80%, rgba(245, 158, 11, 0.06) 0px, transparent 50%);
  background-attachment: fixed;
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* Selection */
::selection {
  background: var(--orange-primary);
  color: #ffffff;
}

/* Ambient Particles & Glowing Orbs */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  opacity: 0.65;
}

.ambient-glow-1 {
  position: fixed;
  top: -150px;
  left: 15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.2) 0%, rgba(0,0,0,0) 70%);
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
  animation: pulseGlow 14s infinite alternate ease-in-out;
}

.ambient-glow-2 {
  position: fixed;
  bottom: -100px;
  right: 10%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.16) 0%, rgba(0,0,0,0) 70%);
  filter: blur(130px);
  z-index: 0;
  pointer-events: none;
  animation: pulseGlow 18s infinite alternate-reverse ease-in-out;
}

@keyframes pulseGlow {
  0% { transform: scale(1) translate(0, 0); opacity: 0.5; }
  50% { transform: scale(1.18) translate(35px, -25px); opacity: 0.85; }
  100% { transform: scale(0.92) translate(-25px, 35px); opacity: 0.6; }
}

/* Layout Container */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
}

/* Typography & Gradient Text */
.gradient-orange {
  background: linear-gradient(135deg, #ffffff 0%, #ffaa5e 35%, var(--orange-bright) 70%, var(--orange-deep) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-amber {
  background: linear-gradient(135deg, #fff2db 0%, var(--amber-gold) 60%, #ea580c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Header Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(18, 22, 32, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

header.scrolled {
  background: rgba(14, 18, 26, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border-bottom-color: rgba(255, 107, 0, 0.15);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--text-main);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.5px;
}

.logo-avatar-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange-primary);
  box-shadow: 0 0 14px var(--orange-glow);
  transition: var(--transition);
}

.logo:hover .logo-avatar {
  transform: scale(1.06) rotate(4deg);
  border-color: var(--amber-gold);
  box-shadow: 0 0 20px rgba(255, 140, 0, 0.6);
}

.logo-tag {
  font-family: var(--font-code);
  font-size: 0.72rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange-bright), var(--orange-deep));
  padding: 3px 9px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px var(--orange-glow);
  margin-left: -2px;
}

.nav-right-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange-primary);
  border-radius: 2px;
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--orange-bright) 0%, var(--orange-deep) 100%) !important;
  color: #ffffff !important;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px var(--orange-glow);
  font-weight: 700 !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.5) !important;
}

/* Language Selector Dropdown */
.lang-selector-container {
  position: relative;
  display: flex;
  align-items: center;
}

.lang-select {
  appearance: none;
  -webkit-appearance: none;
  background: var(--bg-surface);
  border: 1px solid var(--border-orange);
  color: var(--text-main);
  padding: 0.5rem 2.2rem 0.5rem 0.9rem;
  border-radius: var(--radius-full);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  outline: none;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.lang-select:hover, .lang-select:focus {
  border-color: var(--orange-bright);
  box-shadow: 0 0 12px var(--orange-glow);
}

.lang-arrow {
  position: absolute;
  right: 12px;
  pointer-events: none;
  color: var(--orange-bright);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  color: var(--text-main);
  padding: 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.mobile-toggle:hover {
  border-color: var(--orange-primary);
  color: var(--orange-primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange-bright) 0%, var(--orange-deep) 100%);
  color: #ffffff;
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-orange-lg);
  filter: brightness(1.08);
}

.btn-secondary {
  background: var(--bg-surface);
  color: var(--text-main);
  border: 1px solid var(--border-card);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--orange-primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
}

/* Hero Section */
.hero {
  padding: 150px 0 80px;
  text-align: center;
  position: relative;
}

.hero-badge-container {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid var(--border-orange);
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-code);
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffaa5e;
  margin-bottom: 1.75rem;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.15);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--orange-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--orange-primary);
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.4); opacity: 1; box-shadow: 0 0 14px var(--orange-bright); }
  100% { transform: scale(0.9); opacity: 0.7; }
}

.hero-title {
  font-size: clamp(2.3rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -1.5px;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto 2.4rem;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

/* Channel Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 980px;
  margin: 0 auto;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  backdrop-filter: blur(12px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange-primary), transparent);
  opacity: 0;
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-orange);
  background: var(--bg-card-hover);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-val {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
  letter-spacing: -0.5px;
}

.stat-lbl {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Marquee Ticker */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background: rgba(23, 29, 43, 0.7);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 12px 0;
  margin: 2rem 0 4rem;
}

.ticker-content {
  display: flex;
  white-space: nowrap;
  gap: 3rem;
  animation: tickerSlide 25s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.ticker-item span.highlight {
  color: var(--orange-bright);
}

.ticker-item svg {
  color: var(--orange-primary);
}

@keyframes tickerSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Section Header Styles */
.section {
  padding: 80px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-code);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange-bright);
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid var(--border-orange);
  padding: 3px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 0.8rem;
  letter-spacing: 1px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
}

/* Controls Bar (Filter Pills & Search Input) */
.controls-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.search-box-wrap {
  width: 100%;
  max-width: 480px;
  position: relative;
}

.search-input {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-full);
  padding: 0.75rem 1.2rem 0.75rem 2.8rem;
  color: var(--text-main);
  font-family: var(--font-main);
  font-size: 0.92rem;
  outline: none;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.search-input:focus {
  border-color: var(--orange-bright);
  box-shadow: 0 0 15px var(--orange-glow);
  background: var(--bg-card);
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  transition: var(--transition);
}

.search-input:focus + .search-icon {
  color: var(--orange-bright);
}

.filter-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  color: var(--text-secondary);
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-full);
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.pill-btn:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-orange);
  color: #ffffff;
  transform: translateY(-1px);
}

.pill-btn.active {
  background: linear-gradient(135deg, var(--orange-bright), var(--orange-deep));
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 14px var(--orange-glow);
}

/* 9:16 Video Cards Grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.75rem;
}

.video-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.video-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--orange-bright);
  box-shadow: 0 20px 35px -5px rgba(0, 0, 0, 0.6), 0 0 25px var(--orange-glow);
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-card:hover .video-thumb {
  transform: scale(1.08);
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 18, 26, 0.2) 0%, rgba(14, 18, 26, 0.4) 40%, rgba(14, 18, 26, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem;
  z-index: 2;
  transition: var(--transition);
}

.video-top-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-code);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  color: #ffffff;
}

.platform-badge.youtube {
  background: rgba(255, 0, 0, 0.75);
  border: 1px solid rgba(255, 0, 0, 0.4);
}

.platform-badge.tiktok {
  background: rgba(18, 22, 32, 0.85);
  border: 1px solid rgba(255, 0, 80, 0.5);
  color: #ffffff;
}

.duration-badge {
  background: rgba(0, 0, 0, 0.65);
  color: var(--text-secondary);
  font-family: var(--font-code);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
}

.play-hover-btn {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--orange-bright), var(--orange-deep));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  opacity: 0;
  box-shadow: 0 0 25px var(--orange-bright);
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
}

.video-card:hover .play-hover-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.video-info {
  margin-top: auto;
}

.video-title {
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.35;
  color: #ffffff;
  margin-bottom: 0.6rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

.video-stats {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

.video-stat-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.video-stat-item svg {
  color: var(--orange-bright);
}

/* Empty state */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 1rem;
  background: var(--bg-card);
  border: 1px dashed var(--border-card);
  border-radius: var(--radius-lg);
  color: var(--text-muted);
}

/* About / Creative Universe Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-paragraph {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1rem;
}

.feature-box {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  transition: var(--transition);
}

.feature-box:hover {
  border-color: var(--border-orange);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}

.feature-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid var(--border-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-bright);
  margin-bottom: 0.85rem;
}

.feature-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.feature-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.about-banner-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-card);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.about-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-banner-wrap:hover .about-banner-img {
  transform: scale(1.03);
}

.about-banner-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(18, 22, 32, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-orange);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Socials Hub Section */
.socials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--text-main);
  transition: var(--transition);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.social-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--orange-primary);
  opacity: 0;
  transition: var(--transition);
}

.social-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-orange);
  background: var(--bg-card-hover);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.social-card:hover::after {
  opacity: 1;
}

.social-icon-wrapper {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  transition: var(--transition);
  flex-shrink: 0;
}

.social-card.tiktok .social-icon-wrapper { color: var(--tiktok-cyan); }
.social-card.youtube .social-icon-wrapper { color: var(--youtube-red); }
.social-card.twitch .social-icon-wrapper { color: var(--twitch-purple); }
.social-card.kick .social-icon-wrapper { color: var(--kick-green); }
.social-card.discord .social-icon-wrapper { color: var(--discord-blue); }
.social-card.instagram .social-icon-wrapper { color: var(--instagram-pink); }
.social-card.x-twitter .social-icon-wrapper { color: var(--x-white); }

.social-card:hover .social-icon-wrapper {
  background: rgba(255, 107, 0, 0.15);
  border-color: var(--orange-bright);
  color: var(--orange-bright);
}

.social-name {
  font-weight: 700;
  font-size: 0.98rem;
  margin-bottom: 2px;
}

.social-handle {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-family: var(--font-code);
}

.social-arrow {
  margin-left: auto;
  color: var(--text-dim);
  transition: var(--transition);
}

.social-card:hover .social-arrow {
  color: var(--orange-bright);
  transform: translateX(4px);
}

/* Schedule & Drops Section */
.schedule-container {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.schedule-container::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.countdown-box {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.time-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  text-align: center;
  min-width: 80px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.time-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange-bright);
  font-family: var(--font-code);
  line-height: 1;
}

.time-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 0.4rem;
}

.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.schedule-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.3rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.schedule-item:hover {
  border-color: var(--border-orange);
  transform: translateX(4px);
  background: var(--bg-card-hover);
}

.schedule-day {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.92rem;
}

.schedule-day svg {
  color: var(--orange-bright);
}

.schedule-type {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Contact & Business Section */
.contact-card {
  background: linear-gradient(180deg, var(--bg-surface) 0%, rgba(18, 22, 32, 0.95) 100%);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5), 0 0 30px var(--orange-glow-subtle);
  position: relative;
}

.contact-email-box {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-main);
  border: 1px solid var(--border-card);
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-full);
  margin: 2rem 0;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.4);
}

.contact-email-box svg {
  color: var(--orange-bright);
}

.contact-email-text {
  font-family: var(--font-code);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
}

.copy-btn {
  background: rgba(255, 107, 0, 0.15);
  border: 1px solid var(--border-orange);
  color: var(--orange-bright);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}

.copy-btn:hover {
  background: var(--orange-primary);
  color: #ffffff;
  box-shadow: 0 0 12px var(--orange-glow);
}

/* Footer */
footer {
  border-top: 1px solid var(--border-subtle);
  background: rgba(14, 18, 26, 0.95);
  padding: 3rem 0;
  margin-top: 4rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.footer-nav {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--orange-bright);
}

.back-to-top-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  color: var(--text-secondary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.back-to-top-btn:hover {
  border-color: var(--orange-bright);
  color: var(--orange-bright);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px var(--orange-glow);
}

/* ----------------------------------------------------
   9:16 Video Player Smartphone Modal
   ---------------------------------------------------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 13, 20, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content-phone {
  position: relative;
  width: 100%;
  max-width: 375px;
  height: min(780px, 90vh);
  background: #0f131c;
  border: 3px solid rgba(255, 107, 0, 0.4);
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px var(--orange-glow);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.modal-backdrop.active .modal-content-phone {
  transform: scale(1) translateY(0);
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 22px;
  background: #000000;
  border-radius: 20px;
  z-index: 10;
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 18px;
  width: 34px;
  height: 34px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: var(--transition);
}

.modal-close-btn:hover {
  background: var(--orange-primary);
  border-color: var(--orange-bright);
  transform: scale(1.1);
}

.phone-video-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #000;
}

.modal-video-element {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Modal video playback overlay */
.modal-video-overlay {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3.5rem 1.25rem 1.5rem;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.92) 100%);
  pointer-events: none;
}

.modal-video-overlay * {
  pointer-events: auto;
}

/* Right sidebar interactive actions (Like, Share, Sound) */
.phone-sidebar-actions {
  position: absolute;
  right: 14px;
  bottom: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  z-index: 10;
}

.phone-action-btn {
  background: rgba(18, 22, 32, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  cursor: pointer;
  transition: var(--transition);
}

.phone-action-btn:hover,
.phone-action-btn.liked {
  background: var(--orange-primary);
  border-color: var(--orange-bright);
  transform: scale(1.12);
  box-shadow: 0 0 15px var(--orange-glow);
}

.phone-action-btn.liked svg {
  fill: #ffffff;
  stroke: #ffffff;
}

.phone-action-count {
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--font-code);
  margin-top: 2px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

/* Video progress bar */
.modal-progress-container {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  position: relative;
}

.modal-progress-bar {
  width: 30%;
  height: 100%;
  background: var(--orange-primary);
  box-shadow: 0 0 8px var(--orange-bright);
  animation: videoProgress 12s linear infinite;
}

@keyframes videoProgress {
  0% { width: 0%; }
  100% { width: 100%; }
}

.modal-creator-tag {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.modal-creator-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--orange-primary);
}

.modal-creator-name {
  font-weight: 800;
  font-size: 0.95rem;
  color: #ffffff;
}

.modal-video-caption {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.modal-cta-buttons {
  display: flex;
  gap: 0.6rem;
}

.modal-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  color: #ffffff;
  transition: var(--transition);
}

.modal-cta-btn.tiktok {
  background: linear-gradient(135deg, #111 0%, #222 100%);
  border: 1px solid rgba(255, 0, 80, 0.6);
}

.modal-cta-btn.tiktok:hover {
  background: rgba(255, 0, 80, 0.8);
  border-color: #ff0050;
}

.modal-cta-btn.youtube {
  background: linear-gradient(135deg, #cc0000 0%, #ff0000 100%);
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.35);
}

.modal-cta-btn.youtube:hover {
  filter: brightness(1.15);
}

/* ----------------------------------------------------
   Contact Modal
   ---------------------------------------------------- */
.contact-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 13, 20, 0.85);
  backdrop-filter: blur(16px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.contact-modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.contact-modal-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  width: 100%;
  max-width: 520px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px var(--orange-glow);
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-modal-backdrop.active .contact-modal-box {
  transform: translateY(0);
}

.form-group {
  margin-bottom: 1.25rem;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  color: #ffffff;
  font-family: var(--font-main);
  font-size: 0.92rem;
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--orange-bright);
  box-shadow: 0 0 12px var(--orange-glow);
  background: #19202f;
}

/* Toast Container */
.toast-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  background: var(--bg-surface);
  border: 1px solid var(--border-orange);
  color: #ffffff;
  padding: 1rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px var(--orange-glow);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  font-weight: 600;
  animation: toastSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes toastSlideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ----------------------------------------------------
   Responsive Adjustments
   ---------------------------------------------------- */
@media (max-width: 992px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .schedule-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    background: rgba(18, 22, 32, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    transform: translateY(-150%);
    transition: transform 0.35s ease;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
  }

  .nav-links.mobile-open {
    transform: translateY(0);
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }

  .stat-card {
    padding: 1.1rem 0.8rem;
  }

  .stat-val {
    font-size: 1.6rem;
  }

  .about-features-grid {
    grid-template-columns: 1fr;
  }

  .video-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.2rem;
  }

  .schedule-container {
    padding: 2rem 1.25rem;
  }

  .countdown-box {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .video-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }
}
