/*
Theme Name: Other Dimensions Landing Page
Description: Complete styles for Other Dimensions podcast
Version: 1.0.0
*/

/* ===== RESET & BASE ===== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body.other-dimensions-page{
  background:#0b0b0b;
  color:#f2f2f2;
  font-family:'Inter',system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}
h1,h2,h3,h4{font-family:'Playfair Display',Georgia,serif}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block;height:auto}
button{font-family:inherit}

/* ===== SKIP LINK ===== */
.skip-link{
  position:absolute;
  top:-40px;
  left:0;
  background:#c01818;
  color:#fff;
  padding:8px 16px;
  text-decoration:none;
  z-index:9999;
  border-radius:0 0 4px 0;
  font-weight:500;
}
.skip-link:focus{
  top:0;
  outline:3px solid #fff;
  outline-offset:2px;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar{width:8px}
::-webkit-scrollbar-track{background:#0b0b0b}
::-webkit-scrollbar-thumb{background:#c01818;border-radius:4px}
::-webkit-scrollbar-thumb:hover{background:#e01e1e}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp{from{opacity:0;transform:translateY(40px)}to{opacity:1;transform:none}}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
@keyframes pulse{0%,100%{transform:scale(1)}50%{transform:scale(1.08)}}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)}}
@keyframes glitch{
  0%,100%{transform:translate(0)}
  20%{transform:translate(-2px,2px)}
  40%{transform:translate(2px,-2px)}
  60%{transform:translate(-1px,-1px)}
  80%{transform:translate(1px,2px)}
}
@keyframes waveform{
  0%,100%{height:4px}
  50%{height:var(--wave-h,20px)}
}
@keyframes shimmer{
  0%{background-position:-200% 0}
  100%{background-position:200% 0}
}
@keyframes rotate{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}

.anim{opacity:0;will-change:transform,opacity}
.anim.show{animation:fadeUp .8s cubic-bezier(.22,.61,.36,1) forwards}
.delay-1{animation-delay:.1s}
.delay-2{animation-delay:.2s}
.delay-3{animation-delay:.3s}
.delay-4{animation-delay:.4s}
.delay-5{animation-delay:.5s}

@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{
    animation-duration:0.01ms!important;
    animation-iteration-count:1!important;
    transition-duration:0.01ms!important;
    scroll-behavior:auto!important;
  }
  .anim{opacity:1}
  .play-btn,.floating-orb,.waveform span{animation:none!important}
}

/* ===== FOCUS STYLES ===== */
*:focus-visible{
  outline:3px solid #c01818;
  outline-offset:4px;
  border-radius:4px;
}
button:focus-visible,a:focus-visible{
  outline-offset:2px;
}

