/* ==========================================================================
   THE BLACK PARADE - FRANCISCO LUIZ BIRTHDAY INVITATION
   Styles & Visual System (Rock & Pop Rock Theme) - Pure Vector & CSS Graphics
   ========================================================================== */

/* --- RESET & DESIGN TOKENS --- */
:root {
  --bg-obsidian: #08080a;
  --bg-card: rgba(18, 18, 22, 0.88);
  --bg-card-solid: #121217;
  --bg-input: #1a1a22;
  
  --neon-crimson: #ff003c;
  --neon-crimson-glow: rgba(255, 0, 60, 0.4);
  --neon-purple: #9d4edd;
  --neon-purple-glow: rgba(157, 78, 221, 0.35);
  --gold-accent: #ffb703;
  --text-primary: #f8f9fa;
  --text-secondary: #a0a0b0;
  --text-muted: #6c757d;
  
  --border-glass: rgba(255, 255, 255, 0.12);
  --border-neon: rgba(255, 0, 60, 0.5);
  
  --font-heading: 'Bebas Neue', sans-serif;
  --font-accent: 'Permanent Marker', cursive;
  --font-body: 'Outfit', 'Montserrat', sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  
  --shadow-rock: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px var(--neon-crimson-glow);
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body.dark-rock-theme {
  background-color: var(--bg-obsidian);
  color: var(--text-primary);
  font-family: var(--font-body);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* --- STAGE VECTOR BACKGROUND & LIGHTING --- */
.stage-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
  background: radial-gradient(circle at 50% 20%, #1c081e 0%, #08080a 70%);
  pointer-events: none;
}

.stage-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255, 0, 60, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 0, 60, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.4;
  mask-image: radial-gradient(circle at 50% 40%, black 30%, transparent 80%);
}

.spotlight {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  animation: pulse-spotlight 6s infinite alternate ease-in-out;
}

.spotlight-red {
  top: -50px;
  left: -50px;
  background: var(--neon-crimson);
}

.spotlight-purple {
  bottom: -50px;
  right: -50px;
  background: var(--neon-purple);
  animation-delay: -3s;
}

.spotlight-gold {
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold-accent);
  opacity: 0.15;
  width: 250px;
  height: 250px;
}

@keyframes pulse-spotlight {
  0% { transform: scale(1) translate(0, 0); opacity: 0.25; }
  100% { transform: scale(1.3) translate(30px, 30px); opacity: 0.45; }
}

.light-beam {
  position: absolute;
  top: -100px;
  width: 150px;
  height: 120vh;
  background: linear-gradient(180deg, rgba(255, 0, 60, 0.2) 0%, rgba(0, 0, 0, 0) 80%);
  transform-origin: top center;
  pointer-events: none;
}

.beam-1 {
  left: 20%;
  transform: rotate(-15deg);
  animation: rotate-beam-1 8s infinite alternate ease-in-out;
}

.beam-2 {
  right: 20%;
  transform: rotate(15deg);
  animation: rotate-beam-2 9s infinite alternate ease-in-out;
}

@keyframes rotate-beam-1 {
  0% { transform: rotate(-20deg); }
  100% { transform: rotate(-5deg); }
}

@keyframes rotate-beam-2 {
  0% { transform: rotate(20deg); }
  100% { transform: rotate(5deg); }
}

/* --- APP VIEWPORT (MOBILE FIRST CONTAINER) --- */
.app-viewport {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 480px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 15px 12px 25px 12px;
}

@media (min-width: 500px) {
  .app-viewport {
    padding: 25px 0;
  }
}

/* --- FLOATING AUDIO BAR --- */
.audio-bar {
  position: fixed;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 30px);
  max-width: 450px;
  z-index: 100;
  background: rgba(18, 18, 24, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-neon);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7), 0 0 15px var(--neon-crimson-glow);
  transition: var(--transition-smooth);
}

.audio-bar.hidden {
  opacity: 0;
  transform: translate(-50%, -30px);
  pointer-events: none;
}

