/* ==========================================
   DEVVADI KINGDOM — PUBLIC PORTAL STYLING
   Obsidian Black & Royal Gold Aesthetics
   ========================================== */

/* DESIGN SYSTEM CONSTANTS */
:root {
  --bg-obsidian: #080809;
  --bg-obsidian-deep: #030304;
  --gold-primary: #d4af37;
  --gold-secondary: #aa7c11;
  --gold-light: #f3e5ab;
  --gold-accent: #ffd700;
  --gold-gradient: linear-gradient(135deg, #d4af37 0%, #8a640f 50%, #aa7c11 100%);
  --text-platinum: #f1f1f4;
  --text-muted: #8e8e9c;
  --text-dark: #0f0f10;
  
  --glass-bg: rgba(12, 12, 15, 0.85);
  --glass-border: rgba(212, 175, 55, 0.12);
  --glass-border-hover: rgba(212, 175, 55, 0.35);
  --glow-gold: 0 0 30px rgba(212, 175, 55, 0.12);
  --glow-gold-intense: 0 0 40px rgba(212, 175, 55, 0.35);
  
  --font-display: 'Cinzel', serif;
  --font-display-deco: 'Cinzel Decorative', serif;
  --font-body: 'Montserrat', sans-serif;
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* BASE STRUCTURAL RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  background: 
    linear-gradient(rgba(8, 8, 9, 0.88) 0%, rgba(8, 8, 9, 0.70) 50%, rgba(8, 8, 9, 0.90) 100%),
    url('background.jpg') no-repeat center center fixed;
  background-size: cover;
  color: var(--text-platinum);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* BACKGROUND PRESTIGE GLOWS */
.ambient-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  pointer-events: none;
  background-image: 
    radial-gradient(circle at 50% 15%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 60%, rgba(170, 124, 17, 0.04) 0%, transparent 45%),
    radial-gradient(circle at 80% 85%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
  z-index: -2;
}

.stars-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(212, 175, 55, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.8;
  z-index: -1;
}

/* MAIN LAUNCHPAD CENTERED VIEWPORT */
.launchpad-container {
  width: 100%;
  max-width: 760px;
  padding: 60px 24px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  animation: fadeInUp 0.8s ease-out forwards;
}

/* BRAND HEADER (PRESTIGE LOGOS ROW) */
.brand-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.prestige-logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  width: 100%;
}

.prestige-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 130px;
}

.prestige-logo-frame {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.25);
  background: rgba(12, 12, 15, 0.95);
  box-shadow: 0 4px 15px rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: var(--transition-smooth);
}

/* Specific rectangular style for Vadi Labs to make it fit beautifully */
.prestige-logo-frame.labs-frame {
  width: 110px;
  border-radius: 8px;
}

.prestige-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.vadi-labs-small {
  object-fit: contain !important;
  padding: 8px;
}

.prestige-logo-item:hover .prestige-logo-frame {
  transform: translateY(-4px) scale(1.05);
  border-color: var(--gold-primary);
  box-shadow: 0 10px 25px rgba(0,0,0,0.7), 0 0 15px rgba(212, 175, 55, 0.25);
}

.prestige-logo-tag {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  text-align: center;
  transition: var(--transition-smooth);
}

.prestige-logo-item:hover .prestige-logo-tag {
  color: #fff;
}

.brand-name {
  font-family: var(--font-display); /* Sharp, clean Roman serif */
  font-size: clamp(22px, 4.5vw, 36px);
  font-weight: 700;
  letter-spacing: 0.35em; /* Deep, prestigious Roman letter-spacing! */
  color: #fff;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.25));
  margin-top: 16px;
  text-transform: uppercase;
}

/* MAIN LAUNCHPAD CARD */
.launchpad-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
  position: relative;
  transition: var(--transition-smooth);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.launchpad-card:hover {
  border-color: var(--glass-border-hover);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.9), var(--glow-gold);
}

.gold-border {
  border: 1px solid rgba(212, 175, 55, 0.18);
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top center, rgba(212, 175, 55, 0.04) 0%, transparent 60%);
  pointer-events: none;
  transition: var(--transition-smooth);
}

.launchpad-card:hover .card-glow {
  background: radial-gradient(circle at top center, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
}

/* ENOKH DEVVADI MUSA IMAGE FRAME */
.banner-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.launchpad-card:hover .banner-img {
  transform: scale(1.03);
}

.frame-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to top, rgba(12, 12, 15, 1) 0%, rgba(12, 12, 15, 0) 100%);
}

