/* ============================================
   FRUSTRATION POINT — Global Styles v2
   Fire & Lightning | Parallax | Interactive
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;600;700;800;900&family=Outfit:wght@400;600;700;800;900&display=swap');

:root {
  /* Core palette — fire & grunge */
  --bg-deep: #0a0a0c;
  --bg-dark: #111115;
  --bg-card: #18181d;
  --bg-elevated: #1e1e24;

  /* Fire spectrum */
  --fire-red: #e63946;
  --fire-crimson: #c1121f;
  --fire-orange: #f77f00;
  --fire-amber: #fcbf49;
  --fire-ember: #ff6b35;

  /* Lightning accent */
  --lightning-blue: #4cc9f0;
  --lightning-glow: rgba(76, 201, 240, 0.4);

  /* Text */
  --text-primary: #f5f5f5;
  --text-secondary: #a0a0aa;
  --text-muted: #6b6b78;

  /* Glass & borders */
  --glass-bg: rgba(10, 10, 12, 0.75);
  --glass-bg-light: rgba(30, 30, 36, 0.6);
  --glass-border: rgba(230, 57, 70, 0.25);
  --glass-border-hover: rgba(230, 57, 70, 0.5);

  /* Gradients */
  --gradient-fire: linear-gradient(135deg, var(--fire-crimson), var(--fire-orange), var(--fire-amber));
  --gradient-ember: linear-gradient(135deg, var(--fire-red), var(--fire-ember));
  --gradient-dark: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-dark) 100%);

  /* Shadows */
  --shadow-fire: 0 0 40px rgba(230, 57, 70, 0.25);
  --shadow-ember: 0 0 20px rgba(255, 107, 53, 0.3);
  --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.6);

  /* Spacing */
  --section-padding: clamp(80px, 10vw, 140px);
  --container-max: 1280px;
}

/* ============================================
   RESET & BASE
   ============================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background-color: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  cursor: none;
}

/* Grunge texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url('/assets/hf_20260708_181500_ae494bd7-6f1d-40e7-929c-f81ccdd0995b.png');
  background-size: 600px;
  background-repeat: repeat;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

/* Ambient gradient overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(230, 57, 70, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(247, 127, 0, 0.06) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

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

a {
  text-decoration: none;
  color: inherit;
  cursor: none;
}

button {
  cursor: none;
}

section,
header,
nav,
footer,
main {
  position: relative;
  z-index: 1;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */

.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--fire-orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  box-shadow: 0 0 10px var(--fire-orange);
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 2px solid rgba(230, 57, 70, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.cursor-dot.cursor-hover {
  width: 10px;
  height: 10px;
  background: var(--fire-red);
  box-shadow: 0 0 20px var(--fire-red);
}

.cursor-ring.cursor-hover {
  width: 52px;
  height: 52px;
  border-color: var(--fire-red);
  background: rgba(230, 57, 70, 0.08);
}

/* ============================================
   PARTICLE CANVAS
   ============================================ */

#particle-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.7;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes floatSlow {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}

@keyframes pulseGlow {

  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

@keyframes fireFlicker {
  0% {
    text-shadow: 0 0 10px var(--fire-red), 0 0 20px var(--fire-orange);
  }

  25% {
    text-shadow: 0 0 15px var(--fire-orange), 0 0 30px var(--fire-amber);
  }

  50% {
    text-shadow: 0 0 8px var(--fire-crimson), 0 0 18px var(--fire-red);
  }

  75% {
    text-shadow: 0 0 12px var(--fire-amber), 0 0 25px var(--fire-orange);
  }

  100% {
    text-shadow: 0 0 10px var(--fire-red), 0 0 20px var(--fire-orange);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

@keyframes scrollWheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(8px);
    opacity: 0;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes borderPulse {

  0%,
  100% {
    border-color: rgba(230, 57, 70, 0.2);
  }

  50% {
    border-color: rgba(247, 127, 0, 0.45);
  }
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-4px);
  }

  20%,
  40%,
  60%,
  80% {
    transform: translateX(4px);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes successPop {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }

  50% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes playRing {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

@keyframes energyPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.95);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem clamp(1.5rem, 4vw, 3rem);
  background: rgba(10, 10, 12, 0.6);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border-bottom: 1px solid rgba(230, 57, 70, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 12, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
  border-bottom-color: rgba(230, 57, 70, 0.2);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-primary);
  transition: all 0.3s;
}

.brand:hover {
  filter: drop-shadow(0 0 12px rgba(230, 57, 70, 0.5));
}

.brand img {
  height: 44px;
  filter: drop-shadow(0 0 8px rgba(230, 57, 70, 0.35));
  transition: filter 0.3s;
}

.brand:hover img {
  filter: drop-shadow(0 0 16px rgba(230, 57, 70, 0.7));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links a {
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  padding: 0.5rem 1.1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-fire);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:hover::after {
  width: 60%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.auth-buttons {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  padding: 0.65rem 1.6rem;
  border-radius: 8px;
  border: none;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  cursor: none;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: transparent;
  border: 2px solid var(--fire-red);
  color: var(--fire-red);
}

.btn-primary:hover {
  background: var(--fire-red);
  color: var(--bg-deep);
  box-shadow: 0 0 25px rgba(230, 57, 70, 0.5), 0 0 60px rgba(230, 57, 70, 0.15);
  transform: translateY(-2px);
}

.btn-fire {
  background: var(--gradient-ember);
  color: #fff;
  border: none;
  font-size: 0.88rem;
  padding: 1rem 2.4rem;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.3);
}

.btn-fire:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(230, 57, 70, 0.5), 0 0 80px rgba(247, 127, 0, 0.15);
}

.btn-fire .btn-spark {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-secondary);
  padding: 1rem 2rem;
  border-radius: 10px;
}

.btn-ghost:hover {
  border-color: var(--fire-orange);
  color: var(--fire-orange);
  background: rgba(247, 127, 0, 0.06);
  transform: translateY(-2px);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(100px, 12vw, 160px) clamp(20px, 4vw, 48px) clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}

/* Parallax background layers */
.parallax-bg {
  position: absolute;
  inset: -20%;
  z-index: -2;
  will-change: transform;
}

.hero-bg-city {
  width: 100%;
  height: 100%;
  background-image: url('/assets/hf_20260708_181500_3f13a3d2-f6df-4d70-8382-823da52269e6.png');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.15;
  filter: saturate(0.5) contrast(1.2);
}

.hero-bg-embers {
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 60% 50%, rgba(247, 127, 0, 0.08), transparent 60%);
}

/* Dark vignette */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--bg-deep) 0%, rgba(10, 10, 12, 0.2) 30%, rgba(10, 10, 12, 0.4) 70%, var(--bg-deep) 100%),
    linear-gradient(90deg, var(--bg-deep) 0%, transparent 25%, transparent 75%, var(--bg-deep) 100%);
  z-index: -1;
  pointer-events: none;
}

.hero-inner {
  max-width: var(--container-max);
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
}

.hero-content {
  z-index: 10;
  animation: slideInLeft 1s ease-out;
}

.hero-logo {
  max-width: clamp(320px, 40vw, 550px);
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 30px rgba(230, 57, 70, 0.3));
  animation: floatSlow 8s ease-in-out infinite;
  will-change: transform;
}

.hero-tagline-wrapper {
  min-height: 3.5rem;
}

.hero-tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 2.6rem);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.hero-tagline .highlight {
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.typed-cursor {
  color: var(--fire-orange);
  animation: blink 0.8s infinite;
  font-weight: 300;
}

.hero-description {
  font-size: clamp(0.92rem, 1.1vw, 1.1rem);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0;
  animation: slideUp 1.2s ease-out 0.5s both;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--fire-orange);
  display: block;
  line-height: 1;
  letter-spacing: 2px;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, rgba(230, 57, 70, 0.3), transparent);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: slideInRight 1s ease-out;
  will-change: transform;
}

.hero-mic-glow {
  position: absolute;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.12), rgba(247, 127, 0, 0.06), transparent 65%);
  animation: pulseGlow 4s ease-in-out infinite;
  z-index: 0;
}

.hero-mic-image {
  width: clamp(260px, 28vw, 400px);
  border-radius: 24px;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 0 40px rgba(247, 127, 0, 0.3));
  position: relative;
  z-index: 2;
}