.vinyl-mini-wrapper {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
  flex-shrink: 0;
  cursor: pointer;
}

.mini-vinyl-svg {
  width: 100%;
  height: 100%;
}

.spinning {
  animation: spin-vinyl 4s linear infinite;
}

@keyframes spin-vinyl {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.audio-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.track-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.track-artist {
  font-size: 0.72rem;
  color: var(--gold-accent);
}

.audio-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.equalizer-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 16px;
}

.equalizer-bars span {
  width: 3px;
  background: var(--neon-crimson);
  border-radius: 2px;
  height: 4px;
  transition: height 0.2s ease;
}

.equalizer-bars.playing span:nth-child(1) { animation: eq-anim 0.8s ease-in-out infinite alternate; }
.equalizer-bars.playing span:nth-child(2) { animation: eq-anim 0.6s ease-in-out infinite alternate 0.2s; }
.equalizer-bars.playing span:nth-child(3) { animation: eq-anim 0.9s ease-in-out infinite alternate 0.4s; }
.equalizer-bars.playing span:nth-child(4) { animation: eq-anim 0.7s ease-in-out infinite alternate 0.1s; }

@keyframes eq-anim {
  0% { height: 3px; }
  100% { height: 16px; background: var(--gold-accent); }
}

.btn-icon-audio {
  background: var(--neon-crimson);
  color: #fff;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 10px var(--neon-crimson-glow);
  transition: var(--transition-smooth);
}

.btn-icon-audio:hover {
  transform: scale(1.1);
}

/* --- WIZARD WRAPPER & STEPS --- */
.wizard-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
}

.wizard-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 50px;
  margin-bottom: 5px;
}

.brand-badge {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 2px;
  color: var(--neon-crimson);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-shadow: 0 0 10px var(--neon-crimson-glow);
}

.step-indicator {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 600;
  letter-spacing: 1px;
}

.progress-bar-container {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--neon-crimson) 0%, var(--gold-accent) 100%);
  border-radius: var(--radius-pill);
  transition: width 0.4s ease;
  box-shadow: 0 0 10px var(--neon-crimson-glow);
}

/* STEP CARD CONTAINER */
.wizard-step {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.wizard-step.hidden-step {
  display: none !important;
  opacity: 0;
  transform: translateY(20px);
}

.wizard-step.active-step {
  display: block !important;
  opacity: 1;
  transform: translateY(0);
  animation: fadeInCard 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes fadeInCard {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.step-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-rock);
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--neon-crimson), transparent);
}

/* --- STEP 1: WELCOME & VECTOR VINYL HERO --- */
.guest-welcome-header {
  text-align: center;
  margin-bottom: 20px;
}

.vip-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 0, 60, 0.15);
  border: 1px solid var(--border-neon);
  color: var(--neon-crimson);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.guest-greeting-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  line-height: 1.1;
  letter-spacing: 1.5px;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.highlight-neon-name {
  color: var(--gold-accent);
  text-shadow: 0 0 15px rgba(255, 183, 3, 0.6);
  font-family: var(--font-heading);
  font-size: 2.6rem;
  display: block;
  word-break: break-word;
}

.guest-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.vinyl-hero-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 25px 0;
}

.vinyl-record-wrap {
  position: relative;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: #000;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.9), 0 0 25px var(--neon-purple-glow);
  padding: 8px;
}

.vinyl-disc.vector-disc {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: repeating-radial-gradient(
    circle at center,
    #111 0px,
    #111 3px,
    #222 4px,
    #111 6px
  );
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  box-shadow: inset 0 0 15px rgba(0,0,0,0.9);
}

