/* ==========================================================================
   LOR DIGITAL STUDIO - CORE RETRO-FUTURISTIC STYLESHEET
   Theme inspired by Synthwave Sunset & Sci-Fi Metallic Portal Medallion
   ========================================================================== */

:root {
  /* Core Color Palette */
  --bg-void: #06040d;
  --bg-deep: #0a0717;
  --bg-surface: #100b24;
  --bg-card: rgba(18, 13, 38, 0.72);
  --bg-card-hover: rgba(26, 19, 54, 0.85);
  --bg-glass: rgba(16, 12, 34, 0.6);

  /* Neon Accents */
  --neon-cyan: #00f0ff;
  --neon-cyan-glow: rgba(0, 240, 255, 0.4);
  --neon-magenta: #ff007f;
  --neon-magenta-glow: rgba(255, 0, 127, 0.4);
  --neon-purple: #9d00ff;
  --neon-purple-glow: rgba(157, 0, 255, 0.35);
  --retro-gold: #ffbe0b;
  --retro-gold-glow: rgba(255, 190, 11, 0.4);
  --neon-green: #00ffa3;

  /* Borders & Highlights */
  --border-subtle: rgba(0, 240, 255, 0.15);
  --border-bright: rgba(0, 240, 255, 0.6);
  --border-magenta: rgba(255, 0, 127, 0.5);
  --border-gold: rgba(255, 190, 11, 0.5);

  /* Typography */
  --font-display: 'Orbitron', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-hud: 'Rajdhani', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Text Colors */
  --text-pure: #ffffff;
  --text-main: #e8ecf8;
  --text-muted: #9aa5c8;
  --text-faint: #5a658a;

  /* Shadows & Elevations */
  --shadow-card: 0 16px 36px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  --glow-cyan: 0 0 20px rgba(0, 240, 255, 0.35);
  --glow-magenta: 0 0 20px rgba(255, 0, 127, 0.35);
  --glow-gold: 0 0 20px rgba(255, 190, 11, 0.35);

  /* Layout */
  --max-width: 1280px;
  --header-height: 80px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-void);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  background-color: var(--bg-void);
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(157, 0, 255, 0.18) 0%, transparent 60%),
    radial-gradient(circle at 10% 40%, rgba(0, 240, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 90% 60%, rgba(255, 0, 127, 0.08) 0%, transparent 50%),
    linear-gradient(to bottom, #06040d 0%, #0a0717 50%, #06040d 100%);
  background-attachment: fixed;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-void);
}
::-webkit-scrollbar-thumb {
  background: #251b47;
  border-radius: 5px;
  border: 2px solid var(--bg-void);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--neon-cyan);
  box-shadow: 0 0 10px var(--neon-cyan);
}

/* Typography Helpers */
h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.font-hud {
  font-family: var(--font-hud);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

a {
  color: var(--neon-cyan);
  text-decoration: none;
  transition: all var(--transition-fast);
}

a:hover {
  color: #ffffff;
  text-shadow: 0 0 8px var(--neon-cyan);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(8, 5, 18, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
  transition: all var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(6, 4, 14, 0.95);
  border-bottom: 1px solid rgba(0, 240, 255, 0.35);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

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

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.brand-logo-container {
  position: relative;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-glow {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--neon-cyan), var(--neon-magenta), var(--neon-purple), var(--neon-cyan));
  filter: blur(6px);
  opacity: 0.6;
  animation: spin-glow 12s linear infinite;
}

.brand-logo {
  position: relative;
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.5));
  z-index: 2;
  transition: transform var(--transition-fast);
}

.brand-wrapper:hover .brand-logo {
  transform: scale(1.08) rotate(5deg);
}

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

.brand-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  background: linear-gradient(90deg, #ffffff 0%, var(--retro-gold) 45%, var(--neon-magenta) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.brand-badge {
  font-family: var(--font-hud);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--neon-cyan);
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.status-dot {
  width: 6px;
  height: 6px;
  background-color: var(--neon-green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--neon-green);
  animation: pulse-dot 2s infinite ease-in-out;
}

/* Nav Menu */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-hud);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-sm);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
  box-shadow: 0 0 6px var(--neon-cyan);
  transition: width var(--transition-fast);
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--neon-cyan);
  text-shadow: 0 0 8px var(--neon-cyan-glow);
}

/* Quick Controls */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hud-btn {
  background: rgba(19, 14, 43, 0.7);
  border: 1px solid var(--border-subtle);
  color: var(--neon-cyan);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-hud);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
  text-transform: uppercase;
}

.hud-btn:hover {
  background: rgba(0, 240, 255, 0.15);
  border-color: var(--neon-cyan);
  color: #ffffff;
  box-shadow: 0 0 12px var(--neon-cyan-glow);
}