/* Sound Wave Visualizer */
.sound-wave {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 50px;
  z-index: 3;
}

.wave-bar {
  width: 4px;
  height: 10px;
  background: var(--gradient-fire);
  border-radius: 2px;
  transition: height 0.1s ease;
  box-shadow: 0 0 6px rgba(230, 57, 70, 0.4);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
  transition: opacity 0.4s;
}

.scroll-indicator span {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-muted);
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--fire-orange);
  border-radius: 3px;
  animation: scrollWheel 1.8s ease infinite;
}

/* ============================================
   ICONS MARQUEE
   ============================================ */

.icons-bar {
  padding: clamp(20px, 3vw, 40px) 0;
  overflow: hidden;
  border-top: 1px solid rgba(230, 57, 70, 0.08);
  border-bottom: 1px solid rgba(230, 57, 70, 0.08);
  background: rgba(15, 15, 20, 0.5);
}

.marquee-track {
  display: flex;
  gap: 4rem;
  animation: marquee 20s linear infinite;
  width: fit-content;
}

.marquee-track img {
  max-height: 50px;
  object-fit: contain;
  opacity: 0.3;
  filter: brightness(1.4);
  flex-shrink: 0;
  min-width: 500px;
}

.icons-bar:hover .marquee-track img {
  opacity: 0.5;
}

/* ============================================
   SECTIONS BASE
   ============================================ */

.section {
  padding: var(--section-padding) 0;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 70px);
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--fire-orange);
  margin-bottom: 0.8rem;
  display: block;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.section-title .fire-text,
.cta-title .fire-text,
.featured-title .fire-text {
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: clamp(0.92rem, 1.1vw, 1.08rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 1rem auto 0;
  line-height: 1.7;
}

/* ============================================
   PODCAST INFO CARDS
   ============================================ */

.podcast-section {
  background:
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-dark) 50%, var(--bg-deep) 100%);
}

.podcast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.podcast-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 2.2rem;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s, border-color 0.4s;
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.podcast-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-fire);
  opacity: 0;
  transition: opacity 0.3s;
}

.podcast-card:hover::before {
  opacity: 1;
}

/* Card glow (follows cursor) */
.card-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.15), transparent 70%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 0;
}

.card-icon {
  font-size: 2.6rem;
  margin-bottom: 1.2rem;
  display: block;
  position: relative;
  z-index: 1;
}

.card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  color: var(--text-primary);
  position: relative;
  z-index: 1;
}

.card-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.card-footer {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}

.card-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  background: rgba(230, 57, 70, 0.1);
  color: var(--fire-red);
  border: 1px solid rgba(230, 57, 70, 0.15);
}

/* ============================================
   FEATURED EPISODE BANNER
   ============================================ */

.featured-section {
  background: var(--bg-dark);
}

.featured-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  overflow: hidden;
  transition: border-color 0.4s, box-shadow 0.4s;
}

.featured-banner:hover {
  border-color: rgba(230, 57, 70, 0.25);
  box-shadow: var(--shadow-fire);
}

.featured-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-banner:hover .featured-image {
  transform: scale(1.05);
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 12, 0.4);
  opacity: 0;
  transition: opacity 0.3s;
  cursor: none;
}

.featured-visual:hover .play-overlay {
  opacity: 1;
}

.play-button-ring {
  width: 80px;
  height: 80px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.3s;
}

.play-button-ring:hover {
  transform: scale(1.1);
}

.play-button-ring::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: playRing 2s ease infinite;
}

.featured-info {
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.featured-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fire-orange);
  display: inline-block;
  margin-bottom: 0.8rem;
  padding: 0.35rem 0.8rem;
  background: rgba(247, 127, 0, 0.1);
  border: 1px solid rgba(247, 127, 0, 0.15);
  border-radius: 6px;
}

.featured-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.featured-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.featured-meta {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.featured-meta span {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ============================================
   CHARACTERS / CARTOONS SECTION
   ============================================ */

.cartoons-section {
  overflow: hidden;
}

.characters-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.character-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s, border-color 0.4s;
  position: relative;
  will-change: transform;
}

.character-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-deep) 100%);
}