/* ===== NAV ===== */
nav{
  position:fixed;top:0;left:0;right:0;z-index:100;
  display:flex;align-items:center;justify-content:space-between;
  padding:1rem 2.5rem;
  background:rgba(11,11,11,.6);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border-bottom:1px solid transparent;
  transition:all .4s ease;
}
nav.scrolled{
  background:rgba(11,11,11,.92);
  border-bottom-color:#1a1a1a;
  box-shadow:0 4px 30px rgba(0,0,0,.4);
}
.nav-brand{
  font-family:'Playfair Display',serif;
  font-size:1.2rem;font-weight:700;
  display:flex;align-items:center;gap:.6rem;
}
.nav-brand .dot{
  width:8px;height:8px;border-radius:50%;background:#c01818;
  box-shadow:0 0 12px rgba(192,24,24,.6);
  animation:pulse 2s infinite;
}
.nav-links{display:flex;gap:2rem;list-style:none;margin:0;padding:0}
.nav-links a{
  font-size:.9rem;color:#999;
  transition:color .3s;
  position:relative;
  padding:.5rem 0;
  display:inline-block;
}
.nav-links a::after{
  content:'';position:absolute;bottom:0;left:0;
  width:0;height:2px;background:#c01818;
  transition:width .3s ease;
}
.nav-links a:hover,
.nav-links a:focus{color:#fff}
.nav-links a:hover::after,
.nav-links a:focus::after{width:100%}

.nav-toggle{
  display:none;background:none;border:none;
  cursor:pointer;padding:.5rem;
}
.nav-toggle span{
  display:block;width:24px;height:2px;background:#fff;
  margin:5px 0;transition:all .3s;
}

/* ===== BUTTONS ===== */
.btn{
  display:inline-flex;align-items:center;gap:.6rem;
  padding:.85rem 2.2rem;border-radius:999px;
  font-weight:500;font-size:1rem;
  transition:all .3s ease;cursor:pointer;border:none;
  font-family:'Inter',sans-serif;
  text-decoration:none!important;
}
.btn-primary{
  background:linear-gradient(135deg,#c01818,#9e0e0e);
  color:#fff;
  box-shadow:0 8px 30px rgba(192,24,24,.3);
}
.btn-primary:hover,
.btn-primary:focus{
  transform:translateY(-3px);
  box-shadow:0 16px 50px rgba(192,24,24,.45);
}
.btn-outline{
  background:rgba(255,255,255,.04);
  border:1px solid #333;color:#ccc;
}
.btn-outline:hover,
.btn-outline:focus{
  transform:translateY(-3px);
  border-color:#c01818;color:#fff;
  box-shadow:0 14px 40px rgba(0,0,0,.5);
}

/* ===== HERO ===== */
header.hero{
  position:relative;min-height:100vh;
  display:flex;align-items:center;justify-content:center;
  text-align:center;overflow:hidden;
}
.hero-bg{
  position:absolute;inset:0;
  background:url("https://images.unsplash.com/photo-1478760329108-5c3ed9d495a0?w=1920&q=80") center/cover no-repeat;
}
.hero-overlay{
  position:absolute;inset:0;
  background:
    radial-gradient(ellipse at 30% 20%,rgba(192,24,24,.08),transparent 50%),
    radial-gradient(ellipse at 70% 80%,rgba(100,0,180,.06),transparent 50%),
    linear-gradient(to bottom,rgba(11,11,11,.5) 0%,rgba(11,11,11,.85) 100%);
}
#particles-canvas{position:absolute;inset:0;z-index:1;pointer-events:none}
.hero-content{position:relative;z-index:2;max-width:900px;padding:2rem}
.hero-badge{
  display:inline-flex;align-items:center;gap:.5rem;
  background:rgba(192,24,24,.12);border:1px solid rgba(192,24,24,.25);
  border-radius:999px;padding:.45rem 1.2rem;
  font-size:.8rem;color:#ff6b6b;text-transform:uppercase;letter-spacing:.2em;
  margin-bottom:2rem;
}
.hero-badge .live-dot{
  width:6px;height:6px;border-radius:50%;background:#ff4a4a;
  box-shadow:0 0 8px rgba(255,74,74,.6);
  animation:pulse 1.5s infinite;
}
.hero h1{
  font-size:clamp(3.2rem,9vw,7rem);
  line-height:1;font-weight:700;margin-bottom:.5rem;
}
.hero-title-line{display:block}
.accent{
  background:linear-gradient(135deg,#ff4a4a,#c01818,#9e0e0e);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  color:transparent;
}
.hero-desc{
  max-width:620px;margin:1.8rem auto 2.8rem;
  color:#b0b0b0;font-size:1.15rem;line-height:1.7;
}
.hero-buttons{
  display:flex;gap:1rem;justify-content:center;
  flex-wrap:wrap;margin-bottom:3rem;
}
.hero-tagline{
  color:#666;font-family:'Playfair Display',serif;
  font-style:italic;font-size:1rem;margin-top:1rem;
}

/* Waveform */
.waveform{
  display:flex;align-items:center;gap:3px;
  justify-content:center;margin-bottom:2rem;
}
.waveform span{
  width:3px;border-radius:3px;background:#c01818;
  animation:waveform 1.2s ease-in-out infinite;
}

/* Listen-on */
.listen-on{
  display:flex;align-items:center;justify-content:center;
  gap:1.5rem;margin-top:2rem;flex-wrap:wrap;
}
.listen-on span{color:#666;font-size:.85rem}
.listen-on a{
  color:#666;transition:all .3s;
  display:inline-flex;align-items:center;
  padding:.5rem;
}
.listen-on a:hover,
.listen-on a:focus{
  color:#fff;transform:scale(1.15);
}
.listen-on svg{
  width:24px;height:24px;fill:currentColor;
}

/* Floating orbs */
.floating-orb{
  position:absolute;border-radius:50%;
  background:radial-gradient(circle,rgba(192,24,24,.15),transparent 70%);
  animation:float 6s ease-in-out infinite;
  pointer-events:none;
}

/* ===== SECTIONS ===== */
section{padding:7rem 1.5rem;position:relative}
.section-header{text-align:center;margin-bottom:4rem}
.section-label{
  display:inline-block;
  font-size:.75rem;text-transform:uppercase;letter-spacing:.25em;
  color:#c01818;margin-bottom:1rem;font-weight:600;
}
.section-title{
  font-size:clamp(2.2rem,5vw,3.5rem);font-weight:700;
}
.section-subtitle{
  margin-top:.8rem;color:#888;font-size:1.1rem;
  max-width:560px;margin-left:auto;margin-right:auto;
}

/* ===== EPISODES ===== */
.episodes{
  max-width:900px;margin:0 auto;
  display:flex;flex-direction:column;gap:1rem;
}
.episode{
  background:linear-gradient(135deg,rgba(255,255,255,.03),rgba(255,255,255,.005));
  border:1px solid #1e1e1e;border-radius:1rem;
  transition:all .4s cubic-bezier(.22,.61,.36,1);
  overflow:hidden;
}
.episode-link{
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:1.5rem;align-items:center;
  padding:1.5rem 1.8rem;
  text-decoration:none!important;
  width:100%;
}
.episode:hover{
  transform:translateY(-4px) scale(1.01);
  border-color:rgba(192,24,24,.4);
  background:linear-gradient(135deg,rgba(192,24,24,.05),rgba(255,255,255,.02));
  box-shadow:0 20px 60px rgba(0,0,0,.5),0 0 40px rgba(192,24,24,.08);
}
.episode-link:focus-visible{
  outline:3px solid #c01818;
  outline-offset:4px;
  border-radius:1rem;
}
.play-btn{
  width:52px;height:52px;border-radius:50%;
  background:linear-gradient(135deg,#c01818,#9e0e0e);
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 8px 25px rgba(192,24,24,.35);
  transition:all .3s ease;flex-shrink:0;
  border:none;cursor:pointer;
}
.episode:hover .play-btn{
  transform:scale(1.1);
  box-shadow:0 12px 35px rgba(192,24,24,.5);
}
.play-btn svg{
  width:20px;height:20px;fill:#fff;margin-left:2px;
}
.episode-body h3{
  font-size:1.2rem;margin-bottom:.3rem;
  transition:color .3s;
}
.episode:hover .episode-body h3{color:#ff6b6b}
.episode-body p{color:#888;font-size:.9rem;line-height:1.5}
.episode-meta-side{text-align:right;white-space:nowrap}
.episode-cat{
  font-size:.75rem;color:#c01818;font-weight:500;
  text-transform:uppercase;letter-spacing:.1em;
}
.episode-dur{font-size:.85rem;color:#666;margin-top:.3rem}
.mobile-meta{display:none;margin-top:.6rem;color:#666;font-size:.85rem}

/* ===== ABOUT ===== */
.about-section{
  background:linear-gradient(180deg,rgba(192,24,24,.02),transparent);
}
.about-grid{
  max-width:1000px;margin:0 auto;
  display:grid;grid-template-columns:1fr 1fr;
  gap:3rem;align-items:center;
}
.about-text p{
  color:#b0b0b0;font-size:1.05rem;line-height:1.8;
  margin-bottom:1.2rem;
}
.about-text strong{color:#f2f2f2}
.about-text .tagline{
  color:#888;font-style:italic;
  font-family:'Playfair Display',serif;font-size:1.1rem;
}
.about-visual{
  display:flex;flex-direction:column;gap:1rem;
}
.stat-card{
  background:linear-gradient(135deg,rgba(255,255,255,.04),rgba(255,255,255,.01));
  border:1px solid #1e1e1e;border-radius:1rem;padding:1.5rem;
  transition:all .3s ease;
}
.stat-card:hover{
  border-color:rgba(192,24,24,.3);
  transform:translateX(4px);
}
.stat-card .stat-num{
  font-family:'Playfair Display',serif;
  font-size:2.5rem;font-weight:700;color:#c01818;
}
.stat-card .stat-label{color:#888;font-size:.9rem;margin-top:.2rem}

/* Categories */
.categories{
  max-width:900px;margin:3rem auto 0;
  display:grid;grid-template-columns:repeat(2,1fr);gap:1rem;
}
.category{
  background:linear-gradient(135deg,rgba(255,255,255,.03),rgba(255,255,255,.01));
  border:1px solid #1e1e1e;border-radius:1rem;padding:1.5rem;
  display:flex;align-items:flex-start;gap:1rem;
  transition:all .35s ease;
}
.category:hover{
  border-color:rgba(192,24,24,.3);
  transform:translateY(-2px);
}
.cat-icon{
  width:44px;height:44px;border-radius:.75rem;
  background:rgba(192,24,24,.1);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.cat-icon svg{
  width:22px;height:22px;stroke:#c01818;fill:none;
  stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;
}
.category h3{
  font-size:1.05rem;font-weight:700;margin-bottom:.2rem;
}
.category .cat-desc{color:#888;font-size:.85rem}

/* ===== CONTACT SECTION - MYSTICAL ENHANCED ===== */
.contact-section {
  background: linear-gradient(180deg, transparent, rgba(192,24,24,.03));
  position: relative;
  overflow: hidden;
}

/* Animated background particles */
.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(192,24,24,.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(100,0,180,.06) 0%, transparent 50%);
  animation: mystical-pulse 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes mystical-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

/* Floating orbs in background */
.contact-section::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,24,24,.15), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orb-float 6s ease-in-out infinite;
  pointer-events: none;
  filter: blur(40px);
}

@keyframes orb-float {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-45%, -55%) scale(1.2); }
}

/* Container */
.contact-wrap {
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Form with mystical glow */
.contact-form {
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(192,24,24,.2);
  border-radius: 2rem;
  padding: 3rem;
  box-shadow: 
    0 25px 60px rgba(0,0,0,.5),
    0 0 80px rgba(192,24,24,.1),
    inset 0 1px 0 rgba(255,255,255,.05);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

/* Animated border glow */
.contact-form::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
    transparent, 
    rgba(192,24,24,.3), 
    transparent,
    rgba(192,24,24,.3),
    transparent
  );
  background-size: 400% 400%;
  border-radius: 2rem;
  z-index: -1;
  animation: border-glow 8s ease infinite;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.contact-form:hover::before {
  opacity: 1;
}

@keyframes border-glow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Subtle inner glow */
.contact-form::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(192,24,24,.1) 0%,
    transparent 60%
  );
  border-radius: 2rem;
  pointer-events: none;
}

.contact-form:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 30px 70px rgba(0,0,0,.6),
    0 0 100px rgba(192,24,24,.15),
    inset 0 1px 0 rgba(255,255,255,.08);
  border-color: rgba(192,24,24,.3);
}

/* Form groups */
.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 0.6rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.form-group:focus-within label {
  color: #c01818;
}

.form-group label .req {
  color: #c01818;
  font-size: 1.1em;
  animation: pulse-req 2s ease-in-out infinite;
}

@keyframes pulse-req {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Input fields with mystical focus */
.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 1rem;
  padding: 1rem 1.3rem;
  color: #f2f2f2;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: inset 0 2px 4px rgba(0,0,0,.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #555;
  transition: color 0.3s ease;
}

/* Mystical focus state */
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #c01818;
  background: rgba(255,255,255,.06);
  box-shadow: 
    0 0 0 4px rgba(192,24,24,.15),
    0 8px 16px rgba(0,0,0,.3),
    inset 0 2px 4px rgba(0,0,0,.1);
  transform: translateY(-1px);
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
  color: #888;
  transform: translateX(5px);
}

/* Animated underline effect */
.form-group::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c01818, transparent);
  transition: width 0.4s ease;
  border-radius: 2px;
}

.form-group:focus-within::after {
  width: 100%;
}

/* Textarea specific */
.form-group textarea {
  resize: vertical;
  min-height: 150px;
  line-height: 1.6;
}

/* Submit button with energy effect */
.form-submit {
  width: 100%;
  margin-top: 1rem;
  background: linear-gradient(135deg, #c01818, #9e0e0e);
  border: none;
  border-radius: 1.5rem;
  padding: 1.2rem 2rem;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 8px 20px rgba(192,24,24,.3),
    inset 0 1px 0 rgba(255,255,255,.2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Button shine effect */
.form-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.3),
    transparent
  );
  transition: left 0.6s ease;
}

.form-submit:hover::before {
  left: 100%;
}

/* Button glow */
.form-submit::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.form-submit:hover::after {
  width: 300px;
  height: 300px;
  opacity: 0;
}

.form-submit:hover:not(:disabled) {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 20px 50px rgba(192,24,24,.5),
    0 0 30px rgba(192,24,24,.3),
    inset 0 1px 0 rgba(255,255,255,.3);
}

.form-submit:active:not(:disabled) {
  transform: translateY(-1px) scale(0.98);
}

.form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  filter: grayscale(50%);
}

/* Button text */
.btn-text,
.btn-loading {
  position: relative;
  z-index: 1;
}

.btn-loading {
  display: none;
}

.btn-loading::after {
  content: '...';
  animation: loading-dots 1.5s infinite;
}

@keyframes loading-dots {
  0%, 20% { content: '.'; }
  40% { content: '..'; }
  60%, 100% { content: '...'; }
}

/* Success/Error messages with animation */
.form-message {
  margin-top: 1.5rem;
  padding: 1.2rem 1.5rem;
  border-radius: 1rem;
  font-size: 0.95rem;
  text-align: center;
  display: none;
  animation: message-slide-in 0.4s ease forwards;
  position: relative;
  overflow: hidden;
}

@keyframes message-slide-in {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Success message with celebration effect */
.form-message.success {
  background: linear-gradient(135deg, rgba(34,197,94,.15), rgba(34,197,94,.08));
  border: 1px solid rgba(34,197,94,.4);
  color: #22c55e;
  display: block;
  box-shadow: 0 8px 20px rgba(34,197,94,.2);
}

.form-message.success::before {
  content: '✓';
  position: absolute;
  left: 15px;
  font-size: 1.5rem;
  animation: success-pop 0.6s ease;
}

@keyframes success-pop {
  0% { transform: scale(0) rotate(0deg); }
  50% { transform: scale(1.2) rotate(180deg); }
  100% { transform: scale(1) rotate(360deg); }
}

/* Error message with shake effect */
.form-message.error {
  background: linear-gradient(135deg, rgba(239,68,68,.15), rgba(239,68,68,.08));
  border: 1px solid rgba(239,68,68,.4);
  color: #ef4444;
  display: block;
  box-shadow: 0 8px 20px rgba(239,68,68,.2);
  animation: error-shake 0.5s ease;
}

@keyframes error-shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-10px); }
  75% { transform: translateX(10px); }
}

.form-message.error::before {
  content: '✕';
  position: absolute;
  left: 15px;
  font-size: 1.5rem;
  animation: error-pulse 0.6s ease;
}

@keyframes error-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Floating label effect (optional enhancement) */
.form-group.floating-label {
  position: relative;
}

.form-group.floating-label label {
  position: absolute;
  top: 1rem;
  left: 1.3rem;
  padding: 0 0.5rem;
  background: rgba(11,11,11,.8);
  transition: all 0.3s ease;
  pointer-events: none;
}

.form-group.floating-label input:focus ~ label,
.form-group.floating-label input:not(:placeholder-shown) ~ label,
.form-group.floating-label textarea:focus ~ label,
.form-group.floating-label textarea:not(:placeholder-shown) ~ label {
  top: -0.6rem;
  left: 1rem;
  font-size: 0.75rem;
  color: #c01818;
}

/* Mystical particles in form */
@keyframes particle-float {
  0%, 100% { 
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.3;
  }
  25% { 
    transform: translateY(-20px) translateX(10px) scale(1.1);
    opacity: 0.6;
  }
  50% { 
    transform: translateY(-35px) translateX(-5px) scale(0.9);
    opacity: 0.4;
  }
  75% { 
    transform: translateY(-15px) translateX(15px) scale(1.2);
    opacity: 0.7;
  }
}

/* Add particle elements via JavaScript or pseudo-elements */
.contact-form::before {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: #c01818;
  border-radius: 50%;
  top: 20%;
  left: 10%;
  animation: particle-float 8s ease-in-out infinite;
  box-shadow: 
    60px 40px 0 0 #c01818,
    120px 80px 0 0 rgba(192,24,24,.5),
    180px 30px 0 0 rgba(192,24,24,.7),
    240px 90px 0 0 rgba(192,24,24,.4);
  opacity: 0.3;
  pointer-events: none;
  z-index: -1;
}

/* Responsive enhancements */
@media (max-width: 768px) {
  .contact-form {
    padding: 2rem 1.5rem;
    border-radius: 1.5rem;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 0.9rem 1.1rem;
  }
  
  .form-submit {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}

/* Accessibility - Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .contact-form,
  .form-group input,
  .form-group textarea,
  .form-submit {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
  
  .contact-section::before,
  .contact-section::after,
  .contact-form::before {
    animation: none !important;
  }
}

/* ===== AUDIO TOGGLE ===== */
#audio-toggle{
  position:fixed;bottom:20px;right:20px;
  background:#c01818;color:#fff;border:none;
  border-radius:50%;width:50px;height:50px;
  cursor:pointer;z-index:999;
  box-shadow:0 4px 12px rgba(192,24,24,.4);
  transition:all .3s;font-size:1.5rem;
  display:flex;align-items:center;justify-content:center;
}
#audio-toggle:hover,
#audio-toggle:focus{
  transform:scale(1.1);
  box-shadow:0 6px 20px rgba(192,24,24,.6);
}
#audio-toggle[aria-pressed="true"]{
  background:#666;
}