.hud-btn.active {
  background: rgba(0, 240, 255, 0.25);
  border-color: var(--neon-cyan);
  color: #ffffff;
  box-shadow: inset 0 0 8px var(--neon-cyan-glow), 0 0 14px var(--neon-cyan-glow);
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--neon-cyan);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  font-size: 1.25rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   HERO SECTION & BANNER SHOWCASE
   ========================================================================== */
.hero-section {
  padding-top: calc(var(--header-height) + 2.5rem);
  padding-bottom: 3.5rem;
  position: relative;
  overflow: hidden;
}

.hero-banner-frame {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 8px;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.4) 0%, rgba(157, 0, 255, 0.2) 50%, rgba(255, 0, 127, 0.4) 100%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(157, 0, 255, 0.25);
  margin-bottom: 2.5rem;
  overflow: hidden;
}

.hero-banner-inner {
  position: relative;
  border-radius: calc(var(--radius-lg) - 4px);
  overflow: hidden;
  max-height: 480px;
  background: #000;
}

.hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-banner-frame:hover .hero-banner-img {
  transform: scale(1.02);
}

/* Cyber Frame HUD Corners */
.cyber-corners {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

.corner-tl, .corner-tr, .corner-bl, .corner-br {
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: var(--neon-cyan);
  border-style: solid;
}
.corner-tl { top: 12px; left: 12px; border-width: 3px 0 0 3px; }
.corner-tr { top: 12px; right: 12px; border-width: 3px 3px 0 0; }
.corner-bl { bottom: 12px; left: 12px; border-width: 0 0 3px 3px; }
.corner-br { bottom: 12px; right: 12px; border-width: 0 3px 3px 0; }

.hero-overlay-hud {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 2rem 1.5rem 2rem;
  background: linear-gradient(to top, rgba(6, 4, 13, 0.95) 0%, rgba(6, 4, 13, 0.6) 60%, transparent 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 4;
}

.hero-tag {
  font-family: var(--font-hud);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--retro-gold);
  letter-spacing: 0.15em;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-title-main {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 650px;
}

.hero-hud-stats {
  display: flex;
  gap: 1.5rem;
}

.hud-stat-box {
  background: rgba(16, 12, 34, 0.85);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.6rem 1rem;
  text-align: right;
  backdrop-filter: blur(8px);
}

.hud-stat-label {
  font-family: var(--font-hud);
  font-size: 0.75rem;
  color: var(--text-faint);
  letter-spacing: 0.1em;
}

.hud-stat-value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--neon-cyan);
}

/* Quick Action Gateway Pills */
.hero-quick-gate {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.gate-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-md);
  font-family: var(--font-hud);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.gate-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.gate-btn:hover::before {
  left: 100%;
}

