/* ==========================================================================
   POOH — VICE CITY PARADISE DESIGN SYSTEM
   ========================================================================== */

@font-face {
  font-family: 'ViceDisplay';
  src: url('/anton.ttf') format('truetype');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'ViceScript';
  src: url('/yellowtail.ttf') format('truetype');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg-main: #0c0b14;
  --bg-card: rgba(22, 18, 34, 0.75);
  --bg-card-border: rgba(255, 255, 255, 0.1);
  --fg-main: #f8fafc;
  --fg-muted: #94a3b8;
  --fg-subtle: #64748b;
  
  --neon-pink: #ff2a85;
  --neon-pink-bright: #ff4d94;
  --neon-pink-glow: rgba(255, 42, 133, 0.5);
  --neon-peach: #ff8a50;
  --neon-purple: #a855f7;
  --neon-cyan: #06b6d4;
  --neon-green: #10b981;
  
  --font-display: 'ViceDisplay', 'Impact', sans-serif;
  --font-script: 'ViceScript', cursive, sans-serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

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

html {
  background-color: var(--bg-main);
  color: var(--fg-main);
  font-family: var(--font-sans);
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--bg-main);
  color: var(--fg-main);
  overflow-x: hidden;
  line-height: 1.5;
}

/* Accessibility */
.skip {
  position: fixed;
  top: -100px;
  left: 20px;
  background: #fff;
  color: #000;
  padding: 12px 20px;
  font-weight: 700;
  z-index: 9999;
  transition: top 0.2s;
  border-radius: 4px;
}
.skip:focus {
  top: 20px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

::selection {
  background: var(--neon-pink);
  color: #ffffff;
}

/* Common Section & Typography */
.section {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 5%;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--neon-cyan);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.2vw, 68px);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: 20px;
}

.script-pink {
  font-family: var(--font-script);
  font-weight: 400;
  text-transform: none;
  color: var(--neon-pink-bright);
  letter-spacing: 0;
  font-size: 1.08em;
  text-shadow: 0 0 24px var(--neon-pink-glow);
  display: inline-block;
}

/* Standard Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 26px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-glow {
  background: linear-gradient(135deg, var(--neon-pink-bright), var(--neon-pink));
  color: #ffffff;
  box-shadow: 0 4px 20px var(--neon-pink-glow);
}
.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 42, 133, 0.7);
  color: #ffffff;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--neon-pink-bright);
  transform: translateY(-2px);
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: 74px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(12, 11, 20, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.5px;
  color: #ffffff;
  text-shadow: 0 0 15px rgba(255, 42, 133, 0.4);
}

.crown-icon {
  filter: drop-shadow(0 0 8px var(--neon-pink));
}

.nav nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav nav a {
  font-size: 13.5px;
  font-weight: 500;
  color: #e2e8f0;
  letter-spacing: 0.3px;
  position: relative;
  padding: 6px 0;
}
.nav nav a:hover {
  color: var(--neon-pink-bright);
}
.nav nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-pink-bright);
  transition: width 0.25s;
  box-shadow: 0 0 8px var(--neon-pink);
}
.nav nav a:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-follow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 700;
  background: linear-gradient(135deg, #ff65a5, var(--neon-pink));
  color: #ffffff;
  border-radius: 999px;
  box-shadow: 0 4px 15px var(--neon-pink-glow);
  transition: all 0.25s;
}
.nav-follow:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 42, 133, 0.7);
  color: #ffffff;
}

.menu-toggle {
  display: none;
  font-size: 22px;
  color: #ffffff;
  padding: 8px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 840px;
  display: flex;
  align-items: center;
  padding: 100px 5% 80px;
  overflow: hidden;
  background: #0c0b14;
}

.hero-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.95;
}

.hero-glow-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0c0b14 0%, #0c0b14 38%, rgba(12, 11, 20, 0.65) 60%, transparent 85%),
              linear-gradient(0deg, #0c0b14 0%, transparent 20%);
}

.hero-top-tag {
  position: absolute;
  top: 36px;
  left: 5%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.location-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--neon-cyan);
  font-weight: 600;
}

.time-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1.5px;
  color: #cbd5e1;
}

/* Floating Neon Sign */
.hero-neon-sign {
  position: absolute;
  top: 110px;
  right: 6%;
  z-index: 10;
  border: 3px solid var(--neon-pink);
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.25;
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 1px;
  color: #ffffff;
  background: rgba(12, 11, 20, 0.4);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 25px var(--neon-pink-glow), inset 0 0 15px rgba(255, 42, 133, 0.3);
  transform: rotate(4deg);
  animation: neonFlicker 6s infinite ease-in-out;
}
.hero-neon-sign span:last-child {
  font-family: var(--font-script);
  font-size: 20px;
  color: var(--neon-pink-bright);
}

