:root {
  --gold: #fbbf24;
  --gold-glow: rgba(251, 191, 36, 0.45);
  --marigold: #f59e0b;
  --marigold-dark: #d97706;
  --rani-pink: #ec4899;
  --rani-glow: rgba(236, 72, 153, 0.4);
  --deep-wine: #4a044e;
  --peacock-teal: #06b6d4;
  --emerald: #10b981;
  --bg-dark: #090212;
  --card-bg: rgba(23, 8, 40, 0.85);
  --card-border: rgba(251, 191, 36, 0.35);
  --input-bg: rgba(38, 14, 66, 0.7);
  --input-border: rgba(251, 191, 36, 0.28);
  --text-light: #fef08a;
  --text-white: #ffffff;
  --text-muted: #d8b4fe;
  --radius-lg: 24px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow-festive: 0 15px 35px -5px rgba(0, 0, 0, 0.75), 0 0 25px rgba(251, 191, 36, 0.18);
  --transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-dark);
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(236, 72, 153, 0.2) 0%, transparent 45%),
    radial-gradient(circle at 85% 85%, rgba(6, 182, 212, 0.16) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.12) 0%, transparent 60%),
    linear-gradient(160deg, #090212 0%, #17072a 40%, #290840 75%, #3d053f 100%);
  background-attachment: fixed;
  min-height: 100vh;
  color: var(--text-white);
  padding: 24px 14px 60px;
  line-height: 1.5;
  position: relative;
  overflow-x: hidden;
}

/* Festive Toran Garland Top Ribbon */
.festive-toran {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 14px;
  background: repeating-linear-gradient(
    90deg,
    var(--marigold) 0px,
    var(--marigold) 18px,
    var(--rani-pink) 18px,
    var(--rani-pink) 36px,
    var(--emerald) 36px,
    var(--emerald) 54px,
    var(--gold) 54px,
    var(--gold) 72px
  );
  box-shadow: 0 4px 15px var(--gold-glow);
  z-index: 10;
}

/* Main Mobile Page Container */
.page-wrapper {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* 3D WebGL Background Canvas */
#canvas-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
}

/* ===================================================
   FLOATING MUSIC PLAYER WIDGET
   =================================================== */
.music-widget-wrapper {
  position: fixed;
  bottom: 20px;
  right: 18px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.music-prompt-bubble {
  background: linear-gradient(135deg, var(--rani-pink), var(--marigold));
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 7px 13px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  animation: bounceSlow 2s infinite ease-in-out;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

@keyframes bounceSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.music-toggle-btn {
  background: rgba(23, 8, 40, 0.92);
  border: 1.8px solid var(--gold);
  border-radius: 30px;
  padding: 9px 16px;
  color: var(--gold);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6), 0 0 14px var(--gold-glow);
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.music-toggle-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.8), 0 0 20px var(--gold-glow);
}

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

.eq-bar {
  width: 3px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  transition: height 0.15s ease;
}

.eq-bar.animating:nth-child(1) { animation: eqPulse 0.55s infinite ease-in-out; }
.eq-bar.animating:nth-child(2) { animation: eqPulse 0.4s infinite ease-in-out 0.15s; }
.eq-bar.animating:nth-child(3) { animation: eqPulse 0.48s infinite ease-in-out 0.3s; }
.eq-bar.animating:nth-child(4) { animation: eqPulse 0.65s infinite ease-in-out 0.1s; }

@keyframes eqPulse {
  0%, 100% { height: 4px; }
  50% { height: 15px; }
}

/* ===================================================
   MAIN REGISTRATION FORM CARD (Stitch Royal Shubh Design)
   =================================================== */
.form-container {
  background: rgba(22, 8, 38, 0.8);
  border: 1.5px solid rgba(251, 191, 36, 0.32);
  border-radius: 28px;
  box-shadow: 
    0 25px 60px -10px rgba(0, 0, 0, 0.85),
    0 0 35px rgba(251, 191, 36, 0.16),
    inset 0 1px 1px rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 34px 22px;
  position: relative;
  overflow: hidden;
}

.form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--rani-pink), var(--gold), transparent);
}

/* Header */
.form-header {
  text-align: center;
  margin-bottom: 24px;
}

.festival-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.35);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 12px;
  backdrop-filter: blur(10px);
}

.festival-title {
  font-family: 'Playfair Display', 'Cinzel Decorative', serif;
  font-size: 2.15rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #fffbeb 0%, var(--gold) 45%, #f59e0b 70%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
  filter: drop-shadow(0 2px 14px rgba(251, 191, 36, 0.38));
  line-height: 1.18;
}

.form-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.form-tagline::before, .form-tagline::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.7));
}

.form-tagline::after {
  background: linear-gradient(90deg, rgba(251, 191, 36, 0.7), transparent);
}