.gate-btn.discord {
  background: linear-gradient(135deg, #5865f2 0%, #3b47c7 100%);
  border-color: rgba(88, 101, 242, 0.5);
}
.gate-btn.discord:hover {
  box-shadow: 0 0 24px rgba(88, 101, 242, 0.6);
  transform: translateY(-2px);
}

.gate-btn.twitch {
  background: linear-gradient(135deg, #9146ff 0%, #642bbd 100%);
  border-color: rgba(145, 70, 255, 0.5);
}
.gate-btn.twitch:hover {
  box-shadow: 0 0 24px rgba(145, 70, 255, 0.6);
  transform: translateY(-2px);
}

.gate-btn.youtube {
  background: linear-gradient(135deg, #ff007f 0%, #cc0033 100%);
  border-color: rgba(255, 0, 127, 0.5);
}
.gate-btn.youtube:hover {
  box-shadow: 0 0 24px rgba(255, 0, 127, 0.6);
  transform: translateY(-2px);
}

.gate-btn.tiktok {
  background: linear-gradient(135deg, #00f0ff 0%, #fe2c55 100%);
  border-color: rgba(0, 240, 255, 0.5);
}
.gate-btn.tiktok:hover {
  box-shadow: 0 0 24px rgba(254, 44, 85, 0.6);
  transform: translateY(-2px);
}

.gate-btn.support {
  background: linear-gradient(135deg, #ffbe0b 0%, #fb5607 100%);
  color: #120901;
  font-weight: 800;
  border-color: rgba(255, 190, 11, 0.5);
}
.gate-btn.support:hover {
  box-shadow: 0 0 24px rgba(255, 190, 11, 0.7);
  transform: translateY(-2px);
  color: #000;
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */
.section-wrapper {
  padding: 4.5rem 0;
  position: relative;
}

.section-head {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-pretitle {
  font-family: var(--font-hud);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--neon-cyan);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.section-pretitle::before, .section-pretitle::after {
  content: '//';
  opacity: 0.6;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.section-title span.glow-cyan {
  color: var(--neon-cyan);
  text-shadow: 0 0 18px var(--neon-cyan-glow);
}

.section-title span.glow-magenta {
  color: var(--neon-magenta);
  text-shadow: 0 0 18px var(--neon-magenta-glow);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
}

/* ==========================================================================
   MEDIA TERMINAL: CHANNELS & TIKTOK SHOWCASE
   ========================================================================== */
.terminal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.terminal-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: rgba(10, 7, 22, 0.9);
  border-bottom: 1px solid var(--border-subtle);
}

.terminal-dots {
  display: flex;
  gap: 0.45rem;
}

.term-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.term-dot.red { background: #ff5f56; }
.term-dot.yellow { background: #ffbd2e; }
.term-dot.green { background: #27c93f; }

.terminal-title-bar {
  font-family: var(--font-hud);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.terminal-mode-badge {
  background: rgba(0, 240, 255, 0.15);
  border: 1px solid var(--border-bright);
  color: var(--neon-cyan);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
}

/* Tabs Carousel & Navigation */
.tabs-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(12, 9, 28, 0.7);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0 0.5rem;
}

.tabs-scroll-arrow {
  background: rgba(22, 16, 48, 0.9);
  border: 1px solid var(--border-subtle);
  color: var(--neon-cyan);
  width: 32px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.tabs-scroll-arrow:hover {
  background: rgba(0, 240, 255, 0.2);
  border-color: var(--neon-cyan);
  color: #ffffff;
  box-shadow: 0 0 14px var(--neon-cyan-glow);
  transform: scale(1.05);
}

.channels-tabs-nav {
  display: flex;
  gap: 0.5rem;
  padding: 0.85rem 0.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 100%;
}

.channels-tabs-nav::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.channel-tab-btn {
  background: rgba(22, 16, 48, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 0.6rem 0.95rem;
  color: var(--text-muted);
  font-family: var(--font-hud);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.channel-tab-btn i {
  font-size: 1.1rem;
}

.channel-tab-btn:hover {
  background: rgba(35, 26, 75, 0.8);
  color: #ffffff;
  border-color: rgba(0, 240, 255, 0.4);
}

.channel-tab-btn.active {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.2) 0%, rgba(157, 0, 255, 0.2) 100%);
  color: #ffffff;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 16px var(--neon-cyan-glow), inset 0 0 8px rgba(0, 240, 255, 0.2);
}

.channel-tab-btn.active.tab-accent-magenta {
  border-color: var(--neon-magenta);
  box-shadow: 0 0 16px var(--neon-magenta-glow), inset 0 0 8px rgba(255, 0, 127, 0.2);
}

.channel-tab-btn.active.tab-accent-purple {
  border-color: var(--neon-purple);
  box-shadow: 0 0 16px var(--neon-purple-glow), inset 0 0 8px rgba(157, 0, 255, 0.2);
}

.channel-tab-btn.active.tab-accent-gold {
  border-color: var(--retro-gold);
  box-shadow: 0 0 16px var(--retro-gold-glow), inset 0 0 8px rgba(255, 190, 11, 0.2);
}

.channel-tab-btn.active.tab-accent-green {
  border-color: var(--neon-green);
  box-shadow: 0 0 16px rgba(0, 255, 163, 0.4), inset 0 0 8px rgba(0, 255, 163, 0.2);
}

/* Tab Content Pane */
.terminal-content-pane {
  padding: 2rem;
}

.channel-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: start;
}

/* Video Player Container */
.video-player-box {
  background: #000;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
  position: relative;
}

.video-responsive-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 260px;
  overflow: hidden;
  background: #05030a;
}

.video-responsive-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Channel Info Panel */
.channel-meta-panel {
  background: rgba(14, 10, 30, 0.75);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.channel-badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-family: var(--font-hud);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: rgba(0, 240, 255, 0.15);
  color: var(--neon-cyan);
  border: 1px solid var(--border-subtle);
  align-self: flex-start;
}

.channel-panel-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.channel-panel-handle {
  font-family: var(--font-hud);
  font-size: 0.95rem;
  color: var(--retro-gold);
  font-weight: 600;
}

.channel-panel-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.channel-metrics-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.85rem 0;
}

.metric-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}

.metric-key {
  color: var(--text-faint);
  font-family: var(--font-hud);
  font-weight: 600;
}

.metric-val {
  color: #ffffff;
  font-family: var(--font-hud);
  font-weight: 700;
}

.channel-action-btns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sub-btn-primary {
  background: linear-gradient(135deg, #ff007f 0%, #e024c3 100%);
  color: #ffffff;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-hud);
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow: 0 0 16px var(--neon-magenta-glow);
  transition: all var(--transition-fast);
}

.sub-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(255, 0, 127, 0.7);
  color: #ffffff;
}

.channel-link-secondary {
  background: rgba(22, 16, 48, 0.6);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-hud);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: all var(--transition-fast);
}

.channel-link-secondary:hover {
  background: rgba(0, 240, 255, 0.15);
  border-color: var(--neon-cyan);
  color: #ffffff;
}

/* TikTok Tab Showcase */
.tiktok-showcase-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.tiktok-feed-card {
  background: rgba(14, 10, 30, 0.75);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.tiktok-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fe2c55;
  font-family: var(--font-hud);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.tiktok-card-title {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.tiktok-card-desc {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.tiktok-highlights-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.tiktok-highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(22, 16, 48, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.25rem;
  transition: all var(--transition-fast);
}

.tiktok-highlight-item:hover {
  background: rgba(254, 44, 85, 0.15);
  border-color: rgba(254, 44, 85, 0.4);
  transform: translateX(4px);
}

.tiktok-highlight-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(254, 44, 85, 0.2);
  color: #fe2c55;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tiktok-highlight-text h5 {
  font-family: var(--font-hud);
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.tiktok-highlight-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SOCIAL MEDIA BENTO GATEWAY
   ========================================================================== */
.socials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.social-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.social-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--card-accent, var(--neon-cyan));
  box-shadow: 0 0 10px var(--card-accent, var(--neon-cyan));
}

.social-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  border-color: var(--card-accent, var(--neon-cyan));
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.7), 0 0 24px rgba(0, 240, 255, 0.2);
}

.social-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.social-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--card-accent, var(--neon-cyan));
  transition: all var(--transition-fast);
}

.social-card:hover .social-icon-box {
  background: var(--card-accent, var(--neon-cyan));
  color: #000000;
  box-shadow: 0 0 16px var(--card-accent, var(--neon-cyan));
}

.social-card-badge {
  font-family: var(--font-hud);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-faint);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.social-handle {
  font-family: var(--font-hud);
  font-size: 0.9rem;
  color: var(--text-faint);
  margin-bottom: 0.75rem;
}

.social-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.social-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: #ffffff;
  font-family: var(--font-hud);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: all var(--transition-fast);
}

.social-card:hover .social-card-btn {
  background: var(--card-accent, var(--neon-cyan));
  color: #000000;
  border-color: var(--card-accent, var(--neon-cyan));
  font-weight: 800;
}

/* ==========================================================================
   SUPPORT & DONATION SECTION
   ========================================================================== */
.support-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.support-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.support-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, var(--support-glow, rgba(255, 190, 11, 0.15)) 0%, transparent 70%);
  pointer-events: none;
}