/* CARD BODY CONTENTS */
.card-body {
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.brand-slogan {
  font-size: 17px;
  font-style: italic;
  font-weight: 300;
  color: var(--text-platinum);
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.7;
}

/* EXECUTIVE BIO SECTION */
.bio-section {
  text-align: center;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(212, 175, 55, 0.08);
  border-radius: 10px;
  padding: 30px;
  box-shadow: inset 0 0 15px rgba(0,0,0,0.5);
  margin-bottom: 10px;
}

.bio-text {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--text-platinum);
  font-weight: 300;
  letter-spacing: 0.03em;
  text-align: justify;
  text-align-last: center;
}

/* COMMON SECTION TAGS */
.section-tag {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--gold-primary);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.section-tag::before,
.section-tag::after {
  content: '';
  height: 1px;
  width: 40px;
  background: rgba(212, 175, 55, 0.15);
}

/* SOUNDCLOUD SECTION */
.soundcloud-iframe-container {
  border: 1px solid rgba(212, 175, 55, 0.08);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  background: #000;
}

.soundcloud-iframe-container iframe {
  display: block;
}

/* COUNTDOWN TIMER SECTION */
.countdown-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 90px;
}

.countdown-num {
  font-family: monospace;
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.35);
  background: rgba(5, 5, 6, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.12);
  padding: 8px 16px;
  border-radius: 8px;
  min-width: 90px;
  text-align: center;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.8);
}

.countdown-label {
  font-family: var(--font-display);
  font-size: 8px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  font-weight: 700;
  margin-top: 10px;
}

/* SIGNUP SECTION */
.signup-section {
  text-align: center;
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  padding-top: 40px;
}

.signup-text {
  font-size: 13px;
  margin-bottom: 24px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 540px;
  margin: 0 auto;
}

.newsletter-form input {
  flex-grow: 1;
  background: rgba(5, 5, 6, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 4px;
  padding: 14px 18px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  transition: var(--transition-smooth);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--text-dark);
  border: 1px solid var(--gold-primary);
}

.btn-gold:hover {
  transform: translateY(-2px);
  background: var(--gold-light);
  box-shadow: var(--glow-gold-intense);
}

.btn-glow::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(45deg);
  transition: var(--transition-smooth);
  pointer-events: none;
}

.btn-gold:hover::after {
  animation: shine-effect 1.2s ease;
}

.success-message {
  display: none;
  color: var(--gold-light);
  font-size: 13px;
  margin-top: 16px;
  animation: fadeInUp 0.5s ease-out forwards;
}

/* FOOTER */
.launchpad-footer {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-logos-row {
  margin: 10px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
  padding: 24px 0;
  max-width: 500px;
  width: 100%;
}

.footer-quote {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
  font-style: italic;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 4px;
  background: rgba(12, 12, 15, 0.6);
  transition: var(--transition-smooth);
}

.social-link:hover {
  color: #fff;
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.03);
  box-shadow: var(--glow-gold);
}

.footer-credits {
  font-size: 11px;
  color: var(--text-muted);
}

.confidential-tag {
  font-size: 8px;
  letter-spacing: 0.2em;
  color: var(--gold-primary);
  opacity: 0.6;
  margin-top: 6px;
  font-weight: 700;
}

/* ==========================================
   ANIMATIONS & KEYFRAMES
   ========================================== */
@keyframes shine-effect {
  0% { left: -50%; }
  100% { left: 125%; }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ==========================================
   RESPONSIVE DESIGN ADAPTATIONS
   ========================================== */
@media (max-width: 600px) {
  .launchpad-container {
    padding: 30px 16px;
    gap: 30px;
  }
  .prestige-logos-row {
    gap: 12px;
  }
  .prestige-logo-item {
    width: 100px;
  }
  .prestige-logo-frame {
    width: 60px;
    height: 60px;
  }
  .prestige-logo-frame.labs-frame {
    width: 90px;
  }
  .prestige-logo-tag {
    font-size: 7px;
  }
  .card-body {
    padding: 30px 24px;
    gap: 30px;
  }
  .newsletter-form {
    flex-direction: column;
    gap: 10px;
  }
  .countdown-container {
    gap: 12px;
  }
  .countdown-item {
    min-width: 64px;
  }
  .countdown-num {
    min-width: 64px;
    padding: 6px 10px;
    font-size: 26px;
  }
}

/* ==========================================
   CINEMATIC TEASER SECTION
   ========================================== */
.cinematic-section {
  display: flex;
  flex-direction: column;
}

.cinematic-container {
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: #000;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), inset 0 0 40px rgba(0, 0, 0, 1);
  transition: var(--transition-smooth);
}

.cinematic-container:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 25px 60px rgba(212, 175, 55, 0.15), inset 0 0 50px rgba(0, 0, 0, 1);
}

.cinematic-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.video-mockup {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1; /* Match the gorgeous square poster visual perfectly */
  overflow: hidden;
  cursor: pointer;
}