@keyframes neonFlicker {
  0%, 100% { opacity: 1; }
  45% { opacity: 1; }
  46% { opacity: 0.85; }
  47% { opacity: 1; }
  78% { opacity: 1; }
  79% { opacity: 0.9; }
  80% { opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 620px;
}

.hero-crown {
  margin-bottom: 8px;
}
.hero-crown svg {
  filter: drop-shadow(0 0 12px var(--neon-pink));
}

.hero-title {
  margin-bottom: 24px;
}

.title-main {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(80px, 12vw, 150px);
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: #ffffff;
  text-shadow: 0 0 35px rgba(255, 255, 255, 0.2);
}

.title-script {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(40px, 5.8vw, 76px);
  font-weight: 400;
  color: var(--neon-pink-bright);
  line-height: 1.1;
  text-shadow: 0 0 28px var(--neon-pink-glow);
  transform: rotate(-3deg) translateY(-8px);
}

.hero-description {
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.6;
  color: #e2e8f0;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-social-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  transition: all 0.25s;
}
.social-icon:hover {
  background: var(--neon-pink);
  border-color: var(--neon-pink);
  transform: translateY(-2px);
  box-shadow: 0 0 15px var(--neon-pink-glow);
}

.hero-subquote {
  font-family: var(--font-script);
  font-size: 19px;
  color: var(--neon-peach);
  text-shadow: 0 0 12px rgba(255, 138, 80, 0.4);
}

.hero-side-creed {
  position: absolute;
  right: 5%;
  bottom: 40px;
  z-index: 10;
  display: flex;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: #94a3b8;
}

.hero-foot {
  position: absolute;
  left: 5%;
  bottom: 24px;
  z-index: 10;
}
.hero-foot button {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  color: #64748b;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  transition: all 0.2s;
}
.hero-foot button:hover {
  color: #ffffff;
  border-color: var(--neon-pink);
}

/* ==========================================================================
   SECTION 01: PLAYER PROFILE
   ========================================================================== */
.profile-section {
  background: radial-gradient(ellipse at 50% 50%, rgba(168, 85, 247, 0.08), transparent 70%), #0c0b14;
}

.profile-container {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1.05fr;
  gap: 36px;
  align-items: center;
}

.profile-bio {
  font-size: 16px;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 28px;
}

.profile-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.personality-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-pill {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 1px;
  font-weight: 600;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: #e2e8f0;
}

/* Center Portrait */
.portrait-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(255, 77, 148, 0.3);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 42, 133, 0.25);
  background: #181326;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.portrait-frame:hover img {
  transform: scale(1.03);
}

.portrait-note {
  position: absolute;
  bottom: 24px;
  right: 20px;
  font-family: var(--font-script);
  font-size: 20px;
  color: var(--neon-pink-bright);
  text-shadow: 0 0 15px var(--neon-pink-glow);
  transform: rotate(-4deg);
}

.portrait-sig {
  position: absolute;
  bottom: 12px;
  left: 20px;
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.3);
}

/* Right Glass Stats Card */
.stats-glass-card {
  background: rgba(22, 18, 38, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.stat-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.stat-icon-wrap {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 42, 133, 0.12);
  border: 1px solid rgba(255, 42, 133, 0.3);
  color: var(--neon-pink-bright);
  flex-shrink: 0;
}

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

.stat-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: #94a3b8;
}

.stat-value {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}

.genre-badges {
  display: flex;
  gap: 8px;
  margin-top: 4px;
  flex-wrap: wrap;
}

.genre-badges .badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(6, 182, 212, 0.15);
  border: 1px solid rgba(6, 182, 212, 0.4);
  color: var(--neon-cyan);
}