.support-card.patreon {
  border-color: rgba(255, 66, 77, 0.5);
}

.support-card.streamlabs {
  border-color: rgba(49, 203, 181, 0.5);
}

.support-card-head {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.support-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--support-color, var(--retro-gold));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px var(--support-glow, rgba(255, 190, 11, 0.3));
}

.support-title-box h3 {
  font-size: 1.35rem;
  color: #ffffff;
}

.support-badge-pill {
  font-family: var(--font-hud);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--support-color, var(--retro-gold));
}

.support-body-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.support-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.95rem;
  border-radius: var(--radius-sm);
  background: var(--support-color, var(--retro-gold));
  color: #06040d;
  font-family: var(--font-hud);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition-fast);
  box-shadow: 0 0 20px var(--support-glow, rgba(255, 190, 11, 0.4));
}

.support-action-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.15);
  color: #000;
  box-shadow: 0 0 30px var(--support-glow, rgba(255, 190, 11, 0.6));
}

/* ==========================================================================
   FOOTER & SYNTHWAVE GRID
   ========================================================================== */
.site-footer {
  position: relative;
  background: #04020a;
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 0 2rem 0;
  overflow: hidden;
}

/* Synthwave Floor Grid */
.synthwave-floor-grid {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 240px;
  background: 
    linear-gradient(to top, rgba(0, 240, 255, 0.25) 1px, transparent 1px),
    linear-gradient(to right, rgba(255, 0, 127, 0.2) 1px, transparent 1px);
  background-size: 40px 40px;
  perspective: 400px;
  transform: rotateX(65deg) scale(2.2);
  transform-origin: bottom center;
  opacity: 0.45;
  pointer-events: none;
  mask-image: linear-gradient(to top, rgba(0,0,0,1) 0%, transparent 95%);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 0%, transparent 95%);
}

.footer-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.footer-logo-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px var(--neon-cyan-glow));
}

.footer-brand-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #ffffff;
}

.footer-brand-tagline {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 500px;
}

.footer-nav-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  list-style: none;
}

.footer-nav-link {
  font-family: var(--font-hud);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

.footer-nav-link:hover {
  color: var(--neon-cyan);
}

.footer-divider {
  width: 100%;
  max-width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

.footer-meta-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-family: var(--font-hud);
  font-size: 0.85rem;
  color: var(--text-faint);
  letter-spacing: 0.08em;
}

.github-deploy-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--neon-cyan);
}