.character-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transition: transform 0.5s ease;
  padding: 10px;
  position: relative;
  z-index: 2;
}

.character-card:hover .character-image-wrapper img {
  transform: scale(1.08);
}

/* Energy aura per character */
.character-energy {
  position: absolute;
  inset: 20%;
  border-radius: 50%;
  animation: energyPulse 3s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
  filter: blur(30px);
}

.energy-gold {
  background: rgba(252, 191, 73, 0.2);
}

.energy-red {
  background: rgba(230, 57, 70, 0.2);
}

.energy-crimson {
  background: rgba(193, 18, 31, 0.2);
}

.energy-orange {
  background: rgba(247, 127, 0, 0.2);
}

.energy-blue {
  background: rgba(58, 125, 233, 0.2);
}

.energy-purple {
  background: rgba(138, 43, 226, 0.2);
}

.energy-green {
  background: rgba(46, 196, 182, 0.2);
}

.energy-cyan {
  background: rgba(0, 245, 255, 0.2);
}

.energy-pink {
  background: rgba(255, 0, 110, 0.2);
}

.character-card:hover .character-energy {
  animation-duration: 1.5s;
  opacity: 0.9;
}

/* Fade overlay at bottom */
.character-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--bg-card), transparent);
  z-index: 3;
  pointer-events: none;
}

.character-info {
  padding: 1.2rem 1.5rem;
  position: relative;
  z-index: 4;
}

.character-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.2rem;
}

.character-role {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fire-orange);
  display: block;
  margin-bottom: 0.5rem;
}

.character-bio {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.3s;
  opacity: 0;
}

.character-card:hover .character-bio {
  max-height: 80px;
  opacity: 1;
}

/* ============================================
   CONTACT FORM SECTION
   ============================================ */

.contact-section {
  background:
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-dark) 50%, var(--bg-deep) 100%);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: start;
}

.contact-info {
  position: sticky;
  top: 120px;
}

.contact-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 1rem 0 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s;
}

.contact-detail-item:hover {
  border-color: rgba(230, 57, 70, 0.2);
  background: rgba(230, 57, 70, 0.03);
}

.contact-detail-icon {
  font-size: 1.5rem;
}

.contact-detail-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}

.contact-detail-value {
  display: block;
  font-size: 0.92rem;
  color: var(--text-primary);
  font-weight: 500;
}

.contact-decor-icons {
  margin-top: 2.5rem;
  max-height: 40px;
  opacity: 0.15;
  filter: brightness(1.5);
}

/* Form */
.contact-form {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  transition: all 0.4s;
}

.contact-form:hover {
  border-color: rgba(230, 57, 70, 0.15);
}

.contact-form.shake {
  animation: shake 0.5s ease;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-field label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
}

.form-field.focused label {
  color: var(--fire-orange);
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s;
  cursor: none;
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%236b6b78'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-field select option {
  background: var(--bg-card);
  color: var(--text-primary);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--fire-red);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-muted);
}

/* Focus bar animation */
.field-focus-bar {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-fire);
  transition: all 0.4s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

.form-field.focused .field-focus-bar {
  width: 100%;
}

/* Error state */
.field-error {
  display: block;
  font-size: 0.72rem;
  color: var(--fire-red);
  margin-top: 0.35rem;
  min-height: 1rem;
  transition: all 0.3s;
}

.form-field.has-error input,
.form-field.has-error textarea,
.form-field.has-error select {
  border-color: var(--fire-red);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.08);
}

/* Valid state */
.form-field.valid input,
.form-field.valid textarea,
.form-field.valid select {
  border-color: rgba(76, 201, 240, 0.4);
}

/* Character counter */
.char-count {
  display: block;
  text-align: right;
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
  transition: color 0.3s;
}

.char-count.over-limit {
  color: var(--fire-red);
  font-weight: 700;
}