.video-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 3s cubic-bezier(0.16, 1, 0.3, 1), filter 1s ease;
}

.video-mockup:hover .video-poster {
  transform: scale(1.02);
}

.video-mockup.playing .video-poster {
  transform: scale(1.04);
  filter: brightness(0.35) contrast(1.1) blur(2px);
}

/* PLAY BUTTON OVERLAY */
.play-button-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(0, 0, 0, 0.35);
  z-index: 5;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.play-icon-ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: rgba(8, 8, 9, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
  transition: var(--transition-smooth);
}

.play-icon-triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent var(--gold-primary);
  margin-left: 6px;
  transition: var(--transition-smooth);
}

.play-button-overlay:hover .play-icon-ring {
  transform: scale(1.08);
  border-color: var(--gold-primary);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.4), inset 0 0 15px rgba(212, 175, 55, 0.15);
}

.play-button-overlay:hover .play-icon-triangle {
  border-color: transparent transparent transparent #fff;
  transform: scale(1.05);
}

.play-btn-tag {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--gold-light);
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
  transition: var(--transition-smooth);
}

.play-button-overlay:hover .play-btn-tag {
  color: #fff;
  letter-spacing: 0.3em;
}

/* PLAYING STATE UI */
.video-playing-ui {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  opacity: 0;
  pointer-events: none;
  z-index: 4;
  background: radial-gradient(circle at center, transparent 20%, rgba(3, 3, 4, 0.85) 100%);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-mockup.playing .video-playing-ui {
  opacity: 1;
  pointer-events: auto;
}

/* CINEMATIC AUDIO WAVE ANIMATION */
.cinematic-audio-bar {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  height: 40px;
  width: 100%;
  margin-top: 20px;
}

.audio-wave {
  width: 3px;
  height: 8px;
  background: var(--gold-primary);
  border-radius: 20px;
  transition: height 0.15s ease-in-out;
}

.video-mockup.playing .audio-wave {
  animation: audioPulsing 0.6s ease-in-out infinite alternate;
}

/* Distribute anim delays for natural equalizer motion */
.video-mockup.playing .audio-wave:nth-child(2) { animation-delay: 0.08s; }
.video-mockup.playing .audio-wave:nth-child(3) { animation-delay: 0.16s; }
.video-mockup.playing .audio-wave:nth-child(4) { animation-delay: 0.24s; }
.video-mockup.playing .audio-wave:nth-child(5) { animation-delay: 0.32s; }
.video-mockup.playing .audio-wave:nth-child(6) { animation-delay: 0.4s; }
.video-mockup.playing .audio-wave:nth-child(7) { animation-delay: 0.48s; }
.video-mockup.playing .audio-wave:nth-child(8) { animation-delay: 0.56s; }
.video-mockup.playing .audio-wave:nth-child(9) { animation-delay: 0.12s; }
.video-mockup.playing .audio-wave:nth-child(10) { animation-delay: 0.22s; }
.video-mockup.playing .audio-wave:nth-child(11) { animation-delay: 0.32s; }
.video-mockup.playing .audio-wave:nth-child(12) { animation-delay: 0.42s; }

/* SUBTITLES */
.cinematic-subtitles {
  font-family: var(--font-display);
  font-size: clamp(10px, 2.2vw, 13px);
  color: var(--text-platinum);
  letter-spacing: 0.18em;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 0 4px 12px rgba(0,0,0,0.9);
  padding: 12px 24px;
  background: rgba(5, 5, 6, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 4px;
  width: fit-content;
  max-width: 90%;
  margin: 0 auto 30px auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  transition: opacity 0.3s ease;
}

/* CONTROLS */
.video-controls {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
}

.control-btn {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 6px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  user-select: none;
}

.timeline-slider {
  flex-grow: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.timeline-progress {
  width: 0%;
  height: 100%;
  background: var(--gold-gradient);
  box-shadow: 0 0 10px var(--gold-primary);
  transition: width 0.1s linear;
}

.time-stamp {
  font-size: 10px;
  font-family: monospace;
  color: var(--text-muted);
}

@keyframes audioPulsing {
  0% { height: 8px; }
  100% { height: 35px; }
}

/* FUTURISTIC TRANSMISSION GLITCH EFFECTS */
.video-poster.glitching {
  filter: brightness(2.5) contrast(3.5) hue-rotate(180deg) invert(1) saturate(2);
  animation: glitchFlutter 0.08s infinite alternate;
}

@keyframes glitchFlutter {
  0% { transform: scale(1.05) translate(4px, 2px) skewX(5deg); }
  50% { transform: scale(0.96) translate(-4px, -2px) skewY(3deg); }
  100% { transform: scale(1.03) translate(2px, -3px) skewX(-4deg); }
}

/* SOVEREIGN SENTINEL NODE LINK */
.sentinel-anchor-node {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999;
  background: rgba(12, 12, 15, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 8px 16px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-platinum);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  transition: var(--transition-smooth);
}

.sentinel-anchor-node:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.2), 0 0 10px rgba(212, 175, 55, 0.15);
  transform: translateY(-1px);
  color: #fff;
}

.sentinel-node-pulse {
  width: 6px;
  height: 6px;
  background-color: var(--gold-primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold-primary);
  animation: sentinelPulse 1.4s infinite;
}

/* SOVEREIGN PERSONAS NODE LINK */
.personas-anchor-node {
  position: fixed;
  top: 72px;
  right: 24px;
  z-index: 9999;
  background: rgba(12, 12, 15, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 8px 16px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-platinum);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  transition: var(--transition-smooth);
}

.personas-anchor-node:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.2), 0 0 10px rgba(212, 175, 55, 0.15);
  transform: translateY(-1px);
  color: #fff;
}