.festival-description {
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Form Sections */
.form-section {
  background: rgba(30, 12, 50, 0.58);
  border: 1px solid rgba(251, 191, 36, 0.22);
  border-radius: 18px;
  padding: 20px 18px;
  margin-bottom: 22px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  transition: var(--transition);
}

.form-section:hover {
  border-color: rgba(251, 191, 36, 0.38);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.38), 0 0 15px rgba(251, 191, 36, 0.08);
}

.section-title {
  font-family: 'Playfair Display', 'Plus Jakarta Sans', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(251, 191, 36, 0.18);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.02em;
}

/* Alert Box */
.alert-box {
  padding: 12px 14px;
  border-radius: var(--radius-md);
  font-size: 0.86rem;
  margin-bottom: 18px;
  line-height: 1.4;
}

.alert-error {
  background: rgba(220, 38, 38, 0.25);
  border: 1px solid rgba(239, 68, 68, 0.5);
  color: #fca5a5;
}

.alert-warning {
  background: rgba(245, 158, 11, 0.25);
  border: 1px solid rgba(245, 158, 11, 0.5);
  color: #fde68a;
}

/* Form Groups & Inputs */
.form-group {
  margin-bottom: 16px;
}

.form-group:last-child {
  margin-bottom: 0;
}

.label-with-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 7px;
}

.form-group label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 7px;
  display: block;
}

.text-toggle-btn {
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
}

.text-toggle-btn:hover {
  background: rgba(251, 191, 36, 0.3);
}

.required {
  color: var(--rani-pink);
  margin-left: 2px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(36, 17, 60, 0.85);
  border: 1.5px solid rgba(251, 191, 36, 0.25);
  border-radius: 12px;
  transition: all 0.25s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.input-icon {
  position: absolute;
  left: 14px;
  color: var(--gold);
  pointer-events: none;
  opacity: 0.9;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.98rem;
  padding: 13px 14px 13px 44px;
  background: transparent;
  border: none;
  color: var(--text-white);
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
  color: rgba(216, 180, 254, 0.45);
}

.input-wrapper:focus-within {
  border-color: var(--gold);
  background: rgba(46, 20, 78, 0.95);
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.22), 0 4px 18px rgba(251, 191, 36, 0.15);
}

/* Choice Cards (City selection) */
.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.choice-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 14px;
  background: rgba(36, 17, 60, 0.7);
  border: 1.5px solid rgba(251, 191, 36, 0.25);
  border-radius: 14px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
}

.choice-card input[type="radio"] {
  display: none;
}

.choice-card.selected {
  border-color: var(--gold);
  background: rgba(245, 158, 11, 0.22);
  color: var(--text-white);
  box-shadow: 0 0 12px var(--gold-glow);
}

/* Ticket Count Selector Grid (1, 2, 3, 4, 5, 5+) */
.ticket-numbers-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.ticket-num-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  background: var(--input-bg);
  border: 1.5px solid var(--input-border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}

.ticket-num-btn input[type="radio"] {
  display: none;
}

.ticket-num-btn:hover {
  border-color: var(--gold);
  background: rgba(48, 16, 82, 0.9);
}

.ticket-num-btn.selected {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--gold), var(--marigold));
  color: #1a052e;
  box-shadow: 0 0 12px var(--gold-glow);
  transform: scale(1.05);
}

/* Ticket Type Cards (Regular ₹399 / Couple ₹699) */
.ticket-types-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ticket-type-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: var(--input-bg);
  border: 1.8px solid var(--input-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
}

.ticket-type-card input[type="radio"] {
  display: none;
}

.ticket-type-card .type-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ticket-type-card .type-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
}

.ticket-type-card .type-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.ticket-type-card .type-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold);
}

.ticket-type-card.selected {
  border-color: var(--gold);
  background: rgba(245, 158, 11, 0.2);
  box-shadow: 0 0 14px var(--gold-glow);
}

.ticket-type-card.selected .type-price {
  color: #ffffff;
  background: linear-gradient(135deg, var(--gold), #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Price Summary Box */
.price-summary-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  margin-top: 12px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px dashed var(--gold);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-light);
}

.price-summary-box .total-amount {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold);
  text-shadow: 0 0 12px var(--gold-glow);
}

/* Event Date / Location Cards */
.date-choice-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.date-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 16px;
  background: var(--input-bg);
  border: 1.5px solid var(--input-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
}

.date-card input[type="radio"] {
  display: none;
}

.date-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.date-city {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--text-white);
}

.date-day {
  font-size: 0.82rem;
  color: var(--gold);
}