/* ==========================================================================
   SECTION 02: CAUGHT ON STREAM
   ========================================================================== */
.stream-section {
  background: #0c0b14;
}

.stream-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 40px;
}

.stream-sub {
  font-size: 15px;
  color: #94a3b8;
  max-width: 380px;
  line-height: 1.6;
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--neon-pink-bright);
  margin-top: 8px;
  border-bottom: 1px solid var(--neon-pink-bright);
  padding-bottom: 2px;
}
.view-all-link:hover {
  color: #ffffff;
  border-color: #ffffff;
}

.stream-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.clip-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(22, 18, 36, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}
.clip-card:hover {
  transform: translateY(-5px);
  border-color: var(--neon-pink);
  box-shadow: 0 10px 30px rgba(255, 42, 133, 0.25);
}

.clip-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #181528;
}

.clip-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.clip-card:hover .clip-media img {
  transform: scale(1.08);
}

.clip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12, 11, 20, 0.8) 0%, transparent 60%);
}

.clip-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(12, 11, 20, 0.6);
  backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 18px;
  z-index: 5;
  transition: all 0.25s ease;
}
.clip-card:hover .clip-play-btn {
  background: var(--neon-pink);
  border-color: var(--neon-pink);
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 0 20px var(--neon-pink);
}

.clip-info {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.clip-name {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.clip-views {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #94a3b8;
}

/* ==========================================================================
   SECTION 03: VICE CITY STATE OF MIND BANNER
   ========================================================================== */
.vice-city-feature {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 70px 5%;
  background: #0c0b14;
}

.vice-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.vice-bg-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.vice-banner-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0c0b14 0%, rgba(12, 11, 20, 0.85) 30%, transparent 60%),
              linear-gradient(270deg, #0c0b14 0%, rgba(12, 11, 20, 0.85) 25%, transparent 50%);
}

.vice-banner-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.vice-banner-left {
  max-width: 520px;
}

.vice-banner-sub {
  font-size: 16px;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 28px;
}

.vice-banner-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.banner-quote-wrap {
  font-family: var(--font-script);
  font-size: 26px;
  color: var(--neon-pink-bright);
  text-shadow: 0 0 20px var(--neon-pink-glow);
  transform: rotate(-3deg);
}

/* Live Countdown Card */
.countdown-card {
  background: rgba(18, 14, 30, 0.8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 77, 148, 0.35);
  border-radius: 14px;
  padding: 22px 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 25px rgba(255, 42, 133, 0.2);
}

.countdown-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  gap: 12px;
}

.cd-badge {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--neon-pink-bright);
}

.cd-title {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 1.5px;
  color: #94a3b8;
}

.countdown-units {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cd-number {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
  color: #ffffff;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
}

.cd-label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 1.5px;
  color: var(--neon-cyan);
  margin-top: 4px;
}

/* ==========================================================================
   SECTION 04: GAME LIBRARY
   ========================================================================== */
.games-section {
  background: radial-gradient(ellipse at 80% 50%, rgba(255, 42, 133, 0.06), transparent 70%), #0c0b14;
}

.games-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 36px;
}

.games-header-left .section-title {
  margin-bottom: 12px;
}

.games-sub {
  font-size: 15px;
  color: #94a3b8;
  max-width: 440px;
  margin-bottom: 24px;
}

.carousel-nav-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 24px;
  transition: all 0.2s ease;
}
.carousel-btn:hover {
  background: var(--neon-pink);
  border-color: var(--neon-pink);
  transform: scale(1.08);
  box-shadow: 0 0 15px var(--neon-pink-glow);
}

.games-carousel-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 8px 2px 20px;
}
.games-carousel-track::-webkit-scrollbar {
  display: none;
}

.game-poster-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #161226;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  min-width: 240px;
}
.game-poster-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.game-poster-card.card-highlight {
  border: 2px solid var(--neon-pink);
  box-shadow: 0 0 25px rgba(255, 42, 133, 0.35);
}

.poster-art {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.poster-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.game-poster-card:hover .poster-art img {
  transform: scale(1.06);
}

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #100d1e 0%, rgba(16, 13, 30, 0.6) 40%, transparent 100%);
}

.poster-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 5;
}