/* Submit button states */
.btn-submit {
  width: 100%;
  padding: 1.1rem;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.btn-submit .btn-loading,
.btn-submit .btn-success {
  display: none;
}

.btn-submit.loading .btn-text {
  display: none;
}

.btn-submit.loading .btn-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-submit.success .btn-text {
  display: none;
}

.btn-submit.success .btn-loading {
  display: none;
}

.btn-submit.success .btn-success {
  display: inline-block;
  animation: successPop 0.4s ease;
}

.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.form-sent {
  position: relative;
}

.form-sent::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 12, 0.5);
  border-radius: 20px;
  pointer-events: none;
  animation: scaleIn 0.3s ease;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  padding: var(--section-padding) 0;
  text-align: center;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(230, 57, 70, 0.06), transparent 65%);
  pointer-events: none;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(10, 10, 12, 0.95);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  height: 32px;
  opacity: 0.6;
}

.footer-brand span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 3px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--fire-orange);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* ============================================
   BACK TO TOP
   ============================================ */

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  border: 1px solid rgba(230, 57, 70, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fire-red);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.35s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--fire-red);
  color: white;
  border-color: var(--fire-red);
  box-shadow: 0 4px 30px rgba(230, 57, 70, 0.4);
}

/* ============================================
   SCROLL REVEAL
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 968px) {

  /* Hide custom cursor on touch devices */
  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  body,
  a,
  button,
  .btn,
  .form-field input,
  .form-field textarea,
  .form-field select,
  .play-overlay {
    cursor: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-description {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-mic-image {
    width: clamp(200px, 50vw, 300px);
  }

  .hero-tagline-wrapper {
    text-align: center;
  }

  .characters-showcase {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-banner {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-info {
    position: static;
  }

  .navbar {
    padding: 0.7rem 1.2rem;
  }

  .hamburger {
    display: flex !important;
    cursor: pointer !important;
  }

  .mobile-menu-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding-bottom: 1.2rem !important;
    margin-bottom: 1.2rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  }

  .nav-links {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    width: 320px !important;
    max-width: 88vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: linear-gradient(165deg, rgba(16, 16, 22, 0.98), rgba(8, 8, 12, 0.99)) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border-left: 1px solid rgba(230, 57, 70, 0.35) !important;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.85), -2px 0 20px rgba(230, 57, 70, 0.25) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    padding: 1.8rem 1.5rem 2.5rem !important;
    z-index: 1000 !important;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s !important;
    overflow-y: auto !important;
    gap: 0.2rem !important;
    visibility: hidden;
    pointer-events: none;
  }

  .nav-links.mobile-open {
    transform: translateX(0) !important;
    display: flex !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .nav-links a {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
    padding: 0.85rem 1.2rem;
    border-radius: 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.25s ease;
    border: 1px solid transparent;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: #fff;
    background: linear-gradient(90deg, rgba(230, 57, 70, 0.18), rgba(247, 127, 0, 0.08));
    border-color: rgba(230, 57, 70, 0.35);
    padding-left: 1.4rem;
  }
}

/* DESKTOP NAV ISOLATION (> 968px) */
@media (min-width: 969px) {
  .mobile-menu-header,
  .mobile-menu-backdrop {
    display: none !important;
  }

  .hamburger {
    display: none !important;
  }

  .nav-links {
    position: static !important;
    transform: none !important;
    width: auto !important;
    max-width: none !important;
    height: auto !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.4rem !important;
    z-index: auto !important;
  }

  .nav-links a {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--text-primary);
    background: rgba(230, 57, 70, 0.1);
    border-color: rgba(230, 57, 70, 0.25);
    padding-left: 1rem;
  }
}

@media (max-width: 600px) {
  .characters-showcase {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }

  .character-info {
    padding: 0.8rem 1rem;
  }

  .character-bio {
    display: none;
  }

  .hero-logo {
    max-width: 260px;
  }

  .podcast-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ============================================
   AUTH CONTAINERS (preserved for login.html)
   ============================================ */

.auth-container {
  min-height: calc(100vh - 80px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.auth-box {
  background: var(--glass-bg);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(15px);
  width: 100%;
  max-width: 400px;
  box-shadow: var(--shadow-deep);
  position: relative;
  overflow: hidden;
}

.auth-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-fire);
}

.auth-box h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  text-transform: uppercase;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: white;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--fire-red);
  box-shadow: 0 0 15px rgba(230, 57, 70, 0.25);
}

.btn-full {
  width: 100%;
  margin-top: 1rem;
}