.personas-node-pulse {
  width: 6px;
  height: 6px;
  background-color: var(--gold-primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold-primary);
  animation: sentinelPulse 1.4s infinite;
}

@keyframes sentinelPulse {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6); }
  70% { box-shadow: 0 0 0 6px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* ==========================================
   WINNING TEAM BLASTOFF CONSOLE
   ========================================== */
.blastoff-console-section {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.blastoff-card {
  position: relative;
  background: rgba(10, 10, 12, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 12px;
  overflow: hidden;
  padding: 30px;
  box-shadow: inset 0 0 30px rgba(0,0,0,0.9);
}

.blastoff-card:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15), inset 0 0 30px rgba(0,0,0,0.9);
}

.console-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.console-title {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.15em;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

.console-desc {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--text-muted);
  text-align: center;
  font-weight: 300;
  max-width: 90%;
  margin: 0 auto;
}

/* BLASTOFF COUNTDOWN */
.blastoff-countdown-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(212, 175, 55, 0.08);
  border-radius: 8px;
  padding: 12px 20px;
  width: fit-content;
  margin: 0 auto;
}

.blastoff-countdown-label {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  font-weight: 700;
}

.blastoff-timer {
  font-family: monospace;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

/* ACTION ROW */
.blastoff-action-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  padding-top: 20px;
}

.blastoff-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.price-original {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 300;
}

.price-promo {
  font-size: 26px;
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: pricePulse 1.5s infinite alternate;
}

@keyframes pricePulse {
  0% { filter: drop-shadow(0 0 2px rgba(212,175,55,0.4)); }
  100% { filter: drop-shadow(0 0 12px rgba(212,175,55,0.8)); }
}

.blastoff-btn {
  flex-grow: 1;
  max-width: 250px;
}

/* TERMINAL READOUT */
.console-readout {
  display: none; /* Revealed on blast trigger */
  flex-direction: column;
  background: #020203;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.8);
  animation: slideDown 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.readout-header {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.02);
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.readout-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.readout-dot.green { background: #00ff66; box-shadow: 0 0 6px #00ff66; }
.readout-dot.yellow { background: #ffcc00; box-shadow: 0 0 6px #ffcc00; }
.readout-dot.red { background: #ff3333; box-shadow: 0 0 6px #ff3333; }

.readout-title {
  font-family: monospace;
  font-size: 8px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-left: 6px;
}

.readout-screen {
  font-family: monospace;
  font-size: 11px;
  color: #00ff66;
  padding: 16px;
  min-height: 80px;
  line-height: 1.6;
  white-space: pre-line;
  letter-spacing: 0.5px;
  text-shadow: 0 0 5px rgba(0,255,102,0.4);
}

/* INVOICE OVERLAY */
.invoice-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(3, 3, 4, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.invoice-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.invoice-box {
  background: rgba(12,12,15,0.98);
  max-width: 440px;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0,0,0,0.9);
  animation: scaleUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.invoice-title {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--gold-light);
  letter-spacing: 0.15em;
  text-shadow: 0 0 10px rgba(212,175,55,0.25);
}

.invoice-text {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

.invoice-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.invoice-detail-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255,255,255,0.015);
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: 6px;
  padding: 12px 18px;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.invoice-detail-item:hover {
  background: rgba(212,175,55,0.03);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
}

.detail-icon {
  font-size: 16px;
}

.detail-text {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.05em;
}

.btn-gold-outline {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 12px 24px;
}

.btn-gold-outline:hover {
  border-color: var(--gold-primary);
  color: #fff;
  background: rgba(212,175,55,0.03);
}

@keyframes slideDown {
  0% { opacity: 0; transform: translateY(-10px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes scaleUp {
  0% { opacity: 0; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1); }
}