.poster-title {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.5px;
  color: #ffffff;
  margin-bottom: 4px;
}

.poster-tagline {
  font-size: 13px;
  color: #94a3b8;
}

/* ==========================================================================
   SECTION 05: AFTER HOURS ARCADE
   ========================================================================== */
.arcade-section {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #0c0b14;
}

.arcade-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.arcade-bg-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.arcade-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0c0b14 0%, rgba(12, 11, 20, 0.9) 35%, rgba(12, 11, 20, 0.7) 100%);
}

.arcade-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: center;
}

.arcade-sub {
  font-size: 16px;
  color: #cbd5e1;
  margin-bottom: 28px;
}

.arcade-minigames-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.arcade-card {
  position: relative;
  background: rgba(22, 18, 38, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 77, 148, 0.25);
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  min-height: 380px;
}

.game-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.game-icon-badge {
  font-size: 26px;
  filter: drop-shadow(0 0 10px var(--neon-pink));
}

.game-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.game-card-sub {
  font-size: 13px;
  color: #94a3b8;
}

/* Reaction Pad */
.reaction-pad {
  flex: 1;
  width: 100%;
  min-height: 160px;
  border-radius: 12px;
  background: radial-gradient(ellipse at 50% 50%, #2a1b38, #161022);
  border: 2px dashed rgba(255, 77, 148, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
  user-select: none;
}
.reaction-pad:disabled {
  cursor: default;
}
.reaction-pad:not(:disabled) {
  cursor: pointer;
}

.pad-orbit {
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

#reaction-symbol {
  font-size: 32px;
  color: var(--neon-pink-bright);
}

#reaction-message {
  font-size: 13px;
  font-weight: 500;
  color: #e2e8f0;
  text-align: center;
  padding: 0 16px;
}

.reaction-pad[data-state='waiting'] {
  border-color: var(--neon-peach);
  background: radial-gradient(ellipse at 50% 50%, #3f2216, #1a100d);
}

.reaction-pad[data-state='ready'] {
  border-color: var(--neon-green);
  background: radial-gradient(ellipse at 50% 50%, #10b981, #065f46);
  box-shadow: 0 0 35px rgba(16, 185, 129, 0.5);
}
.reaction-pad[data-state='ready'] #reaction-symbol,
.reaction-pad[data-state='ready'] #reaction-message {
  color: #ffffff;
  font-weight: 700;
}

/* Memory Board */
.memory-board {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  min-height: 160px;
}

.memory-card {
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #251b36;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 24px;
  transition: all 0.2s ease;
  user-select: none;
}
.memory-card:hover:not(:disabled) {
  background: rgba(255, 42, 133, 0.2);
  border-color: var(--neon-pink-bright);
  transform: translateY(-2px);
}
.memory-card[data-open='true'] {
  background: #3c2452;
  border-color: var(--neon-pink-bright);
  color: var(--neon-pink-bright);
}
.memory-card[data-matched='true'] {
  background: #0f4937;
  border-color: var(--neon-green);
  color: #6ee7b7;
}

.memory-status {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 10px;
  min-height: 18px;
}

.game-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
}

.btn-arcade-action {
  font-size: 13px;
  padding: 10px 20px;
  background: rgba(255, 42, 133, 0.15);
  border: 1px solid var(--neon-pink-bright);
  color: #ffffff;
  border-radius: 999px;
  transition: all 0.25s;
}
.btn-arcade-action:hover {
  background: var(--neon-pink-bright);
  color: #ffffff;
  box-shadow: 0 0 20px var(--neon-pink-glow);
}

.game-stat {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1px;
  text-align: right;
  color: #94a3b8;
}
.game-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  color: #ffffff;
}

/* ==========================================================================
   SECTION 06: POOH FM
   ========================================================================== */
.poohfm-section {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background: #0c0b14;
}

.poohfm-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.poohfm-bg-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poohfm-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0c0b14 0%, rgba(12, 11, 20, 0.85) 35%, transparent 70%);
}

.poohfm-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr;
  gap: 36px;
  align-items: center;
}

.audio-wave-visualizer {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 36px;
  margin-bottom: 20px;
}

.wave-bar {
  width: 4px;
  height: 8px;
  background: var(--neon-pink-bright);
  border-radius: 2px;
  transition: height 0.15s ease;
  box-shadow: 0 0 8px var(--neon-pink-glow);
}

