/* ─── RESET & VARS ─────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg:         #080b0f;
      --surface:    #0f1318;
      --surface2:   #161c24;
      --border:     #1f2937;
      --gold:       #c9a84c;
      --gold-light: #e8c870;
      --gold-dim:   rgba(201,168,76,0.12);
      --green:      #22c55e;
      --red:        #ef4444;
      --text:       #eeeae3;
      --muted:      #64748b;
      --muted2:     #94a3b8;
      --radius:     6px;
      --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'DM Sans', sans-serif;
      min-height: 100vh;
      overflow-x: hidden;
    }

    /* Noise texture overlay */
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9999;
    }

    /* Background circles */
    .bg-glow {
      position: fixed;
      border-radius: 50%;
      filter: blur(100px);
      pointer-events: none;
      z-index: 0;
    }
    .bg-glow-1 { width: 600px; height: 600px; background: rgba(201,168,76,0.055); top: -200px; right: -150px; }
    .bg-glow-2 { width: 500px; height: 500px; background: rgba(34,197,94,0.035); bottom: -150px; left: -150px; }

    /* ─── PROGRESS BAR ─────────────────────────────────────────────── */
    #progress-bar {
      position: fixed;
      top: 0; left: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
      box-shadow: 0 0 14px rgba(201,168,76,0.7);
      transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
      z-index: 1000;
    }

    /* ─── HEADER ───────────────────────────────────────────────────── */
    .site-header {
      position: fixed;
      top: 0; left: 0; right: 0;
      padding: 18px 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: linear-gradient(to bottom, rgba(8,11,15,0.97) 0%, transparent 100%);
      z-index: 500;
    }

    .site-logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 17px;
      letter-spacing: 4px;
      color: var(--gold);
      text-decoration: none;
    }

    .site-logo span { color: var(--muted2); font-size: 12px; display: block; letter-spacing: 2px; font-family: 'DM Sans', sans-serif; font-weight: 300; }

    .step-indicator {
      font-size: 11px;
      letter-spacing: 2px;
      color: var(--muted);
      text-transform: uppercase;
    }

    /* ─── STEP DOTS ────────────────────────────────────────────────── */
    .step-dots {
      display: flex;
      gap: 8px;
      align-items: center;
    }

    .step-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--border);
      transition: var(--transition);
    }

    .step-dot.done  { background: var(--gold); box-shadow: 0 0 8px rgba(201,168,76,0.5); }
    .step-dot.active { background: var(--gold-light); transform: scale(1.4); box-shadow: 0 0 10px rgba(201,168,76,0.6); }

    /* ─── MAIN WRAPPER ─────────────────────────────────────────────── */
    .form-outer {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 110px 20px 80px;
      position: relative;
      z-index: 1;
    }

    /* ─── STEPS ────────────────────────────────────────────────────── */
    .step-section {
      display: none;
      max-width: 640px;
      width: 100%;
    }

    .step-section.active {
      display: block;
      animation: stepIn 0.45s cubic-bezier(0.4,0,0.2,1);
    }

    @keyframes stepIn {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ─── STEP LABEL ───────────────────────────────────────────────── */
    .step-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 600;
      margin-bottom: 14px;
    }

    .step-badge::before {
      content: '';
      display: inline-block;
      width: 20px; height: 1px;
      background: var(--gold);
    }

    /* ─── HEADINGS ─────────────────────────────────────────────────── */
    .step-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(40px, 8vw, 68px);
      line-height: 0.95;
      letter-spacing: 2px;
      margin-bottom: 10px;
    }

    .step-title .accent { color: var(--gold); }

    .step-sub {
      color: var(--muted2);
      font-size: 14px;
      line-height: 1.65;
      margin-bottom: 36px;
    }

    /* ─── FORM FIELDS ──────────────────────────────────────────────── */
    .field-group {
      margin-bottom: 20px;
    }

    .field-label {
      display: block;
      font-size: 10px;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 8px;
      font-weight: 600;
    }

    .field-label .req { color: var(--gold); margin-left: 2px; }

    .f-input, .f-select, .f-textarea {
      width: 100%;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 14px 18px;
      color: var(--text);
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      outline: none;
      transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
      -webkit-appearance: none;
    }

    .f-input:focus, .f-select:focus, .f-textarea:focus {
      border-color: var(--gold);
      background: var(--surface2);
      box-shadow: 0 0 0 4px var(--gold-dim);
    }

    .f-input::placeholder, .f-textarea::placeholder { color: var(--muted); }
    .f-select option { background: var(--surface); color: var(--text); }
    .f-textarea { resize: vertical; min-height: 100px; }

    /* Custom select arrow */
    .select-wrap { position: relative; }
    .select-wrap::after {
      content: '\f107';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      position: absolute;
      right: 16px; top: 50%; transform: translateY(-50%);
      color: var(--muted);
      pointer-events: none;
      font-size: 13px;
    }

    .field-hint {
      font-size: 11px;
      color: var(--muted);
      margin-top: 6px;
      line-height: 1.5;
    }

    .field-error {
      font-size: 11px;
      color: var(--red);
      margin-top: 5px;
      display: none;
    }
    .field-error.show { display: block; }

    /* ─── GRID LAYOUTS ─────────────────────────────────────────────── */
    .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }

    @media (max-width: 560px) {
      .grid-2 { grid-template-columns: 1fr; }
      .grid-3 { grid-template-columns: 1fr; }
    }

    /* ─── GENDER RADIO ─────────────────────────────────────────────── */
    .gender-group {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .gender-option {
      flex: 1;
      min-width: 100px;
    }

    .gender-option input[type="radio"] { display: none; }

    .gender-card {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 16px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: var(--surface);
      cursor: pointer;
      transition: var(--transition);
      font-size: 14px;
    }

    .gender-card i {
      font-size: 16px;
      color: var(--muted);
      transition: var(--transition);
    }

    .gender-option input[type="radio"]:checked + .gender-card {
      border-color: var(--gold);
      background: var(--gold-dim);
      box-shadow: 0 0 0 3px var(--gold-dim);
    }

    .gender-option input[type="radio"]:checked + .gender-card i { color: var(--gold); }

    /* ─── BUTTONS ──────────────────────────────────────────────────── */
    .btn-next {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--gold);
      color: #080b0f;
      border: none;
      border-radius: var(--radius);
      padding: 14px 28px;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 17px;
      letter-spacing: 2px;
      cursor: pointer;
      transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    }

    .btn-next:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(201,168,76,0.3);
    }

    .btn-next i { transition: transform 0.2s; }
    .btn-next:hover i { transform: translateX(4px); }

    .btn-back {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      border: 1px solid var(--border);
      color: var(--muted);
      border-radius: var(--radius);
      padding: 10px 18px;
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      cursor: pointer;
      transition: var(--transition);
      text-decoration: none;
    }

    .btn-back:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    .btn-submit {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--gold);
      color: #080b0f;
      border: none;
      border-radius: var(--radius);
      padding: 14px 28px;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 17px;
      letter-spacing: 2px;
      cursor: pointer;
      transition: var(--transition);
    }

    .btn-submit:hover { background: var(--gold-light); transform: translateY(-2px); }
    .btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

    .btn-row {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-top: 28px;
      flex-wrap: wrap;
    }

    .press-enter {
      font-size: 11px;
      color: var(--muted);
      margin-top: 10px;
      letter-spacing: 0.5px;
    }

    .press-enter kbd {
      background: var(--surface2);
      border: 1px solid var(--border);
      border-radius: 3px;
      padding: 1px 6px;
      font-size: 10px;
      color: var(--muted2);
    }

    /* ─── SPINNER ──────────────────────────────────────────────────── */
    .spinner {
      width: 18px; height: 18px;
      border: 2px solid rgba(8,11,15,0.3);
      border-top-color: #080b0f;
      border-radius: 50%;
      animation: spin 0.6s linear infinite;
      display: none;
    }
    @keyframes spin { to { transform: rotate(360deg); } }

    /* ─── SUCCESS ──────────────────────────────────────────────────── */
    #success-screen {
      display: none;
      max-width: 560px;
      width: 100%;
      text-align: center;
      animation: stepIn 0.6s ease;
    }

    .success-ring {
      width: 88px; height: 88px;
      border-radius: 50%;
      background: rgba(34,197,94,0.1);
      border: 2px solid var(--green);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 28px;
    }

    .success-ring i { font-size: 34px; color: var(--green); }

    .success-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 52px;
      letter-spacing: 3px;
      line-height: 1;
      margin-bottom: 16px;
    }

    .success-title .accent { color: var(--gold); }

    .success-body {
      color: var(--muted2);
      font-size: 15px;
      line-height: 1.8;
    }

    .success-name { color: var(--gold); font-weight: 600; }

    /* ─── DIVIDER ──────────────────────────────────────────────────── */
    .section-divider {
      border: none;
      border-top: 1px solid var(--border);
      margin: 24px 0;
    }

    /* ─── STEP 1 HERO ──────────────────────────────────────────────── */
    .hero-tagline {
      font-size: 12px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 20px;
    }

    .hero-event-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid var(--gold);
      border-radius: 100px;
      padding: 6px 16px;
      font-size: 11px;
      letter-spacing: 2px;
      color: var(--gold);
      margin-bottom: 20px;
    }

    .hero-event-badge span { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 1.5s infinite; }
    @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }

    /* Alert box */
    .info-box {
      background: var(--surface);
      border: 1px solid var(--border);
      border-left: 3px solid var(--gold);
      border-radius: var(--radius);
      padding: 14px 18px;
      font-size: 13px;
      color: var(--muted2);
      line-height: 1.6;
      margin-bottom: 28px;
    }

    /* ─── PB LABELS ────────────────────────────────────────────────── */
    .pb-item label { text-align: center; display: block; }

    /* ─── BOTTOM STRIP ─────────────────────────────────────────────── */
    .bottom-strip {
      position: fixed;
      bottom: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      opacity: 0.25;
      z-index: 500;
    }
    
    .header-logo{
      width: 48px;
      height: 48px;
      object-fit: contain;
      display: block;
    }