.vinyl-center-label.vector-label {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(255, 183, 3, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vinyl-center-svg {
  width: 100%;
  height: 100%;
}

.tonearm-arm {
  position: absolute;
  top: -15px;
  right: 5px;
  width: 60px;
  height: 90px;
  border-right: 4px solid #aaa;
  border-bottom: 4px solid #888;
  border-bottom-right-radius: 20px;
  transform-origin: top right;
  transform: rotate(-15deg);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.action-gate-box {
  text-align: center;
  margin-top: 15px;
}

.audio-notice {
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* --- BUTTONS SYSTEM --- */
.btn-rock-primary {
  background: linear-gradient(135deg, var(--neon-crimson) 0%, #b3002a 100%);
  color: #ffffff;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 1.5px;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 20px var(--neon-crimson-glow);
  transition: var(--transition-smooth);
  width: 100%;
}

.btn-rock-primary:hover, .btn-rock-primary:active {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px var(--neon-crimson-glow);
  background: linear-gradient(135deg, #ff1a4f 0%, var(--neon-crimson) 100%);
}

.pulse-btn {
  animation: pulseGlowBtn 2s infinite ease-in-out;
}

@keyframes pulseGlowBtn {
  0% { box-shadow: 0 0 0 0 rgba(255, 0, 60, 0.7); }
  70% { box-shadow: 0 0 0 16px rgba(255, 0, 60, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 0, 60, 0); }
}

.btn-rock-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 1px;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.btn-rock-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-rock-danger {
  background: rgba(255, 0, 60, 0.2);
  border: 1px solid var(--neon-crimson);
  color: #ff4d6d;
  font-family: var(--font-heading);
  font-size: 1rem;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.wizard-nav-buttons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.wizard-nav-buttons button {
  flex: 1;
}

/* --- STEP 2: EVENT DETAILS --- */
.event-header-banner {
  text-align: center;
  margin-bottom: 20px;
}

.event-subtitle-tag {
  font-size: 0.75rem;
  color: var(--gold-accent);
  font-weight: 700;
  letter-spacing: 2px;
}

.event-main-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--text-primary);
  letter-spacing: 2px;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
  margin-top: 4px;
}

.rock-divider {
  color: var(--neon-crimson);
  font-size: 0.9rem;
  margin-top: 6px;
}

.event-details-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.detail-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  transition: var(--transition-smooth);
}

.detail-box:hover {
  background: rgba(255, 0, 60, 0.06);
  border-color: var(--border-neon);
}

.detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 0, 60, 0.15);
  color: var(--neon-crimson);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.detail-content {
  display: flex;
  flex-direction: column;
}

.detail-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 1px;
}

.detail-value {
  font-size: 1.05rem;
  color: var(--text-primary);
  margin: 2px 0;
}

.detail-sub {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.personal-message-card {
  position: relative;
  background: linear-gradient(135deg, rgba(114, 9, 183, 0.2) 0%, rgba(255, 0, 60, 0.1) 100%);
  border: 1px solid rgba(157, 78, 221, 0.4);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  margin-bottom: 10px;
}

.message-quote-icon {
  color: var(--neon-purple);
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.personal-message-text {
  font-size: 0.88rem;
  font-style: italic;
  color: #e2e2ec;
  line-height: 1.5;
}

.message-signature {
  display: block;
  text-align: right;
  font-family: var(--font-accent);
  color: var(--gold-accent);
  font-size: 1.1rem;
  margin-top: 10px;
}

/* --- STEP 3: TICKETS & REAL QR CODE --- */
.step-heading {
  text-align: center;
  margin-bottom: 20px;
}

.step-badge {
  font-size: 0.7rem;
  color: var(--neon-crimson);
  font-weight: 800;
  letter-spacing: 2px;
}

.step-heading h2 {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  color: var(--text-primary);
  letter-spacing: 1.5px;
}

.step-heading p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

.ticket-stub-card {
  background: var(--bg-card-solid);
  border: 2px solid var(--border-neon);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  margin-bottom: 20px;
}

.ticket-top {
  background: linear-gradient(90deg, #ff003c 0%, #7209b7 100%);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ticket-event-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: #fff;
}

.ticket-type {
  font-size: 0.7rem;
  font-weight: 900;
  background: rgba(0, 0, 0, 0.4);
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 1px;
}

.ticket-divider-line {
  position: relative;
  height: 20px;
  background: var(--bg-card-solid);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ticket-divider-line .notch {
  width: 20px;
  height: 20px;
  background: var(--bg-obsidian);
  border-radius: 50%;
  position: absolute;
}

.ticket-divider-line .notch.left { left: -10px; }
.ticket-divider-line .notch.right { right: -10px; }

.ticket-divider-line .dash-line {
  width: 100%;
  border-bottom: 2px dashed rgba(255, 255, 255, 0.2);
  margin: 0 15px;
}

.ticket-body {
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.qr-container {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  padding: 8px;
  border: 2px solid var(--gold-accent);
  box-shadow: 0 0 18px rgba(255, 183, 3, 0.4);
  margin-bottom: 12px;
}

.qr-code-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qr-instruction {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.btn-ticket-action {
  background: rgba(255, 183, 3, 0.15);
  border: 1px solid var(--gold-accent);
  color: var(--gold-accent);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.btn-ticket-action:hover {
  background: var(--gold-accent);
  color: #000;
}

.ticket-footer {
  background: rgba(255, 255, 255, 0.03);
  padding: 10px;
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.venue-location-box {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn-maps-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  text-decoration: none;
  padding: 12px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.btn-maps-link:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold-accent);
}

.btn-instagram-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff;
  text-decoration: none;
  padding: 12px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

.btn-instagram-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225, 48, 108, 0.5);
}

/* --- STEP 4: RSVP FORM --- */
.rsvp-interactive-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.rsvp-options-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rsvp-option-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.rsvp-option-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-content {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.option-icon {
  font-size: 1.8rem;
}

.option-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 1px;
  display: block;
}

.option-desc {
  font-size: 0.78rem;
  color: var(--text-secondary);
  display: block;
  margin-top: 2px;
}

.radio-check-indicator {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: transparent;
  transition: var(--transition-smooth);
}

.rsvp-option-card:has(input:checked) {
  background: rgba(255, 0, 60, 0.1);
  border-color: var(--neon-crimson);
  box-shadow: 0 0 15px var(--neon-crimson-glow);
}

.rsvp-option-card.option-yes:has(input:checked) .radio-check-indicator {
  background: var(--neon-crimson);
  border-color: var(--neon-crimson);
  color: #fff;
}

.rsvp-option-card.option-no:has(input:checked) {
  background: rgba(108, 117, 125, 0.15);
  border-color: var(--text-muted);
  box-shadow: none;
}

.rsvp-option-card.option-no:has(input:checked) .radio-check-indicator {
  background: var(--text-muted);
  border-color: var(--text-muted);
  color: #fff;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.input-group label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.input-group input, .input-group textarea {
  background: var(--bg-input);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.input-group input:focus, .input-group textarea:focus {
  outline: none;
  border-color: var(--neon-crimson);
  box-shadow: 0 0 10px var(--neon-crimson-glow);
}

/* --- STEP 5: CONFIRMED GUESTS LIST --- */
.confirmed-success-header {
  text-align: center;
  margin-bottom: 20px;
}

.success-icon-badge {
  font-size: 3rem;
  color: #2ec4b6;
  text-shadow: 0 0 20px rgba(46, 196, 182, 0.5);
  margin-bottom: 10px;
}

.confirmed-success-header h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  letter-spacing: 1.5px;
  color: var(--text-primary);
}

.confirmed-success-header p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

.guest-list-wrapper {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
}

.list-header-bar {
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.count-badge {
  background: var(--neon-crimson);
  color: #fff;
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
}

.confirmed-guests-list {
  max-height: 250px;
  overflow-y: auto;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.guest-item-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.04);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold-accent);
}

.guest-item-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.guest-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-crimson), var(--neon-purple));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.guest-name-text {
  font-weight: 600;
  font-size: 0.9rem;
}

.guest-status-tag {
  font-size: 0.7rem;
  color: var(--gold-accent);
  background: rgba(255, 183, 3, 0.12);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  font-weight: 700;
}

.loading-state {
  text-align: center;
  padding: 20px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.event-reminder-box {
  background: rgba(255, 0, 60, 0.1);
  border: 1px dashed var(--neon-crimson);
  border-radius: var(--radius-md);
  padding: 12px;
  text-align: center;
  font-size: 0.85rem;
  margin-bottom: 15px;
}

/* --- FOOTER & BRANDING --- */
.wizard-footer {
  margin-top: auto;
  padding-top: 20px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.admin-quick-link {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 0.75rem;
  cursor: pointer;
  text-decoration: underline;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.admin-quick-link:hover {
  opacity: 1;
  color: var(--neon-crimson);
}

/* ==========================================================================
   ADMIN PANEL STYLES (/admin)
   ========================================================================== */
.admin-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.admin-wrapper.hidden {
  display: none !important;
}

.admin-auth-box {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-auth-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-rock);
}

.auth-icon {
  font-size: 3rem;
  color: var(--neon-crimson);
  margin-bottom: 12px;
}

.admin-auth-card h2 {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  letter-spacing: 1px;
}

.admin-auth-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.auth-error-msg {
  color: #ff4d6d;
  font-size: 0.8rem;
  margin-top: 10px;
}

.btn-link-simple {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-top: 18px;
  cursor: pointer;
}

/* ADMIN DASHBOARD */
.admin-dashboard {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-card);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
}

.admin-title-area h1 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  letter-spacing: 1px;
  color: var(--neon-crimson);
}

.admin-subtitle {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 450px) {
  .admin-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

.stat-total .stat-number { color: #fff; }
.stat-confirmed .stat-number { color: #2ec4b6; }
.stat-declined .stat-number { color: #ff4d6d; }
.stat-pending .stat-number { color: var(--gold-accent); }

.admin-section-box {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 20px;
}

.admin-section-box h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 1px;
  margin-bottom: 14px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

@media (max-width: 400px) {
  .form-row {
    flex-direction: column;
  }
}

.new-link-alert-box {
  background: rgba(46, 196, 182, 0.15);
  border: 1px solid #2ec4b6;
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 15px;
}

.alert-content {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.alert-icon {
  font-size: 1.8rem;
  color: #2ec4b6;
}

.generated-url-box {
  display: flex;
  gap: 8px;
  margin: 10px 0;
}

.generated-url-box input {
  flex: 1;
  background: #000;
  border: 1px solid var(--border-glass);
  color: var(--gold-accent);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
}

.btn-icon-action {
  background: var(--neon-crimson);
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.share-actions-row {
  margin-top: 10px;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-preset-audio {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  font-size: 0.75rem;
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  margin: 4px;
}

.btn-preset-audio:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.section-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.guests-table-wrapper {
  overflow-x: auto;
  margin-top: 12px;
}

.guests-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  text-align: left;
}

.guests-table th {
  background: rgba(255, 255, 255, 0.05);
  padding: 10px;
  color: var(--text-secondary);
  font-weight: 600;
}

.guests-table td {
  padding: 12px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.guests-table tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.table-btn-copy {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--text-primary);
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.75rem;
}

.table-btn-delete {
  background: rgba(255, 0, 60, 0.2);
  border: none;
  color: #ff4d6d;
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.75rem;
  margin-left: 4px;
}

.status-badge-confirmed {
  color: #2ec4b6;
  font-weight: 700;
}

.status-badge-declined {
  color: #ff4d6d;
  font-weight: 700;
}

.status-badge-pending {
  color: var(--gold-accent);
}

/* HELPER UTILITIES */
.width-100 { width: 100%; }
.margin-top-10 { margin-top: 10px; }
.margin-top-15 { margin-top: 15px; }
.hidden { display: none !important; }