.audio-wave-visualizer.playing .wave-bar:nth-child(2n) {
  animation: wavePulse 0.6s infinite ease-in-out alternate;
}
.audio-wave-visualizer.playing .wave-bar:nth-child(2n+1) {
  animation: wavePulse 0.9s infinite ease-in-out alternate;
}

@keyframes wavePulse {
  from { height: 6px; }
  to { height: 34px; }
}

.station-callsign {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 26px;
}

.frequency-text {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1px;
  color: #ffffff;
}

.frequency-sub {
  font-size: 13.5px;
  color: #94a3b8;
}

/* Turntable */
.turntable-deck {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto;
  background: radial-gradient(circle, #201934, #120e20);
  border-radius: 24px;
  border: 1px solid rgba(255, 77, 148, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), inset 0 0 25px rgba(0, 0, 0, 0.8);
  display: grid;
  place-items: center;
}

.vinyl-platter {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: #08070d;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  display: grid;
  place-items: center;
}

.vinyl-disc {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, #1a162b 15%, #0d0b17 50%, #151124 90%);
  position: relative;
  box-shadow: 0 0 15px rgba(255, 42, 133, 0.2);
  display: grid;
  place-items: center;
}

.vinyl-disc.spin {
  animation: vinylSpin 3s linear infinite;
}

@keyframes vinylSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.vinyl-ring {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.vinyl-ring.ring-mid {
  width: 120px;
  height: 120px;
}

.vinyl-center-label {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--neon-pink), #a81c5b);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  border: 2px solid #ffffff;
}

.label-neon-text {
  font-family: var(--font-script);
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}
.label-sub-text {
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.5px;
  color: #ffe4e6;
}

.turntable-arm {
  position: absolute;
  top: 30px;
  right: 25px;
  width: 80px;
  height: 130px;
  transform-origin: top right;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: rotate(-10deg);
  pointer-events: none;
}
.turntable-arm.active {
  transform: rotate(18deg);
}

.arm-pivot {
  position: absolute;
  top: 0;
  right: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #cbd5e1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.arm-rod {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 3px;
  height: 110px;
  background: #94a3b8;
  transform: rotate(-12deg);
}

.arm-head {
  position: absolute;
  bottom: 5px;
  left: 30px;
  width: 14px;
  height: 22px;
  background: var(--neon-pink);
  border-radius: 2px;
}

/* Currently Playing Glass Card */
.player-glass-card {
  background: rgba(22, 18, 38, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 77, 148, 0.25);
  border-radius: 18px;
  padding: 24px 28px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
}

.player-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.player-status-tag {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-green);
  box-shadow: 0 0 10px var(--neon-green);
  animation: dotPulse 1.8s infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.player-status-text {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: #e2e8f0;
}

.heart-fav-btn {
  font-size: 20px;
  color: var(--neon-pink-bright);
  transition: transform 0.2s;
}
.heart-fav-btn:hover {
  transform: scale(1.2);
}

.tracklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.track-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: all 0.2s ease;
}
.track-row:hover {
  background: rgba(255, 42, 133, 0.12);
  transform: translateX(4px);
}
.track-row.active {
  background: rgba(255, 42, 133, 0.2);
  border: 1px solid rgba(255, 77, 148, 0.4);
}

.track-idx {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #94a3b8;
  width: 20px;
}

.track-title {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.track-artist {
  font-size: 13px;
  color: #94a3b8;
  flex: 1;
}

.track-signal {
  font-size: 12px;
  color: var(--neon-pink-bright);
}

/* ==========================================================================
   SECTION 07: THE BATTLE BOARD
   ========================================================================== */
.battle-section {
  background: #0c0b14;
}

.battle-header {
  margin-bottom: 40px;
}

.battle-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
}

.battle-sub {
  font-size: 15px;
  color: #94a3b8;
}

.goals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.goal-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px;
  border-radius: 14px;
  background: rgba(22, 18, 38, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}
.goal-card:hover {
  transform: translateY(-4px);
  border-color: var(--neon-pink);
  box-shadow: 0 10px 30px rgba(255, 42, 133, 0.2);
}