.date-badge {
  font-size: 0.74rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  background: rgba(251, 191, 36, 0.15);
  color: var(--text-light);
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.date-card.selected {
  border-color: var(--gold);
  background: rgba(245, 158, 11, 0.22);
  box-shadow: 0 0 12px var(--gold-glow);
}

.date-card.selected .date-badge {
  background: var(--gold);
  color: #1a052e;
}

/* Payment & QR Section */
.payment-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.payment-amount-banner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.25), rgba(236, 72, 153, 0.25));
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light);
}

.payment-amount-banner .pay-amount {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  text-shadow: 0 0 12px var(--gold-glow);
}

.payment-instructions {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 4px 0 6px;
  text-align: center;
}

.payment-qr-frame {
  background: #ffffff;
  padding: 14px;
  border-radius: 18px;
  border: 3px solid var(--gold);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), 0 0 20px var(--gold-glow);
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 280px;
  width: 100%;
  margin: 0 auto;
}

.payment-qr-img {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 10px;
  display: block;
}

.qr-payee-info {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
}

.qr-payee-info strong {
  font-size: 0.95rem;
  color: #5b21b6;
}

.qr-payee-info span {
  font-size: 0.82rem;
  font-weight: 600;
  color: #475569;
}

.upi-actions {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 4px;
}

.btn-upi-action {
  background: rgba(251, 191, 36, 0.18);
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-upi-action:hover {
  background: rgba(251, 191, 36, 0.3);
  transform: translateY(-1px);
}

/* Safety Guidelines Box */
.safety-box {
  background: rgba(13, 3, 23, 0.8);
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 14px;
}

.safety-header {
  font-size: 0.85rem;
  font-weight: 800;
  color: #fca5a5;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.safety-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.82rem;
  color: #e2e8f0;
  line-height: 1.4;
}

.safety-list li {
  position: relative;
  padding-left: 18px;
}

.safety-list li::before {
  content: '•';
  position: absolute;
  left: 4px;
  color: var(--gold);
  font-size: 1.1rem;
}

/* Declaration Checkbox */
.declaration-wrapper {
  padding: 12px 14px;
  background: rgba(38, 14, 66, 0.65);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-md);
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-white);
  line-height: 1.45;
}

.checkbox-container input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
}

/* Submit Button (Stitch Royal Shubh Design) */
.festive-submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  font-family: 'Playfair Display', 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #1a052e;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 35px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.45), 0 0 20px rgba(251, 191, 36, 0.3);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 56px;
  margin-top: 14px;
}

.festive-submit-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #fde047 0%, #fbbf24 50%, #f59e0b 100%);
  box-shadow: 0 14px 40px rgba(245, 158, 11, 0.65), 0 0 30px rgba(251, 191, 36, 0.5);
}

.festive-submit-btn:active {
  transform: translateY(1px);
}

.festive-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Spinner */
.spinner {
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(26, 5, 46, 0.3);
  border-top-color: #1a052e;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* Success Celebration Screen */
.celebration-screen {
  text-align: center;
  padding: 12px 0;
}

.celebration-icon {
  width: 76px;
  height: 76px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.3), rgba(236, 72, 153, 0.3));
  border: 2px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 0 25px var(--gold-glow);
}

.celebration-screen h2 {
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fffbeb, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.celebration-screen p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 20px;
}

/* Digital Entry Pass Card */
.digital-pass-card {
  background: linear-gradient(135deg, rgba(38, 14, 66, 0.95), rgba(18, 5, 33, 0.95));
  border: 1.5px dashed var(--gold);
  border-radius: var(--radius-md);
  padding: 18px;
  margin-bottom: 22px;
  text-align: left;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.pass-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(251, 191, 36, 0.2);
  padding-bottom: 8px;
  margin-bottom: 12px;
}

.pass-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
}

.pass-id {
  font-size: 0.78rem;
  color: var(--rani-pink);
  font-family: monospace;
}

.pass-details-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  margin-bottom: 8px;
}

.pass-label {
  color: var(--text-muted);
}

.pass-value {
  color: var(--text-white);
  font-weight: 600;
}

.btn-reset {
  background: rgba(251, 191, 36, 0.15);
  color: var(--gold);
  border: 1.5px solid var(--gold);
  padding: 12px 22px;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-reset:hover {
  background: rgba(251, 191, 36, 0.25);
}

/* Footer */
.form-footer {
  text-align: center;
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hidden {
  display: none !important;
}

/* Fullscreen Confetti Canvas */
#confetti-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 100;
}

/* Mobile Responsiveness (Smartphones <= 480px) */
@media (max-width: 480px) {
  body {
    padding: 14px 10px 85px;
  }
  .page-wrapper {
    gap: 14px;
  }
  .form-container {
    padding: 24px 16px;
  }
  .festival-title {
    font-size: 1.65rem;
  }
  .choice-grid {
    grid-template-columns: 1fr;
  }
  .music-widget-wrapper {
    bottom: 14px;
    right: 14px;
  }
}