/* ============================================
   PLAYER INTERFACE (preserved for player.html)
   ============================================ */

.player-container {
  padding: 2rem 5%;
  display: flex;
  gap: 2rem;
  min-height: calc(100vh - 80px);
}

.player-main {
  flex: 2;
  background: var(--glass-bg);
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.4s;
}

.player-sidebar {
  flex: 1;
  background: var(--glass-bg);
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 120px);
}

.video-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  border: 2px solid var(--fire-red);
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

audio {
  width: 100%;
  margin-top: 1rem;
}

.episode-info h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--fire-orange);
}

.episode-info p {
  color: var(--text-secondary);
}

.episode-list {
  flex: 1;
  overflow-y: auto;
  padding-right: 10px;
}

.episode-list::-webkit-scrollbar {
  width: 6px;
}

.episode-list::-webkit-scrollbar-thumb {
  background: var(--fire-red);
  border-radius: 3px;
}

.episode-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 10px;
}

.episode-item:hover {
  background: rgba(230, 57, 70, 0.1);
  transform: translateX(5px);
}

.episode-item.active {
  background: rgba(230, 57, 70, 0.15);
  border-left: 4px solid var(--fire-red);
}

.episode-thumb {
  width: 80px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
}

.episode-meta h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.episode-meta span {
  font-size: 0.8rem;
  color: var(--fire-orange);
  text-transform: uppercase;
  font-weight: bold;
}

/* Legacy shape support */
.shape {
  position: absolute;
  z-index: 0;
  opacity: 0.5;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, var(--fire-red), transparent);
  border-radius: 50%;
  top: 10%;
  right: -100px;
  filter: blur(80px);
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(45deg, var(--fire-orange), transparent);
  border-radius: 50%;
  bottom: -100px;
  left: -100px;
  filter: blur(100px);
}

.player-sidebar,
.player-main {
  padding-top: 80px !important;
}

/* ============================================
   GLOBAL MOBILE MENU BACKDROP & DRAWER ELEMENTS
   ============================================ */

body.menu-open {
  overflow: hidden !important;
  touch-action: none;
}

.mobile-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-menu-backdrop.active {
  opacity: 1;
  visibility: visible;
}

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

.mobile-menu-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.mobile-menu-brand img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--fire-orange);
}

.mobile-menu-brand span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  letter-spacing: 2px;
  color: #fff;
}

.mobile-menu-close {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-primary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer !important;
  font-size: 1.2rem;
  transition: all 0.25s ease;
}

.mobile-menu-close:hover {
  background: rgba(230, 57, 70, 0.2);
  border-color: var(--fire-red);
  color: var(--fire-red);
  transform: rotate(90deg);
}

.mobile-auth-wrapper {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* ============================================
   CHARACTER SHOWCASE (DASHBOARD & PLAYER)
   ============================================ */

.char-filter-tabs {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}

.char-filter-btn {
  padding: 0.55rem 1.2rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer !important;
  transition: all 0.3s ease;
}

.char-filter-btn:hover,
.char-filter-btn.active {
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.2), rgba(247, 127, 0, 0.15));
  border-color: var(--fire-orange);
  color: #fff;
  box-shadow: 0 0 15px rgba(230, 57, 70, 0.2);
}

.dash-characters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.dash-char-card {
  background: rgba(18, 18, 24, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.dash-char-card:hover {
  transform: translateY(-6px);
  border-color: rgba(230, 57, 70, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(230, 57, 70, 0.18);
}

.dash-char-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 4.5;
  background: linear-gradient(180deg, rgba(30, 30, 42, 0.6) 0%, rgba(10, 10, 14, 0.95) 100%);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.dash-char-img-wrap img {
  max-width: 85%;
  max-height: 90%;
  object-fit: contain;
  transition: transform 0.5s ease;
  z-index: 2;
  filter: drop-shadow(0 8px 15px rgba(0,0,0,0.6));
}

.dash-char-card:hover .dash-char-img-wrap img {
  transform: scale(1.08) translateY(-4px);
}

.dash-char-body {
  padding: 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.dash-char-name {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 1.5px;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dash-char-role {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fire-orange);
  margin-bottom: 0.6rem;
}

.dash-char-bio {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.player-characters-section {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}