.goal-icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 42, 133, 0.12);
  border: 1px solid rgba(255, 42, 133, 0.35);
  color: var(--neon-pink-bright);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.goal-badge-roman span {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 1px;
}

.goal-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.goal-name {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}

.goal-desc {
  font-size: 12.5px;
  color: #94a3b8;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  padding: 60px 5% 40px;
  background: #0c0b14;
}

.footer-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.footer-bg-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right bottom;
}

.footer-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0c0b14 0%, rgba(12, 11, 20, 0.9) 45%, transparent 80%);
}

.footer-neon-sticker {
  position: absolute;
  top: 60px;
  right: 7%;
  z-index: 10;
  border: 2px solid var(--neon-pink);
  border-radius: 8px;
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-script);
  font-size: 20px;
  line-height: 1.2;
  color: var(--neon-pink-bright);
  background: rgba(12, 11, 20, 0.45);
  backdrop-filter: blur(6px);
  box-shadow: 0 0 20px var(--neon-pink-glow);
  transform: rotate(5deg);
}

.footer-content {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-brand {
  font-size: 34px;
}

.footer-script-tag {
  font-family: var(--font-script);
  font-size: 20px;
  color: #cbd5e1;
  line-height: 1.3;
}
.footer-script-tag span {
  color: var(--neon-pink-bright);
}

.footer-socials {
  margin-top: 8px;
}

.footer-center {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13.5px;
  color: #cbd5e1;
}
.footer-links a:hover {
  color: var(--neon-pink-bright);
}

.footer-disclaimer {
  font-size: 12px;
  color: #64748b;
  text-align: right;
}

/* ==========================================================================
   VIDEO CLIP DIALOG (MODAL)
   ========================================================================== */
dialog {
  color: #ffffff;
  border: 1px solid rgba(255, 77, 148, 0.35);
  background: #141022;
  padding: 24px;
  max-width: 520px;
  width: calc(100% - 32px);
  max-height: 92svh;
  border-radius: 14px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8), 0 0 35px rgba(255, 42, 133, 0.25);
  margin: auto;
}

dialog::backdrop {
  background: rgba(10, 8, 18, 0.85);
  backdrop-filter: blur(8px);
}

.dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.dialog-header h2 {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 1px;
  color: #e2e8f0;
}

.dialog-header button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  font-size: 16px;
  transition: all 0.2s;
}
.dialog-header button:hover {
  background: var(--neon-pink);
  color: #ffffff;
}

#video-container {
  width: 100%;
  min-height: 280px;
  display: grid;
  place-items: center;
  background: #000000;
  border-radius: 8px;
  overflow: hidden;
}

#video-container iframe {
  width: 100%;
  height: min(65svh, 580px);
  border: none;
}

.video-help {
  font-size: 12.5px;
  color: #94a3b8;
  margin-top: 14px;
  text-align: center;
}
.video-help a {
  color: var(--neon-pink-bright);
  text-decoration: underline;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1100px) {
  .profile-container {
    grid-template-columns: 1fr 1fr;
  }
  .profile-right {
    grid-column: 1 / -1;
  }
  .stream-grid, .goals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .arcade-content {
    grid-template-columns: 1fr;
  }
  .poohfm-content {
    grid-template-columns: 1fr 1fr;
  }
  .poohfm-center {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: rgba(12, 11, 20, 0.98);
    flex-direction: column;
    padding: 24px 5%;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav nav.is-open {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .hero-neon-sign {
    display: none;
  }
  .hero {
    min-height: 720px;
    padding-top: 80px;
  }
  .profile-container {
    grid-template-columns: 1fr;
  }
  .vice-banner-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .vice-banner-right {
    align-items: flex-start;
  }
  .arcade-minigames-grid {
    grid-template-columns: 1fr;
  }
  .poohfm-content {
    grid-template-columns: 1fr;
  }
  .battle-title-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .goals-grid {
    grid-template-columns: 1fr;
  }
  .footer-content {
    flex-direction: column;
  }
  .footer-center {
    align-items: flex-start;
  }
  .footer-disclaimer {
    text-align: left;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

html[data-motion='off'] *,
html[data-motion='off'] *::before,
html[data-motion='off'] *::after {
  animation: none !important;
  transition: none !important;
}