/* ===== GLOW LINE ===== */
.glow-line{
  width:60px;height:3px;border-radius:3px;
  margin:1.5rem auto 0;
  background:linear-gradient(90deg,transparent,#c01818,transparent);
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
  nav{padding:.8rem 1.2rem}
  .nav-links{
    position:fixed;top:0;right:-100%;width:70vw;height:100vh;
    background:rgba(11,11,11,.97);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);
    flex-direction:column;justify-content:center;align-items:center;
    gap:2rem;transition:right .4s ease;
    border-left:1px solid #1a1a1a;
    padding:2rem;
  }
  .nav-links.open{right:0}
  .nav-toggle{display:block}
  .nav-toggle.open span:nth-child(1){
    transform:rotate(45deg) translate(5px,5px);
  }
  .nav-toggle.open span:nth-child(2){opacity:0}
  .nav-toggle.open span:nth-child(3){
    transform:rotate(-45deg) translate(5px,-5px);
  }

  .about-grid{grid-template-columns:1fr}
  .categories{grid-template-columns:1fr}
  .episode-link{
    grid-template-columns:auto 1fr;gap:1rem;
    padding:1.2rem 1rem;
  }
  .episode-meta-side{display:none}
  .mobile-meta{display:block}
  section{padding:4rem 1rem}
  .hero-content{padding:1rem}
  #audio-toggle{bottom:15px;right:15px;width:45px;height:45px}
}

@media(max-width:480px){
  .hero h1{font-size:2.8rem}
  .hero-buttons{flex-direction:column;align-items:stretch}
  .btn{justify-content:center}
  .contact-form{padding:1.5rem}
}