/* ============================================
   REDESIGN 2.0 — Theme: Deep Space
   Navy + Neon Cyan/Violet
   ============================================ */

:root {
    --bg-deep: #06070f;
    --bg-navy: #0d1128;
    --bg-violet: #1a1035;
    --accent-cyan: #00e5ff;
    --accent-cyan-dim: #00b8d4;
    --accent-violet: #b14aff;
    --accent-pink: #ff4d94;
    --accent-green: #4dffb0;
    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.12);
    --text-main: #f0f2ff;
    --text-dim: rgba(240, 242, 255, 0.6);
    --shadow-glow-cyan: 0 0 40px rgba(0, 229, 255, 0.25);
    --shadow-glow-violet: 0 0 40px rgba(177, 74, 255, 0.2);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-pill: 50px;
    --font: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg-deep);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
    line-height: 1.5;
}

/* ===== ANIMATED BACKGROUND ===== */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -3;
    background:
        radial-gradient(ellipse 80% 60% at 15% 10%, rgba(177, 74, 255, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse 70% 55% at 85% 20%, rgba(0, 229, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 90% 70% at 50% 100%, rgba(255, 77, 148, 0.10) 0%, transparent 60%),
        linear-gradient(160deg, var(--bg-deep) 0%, var(--bg-navy) 45%, var(--bg-violet) 100%);
    animation: bgDrift 20s ease-in-out infinite;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -2;
    background-image:
        radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 60% 70%, rgba(255,255,255,0.4) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 80% 15%, rgba(0,229,255,0.6) 0%, transparent 100%),
        radial-gradient(1px 1px at 35% 85%, rgba(177,74,255,0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 90% 55%, rgba(255,255,255,0.4) 0%, transparent 100%);
    animation: starTwinkle 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes bgDrift {
    0%, 100% { filter: hue-rotate(0deg) brightness(1); }
    50% { filter: hue-rotate(15deg) brightness(1.12); }
}
@keyframes starTwinkle {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.9; }
}

/* ===== BACKGROUND VIDEO & OVERLAY ===== */
.video-wrapper {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}
.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}
.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 7, 15, 0.75) 0%, rgba(13, 17, 40, 0.7) 50%, rgba(26, 16, 53, 0.8) 100%);
    z-index: 1;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ===== HEADER ===== */
.header {
    padding: 30px 0 10px;
    text-align: center;
    position: relative;
    z-index: 5;
    animation: fadeInDown 0.8s ease-out;
}
.logo {
    max-width: 300px;
    height: auto;
    display: inline-block;
    filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.3));
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 15px 34px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.3s ease, background 0.3s ease;
    border: 2px solid transparent;
    text-decoration: none;
    min-width: 130px;
    line-height: 1.2;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}
.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.5s ease;
}
.btn:hover::after { left: 120%; }

.btn-primary {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-cyan-dim) 45%, var(--accent-violet) 130%);
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 229, 255, 0.35), inset 0 1px 0 rgba(255,255,255,0.3);
    background-size: 150% 150%;
    background-position: 0% 50%;
}
.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 14px 40px rgba(0, 229, 255, 0.5), 0 0 30px rgba(177, 74, 255, 0.3), inset 0 1px 0 rgba(255,255,255,0.4);
    background-position: 100% 50%;
}
.btn-primary:active { transform: translateY(-1px) scale(0.99); }

.btn-outline {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--text-main);
    backdrop-filter: blur(8px);
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent-cyan);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 229, 255, 0.2);
}
.btn-block { width: 100%; display: block; }
.btn-full { width: 100%; max-width: 400px; margin: 0 auto; display: block; }

/* ===== MAIN & STEPS (index.html) ===== */
.main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0 40px;
    position: relative;
    z-index: 2;
}
.steps-container {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 450px;
}
.step {
    display: none;
    max-width: 720px;
    width: 95%;
    padding: 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(24px) saturate(1.3);
    -webkit-backdrop-filter: blur(24px) saturate(1.3);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), var(--shadow-glow-cyan);
    opacity: 0;
    transform: translateY(35px) scale(0.94);
    margin: 10px 0;
    position: relative;
}
.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), var(--accent-violet), transparent);
    border-radius: 2px;
    opacity: 0.8;
}
.step--active {
    display: block;
    animation: stepIn 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.step--done { display: none; }
@keyframes stepIn {
    0% { opacity: 0; transform: translateY(35px) scale(0.94); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.step-content { text-align: center; }
.step-image {
    margin-bottom: 24px;
    animation: fadeInScale 0.8s ease-out 0.2s both;
}
.img-responsive {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255,255,255,0.08);
}
@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
.step-text {
    font-size: 1.3rem;
    line-height: 1.65;
    margin-bottom: 28px;
    font-weight: 400;
    color: var(--text-main);
}
.step-title {
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #fff, var(--accent-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.step-title.success {
    background: linear-gradient(135deg, var(--accent-green), var(--accent-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: successPulse 2s ease-in-out infinite;
}
@keyframes successPulse {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(77, 255, 176, 0.3)); }
    50% { filter: drop-shadow(0 0 25px rgba(77, 255, 176, 0.6)); }
}
.step-header { margin-bottom: 20px; }
.step-number {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.15), rgba(177, 74, 255, 0.15));
    padding: 9px 26px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid rgba(0, 229, 255, 0.25);
    color: var(--accent-cyan);
    letter-spacing: 0.5px;
}
.step-number strong { color: #fff; }
.step-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-top: 8px;
}
.step-buttons .btn { flex: 1 1 150px; min-width: 110px; }

/* ===== STEP OPTIONS ===== */
.step-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 25px;
    list-style: none;
}
.step-option {
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
    text-align: center;
}
.step-option:hover { transform: translateY(-6px); }
.step-options--thumbs .step-option { flex: 1 1 30%; max-width: 190px; }
.step-options--thumbs .step-option__image {
    width: 100%;
    border-radius: var(--radius-md);
    border: 2px solid rgba(255,255,255,0.1);
    transition: border-color 0.3s, box-shadow 0.3s;
}
.step-options--thumbs .step-option:hover .step-option__image {
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.3);
}
.step-options--thumbs .step-option__desc {
    font-weight: 700;
    margin-top: 12px;
    font-size: 1.05rem;
    color: var(--text-main);
}
.step-option.selected .step-option__image,
.step-option--checked .step-option__image {
    border-color: var(--accent-green);
    box-shadow: 0 0 20px rgba(77, 255, 176, 0.5);
}
.step-options--checkbox .step-option {
    flex: 1 1 45%;
    max-width: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.04);
    padding: 12px;
    border-radius: var(--radius-md);
    border: 2px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease;
}
.step-options--checkbox .step-option:hover {
    border-color: var(--accent-cyan);
    background: rgba(0, 229, 255, 0.08);
    transform: translateY(-4px);
}
.step-options--checkbox .step-option.step-option--checked {
    border-color: var(--accent-green);
    background: rgba(77, 255, 176, 0.12);
    box-shadow: 0 0 20px rgba(77, 255, 176, 0.25);
}
.step-options--checkbox .step-option img {
    max-width: 85px;
    width: 100%;
    border-radius: 12px;
    margin-bottom: 10px;
}
.step-options--checkbox .step-option span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== PROGRESS BAR ===== */
.progress-bar {
    width: 100%;
    height: 16px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-pill);
    overflow: hidden;
    margin: 32px 0;
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.05);
}
.progress-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-cyan) 0%, var(--accent-green) 50%, var(--accent-violet) 100%);
    background-size: 200% 100%;
    border-radius: var(--radius-pill);
    animation: progressFill 7s cubic-bezier(0.4, 0, 0.2, 1) forwards, gradientMove 2s linear infinite;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.5), inset 0 1px 0 rgba(255,255,255,0.4);
}
@keyframes progressFill {
    0% { width: 0; }
    100% { width: 100%; }
}
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* ===== RULES BOX ===== */
.rules-box {
    text-align: left;
    max-width: 420px;
    margin: 28px auto 32px;
    background: rgba(255,255,255,0.03);
    padding: 24px 28px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.08);
}
.rules-head {
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: var(--accent-cyan);
}
.rules-list { list-style: none; }
.rules-list li {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
    font-size: 0.98rem;
}
.rules-list li:last-child { margin-bottom: 0; }
.rules-list li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-violet));
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
    margin-right: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 229, 255, 0.3);
}

/* ===== REGISTRATION PAGE ===== */
.registration-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    min-height: 85vh;
    position: relative;
    z-index: 2;
}
.reg-card {
    background: var(--glass-bg);
    backdrop-filter: blur(28px) saturate(1.3);
    -webkit-backdrop-filter: blur(28px) saturate(1.3);
    border-radius: var(--radius-lg);
    padding: 44px;
    max-width: 500px;
    width: 100%;
    border: 1px solid var(--glass-border);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), var(--shadow-glow-violet);
    animation: stepIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}
.reg-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), var(--accent-violet), transparent);
    border-radius: 2px;
}
.reg-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 34px;
    gap: 8px;
}
.progress-step {
    flex: 1;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-dim);
    position: relative;
    padding-bottom: 12px;
    transition: color 0.4s ease;
}
.progress-step::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}
.progress-step.active { color: var(--accent-cyan); }
.progress-step.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-violet));
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0, 229, 255, 0.5);
    animation: progressGrow 0.4s ease-out;
}
@keyframes progressGrow {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}
.reg-step {
    display: none;
    animation: stepIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reg-step.active { display: block; }
.reg-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 26px;
}
.age-badge {
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-violet));
    color: #fff;
    font-weight: 900;
    padding: 10px 14px;
    border-radius: 50%;
    font-size: 1.15rem;
    min-width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 6px 18px rgba(255, 77, 148, 0.4);
    flex-shrink: 0;
}
.reg-header h2 {
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.3;
}
.reg-header h2 small {
    font-size: 0.85rem;
    font-weight: 400;
    display: block;
    color: var(--text-dim);
    margin-top: 5px;
}
.highlight { color: var(--accent-green); font-weight: 700; }
.reg-body p {
    margin-bottom: 22px;
    font-size: 0.98rem;
    line-height: 1.55;
    color: var(--text-dim);
}

/* ===== FORM ELEMENTS ===== */
.form-group {
    margin-bottom: 22px;
    position: relative;
}
.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--text-main);
}
.form-group input,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border-radius: var(--radius-pill);
    border: 1.5px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.06);
    color: var(--text-main);
    font-size: 1rem;
    font-family: var(--font);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.form-group input:focus,
.form-group select:focus {
    border-color: var(--accent-cyan);
    background: rgba(0, 229, 255, 0.06);
    box-shadow: 0 0 22px rgba(0, 229, 255, 0.2), inset 0 1px 3px rgba(0, 229, 255, 0.08);
}
.form-group input::placeholder { color: rgba(240, 242, 255, 0.4); }

/* Select dropdown — FIX white option background */
.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2300e5ff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 44px;
    color-scheme: dark;
}
.form-group select option {
    background-color: #0d1128;
    color: #f0f2ff;
    padding: 12px;
}
.form-group select option:checked,
.form-group select option:hover {
    background-color: #1a1035;
    color: #00e5ff;
}

.required { color: var(--accent-pink); }

/* Password toggle */
.password-wrapper { position: relative; }
.password-toggle {
    position: absolute;
    right: 18px;
    top: calc(50% + 15px);
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-dim);
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.password-toggle:hover {
    color: var(--accent-cyan);
    transform: translateY(-50%) scale(1.2);
}
.password-wrapper input { padding-right: 52px; }

/* ===== PAYMENT PAGE ===== */
.payment-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
    position: relative;
    z-index: 2;
}
.payment-header {
    text-align: center;
    padding: 24px 0;
    animation: fadeInDown 0.8s ease-out;
}
.payment-header .logo { max-width: 220px; }
.payment-card {
    background: var(--glass-bg);
    backdrop-filter: blur(28px) saturate(1.3);
    -webkit-backdrop-filter: blur(28px) saturate(1.3);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), var(--shadow-glow-cyan);
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    animation: stepIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.payment-form-col { flex: 1 1 460px; padding: 44px; }
.payment-benefits-col {
    flex: 1 1 300px;
    background: linear-gradient(160deg, rgba(0, 229, 255, 0.06), rgba(177, 74, 255, 0.08));
    padding: 44px;
    border-left: 1px solid rgba(255,255,255,0.08);
}
.form-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.form-header h3 {
    font-size: 1.35rem;
    font-weight: 700;
    flex: 1 1 100%;
    order: 2;
    margin-top: 8px;
}
.form-header .price {
    color: var(--accent-green);
    font-size: 1rem;
    font-weight: 600;
    flex: 1 1 100%;
    order: 3;
}
.form-header .age-badge { order: 1; }
.payment-form-col .row {
    display: flex;
    gap: 16px;
    margin-bottom: 0;
}
.payment-form-col .row .form-group,
.payment-form-col .row .col { flex: 1; }
.expiry-group { display: flex; gap: 10px; }
.expiry-group select { flex: 1; min-width: 0; }
.payment-form-col .form-footer { margin-top: 28px; }
.payment-form-col .terms {
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--text-dim);
    text-align: center;
    line-height: 1.6;
}
.payment-form-col .terms a {
    color: var(--accent-cyan);
    text-decoration: none;
}
.payment-form-col .terms a:hover { text-decoration: underline; }
.benefits-card h4 {
    font-size: 1.25rem;
    margin-bottom: 22px;
    color: #fff;
}
.benefits-card ul { list-style: none; margin-bottom: 32px; }
.benefits-card ul li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.95rem;
    color: var(--text-main);
    transition: padding-left 0.3s ease, color 0.3s ease;
}
.benefits-card ul li:hover {
    padding-left: 8px;
    color: var(--accent-cyan);
}
.benefits-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.icon-item { text-align: center; flex: 1; }
.icon-item img {
    height: 52px;
    width: 52px;
    margin-bottom: 12px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.icon-item:hover img {
    transform: translateY(-4px) scale(1.1);
    filter: drop-shadow(0 0 15px rgba(77, 255, 176, 0.5));
}
.icon-item h5 { font-size: 0.92rem; font-weight: 700; }
.icon-item p { font-size: 0.75rem; color: var(--text-dim); margin-top: 2px; }

/* ===== FREEZE PANE ===== */
#FreezePane {
    position: fixed;
    inset: 0;
    background: rgba(6, 7, 15, 0.96);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 9999;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
#FreezePane.show { display: flex; animation: fadeIn 0.3s ease-out; }
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
#FreezePane .spinner {
    width: 64px;
    height: 64px;
    border: 4px solid rgba(255,255,255,0.1);
    border-top: 4px solid var(--accent-cyan);
    border-right: 4px solid var(--accent-violet);
    border-radius: 50%;
    animation: spin 1s cubic-bezier(0.5, 0.1, 0.5, 0.9) infinite, glowPulse 2s ease-in-out infinite;
    margin-bottom: 32px;
}
@keyframes spin { 100% { transform: rotate(360deg); } }
@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 25px rgba(0, 229, 255, 0.4), 0 0 50px rgba(177, 74, 255, 0.15); }
    50% { box-shadow: 0 0 40px rgba(0, 229, 255, 0.7), 0 0 70px rgba(177, 74, 255, 0.35); }
}
#FreezePane .msg {
    font-size: 1.25rem;
    text-align: center;
    color: var(--text-main);
    line-height: 1.8;
    animation: fadeIn 0.6s ease-out 0.2s both;
    padding: 0 20px;
}

/* ===== PARTICLES ===== */
#particles-js {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .payment-card { flex-direction: column; }
    .payment-benefits-col {
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.08);
    }
    .payment-form-col, .payment-benefits-col { padding: 34px; }
}
@media (max-width: 768px) {
    .step { padding: 28px; width: 96%; border-radius: 22px; }
    .step-text { font-size: 1.12rem; }
    .step-title { font-size: 1.9rem; }
    .step-buttons .btn { flex: 1 1 100%; min-width: unset; font-size: 0.95rem; padding: 13px 22px; }
    .step-number { font-size: 0.88rem; }
    .step-options--thumbs .step-option { flex: 1 1 45%; max-width: 155px; }
    .logo { max-width: 220px; }
    .rules-list li { font-size: 0.9rem; }
    .rules-box { padding: 20px; }
    .reg-card { padding: 30px; }
    .reg-header h2 { font-size: 1.25rem; }
    .age-badge { min-width: 44px; height: 44px; font-size: 1rem; }
    .reg-progress .progress-step { font-size: 0.7rem; }
    .reg-header { gap: 12px; }
    .payment-header .logo { max-width: 170px; }
    .form-header h3 { font-size: 1.15rem; }
}
@media (max-width: 480px) {
    .step { padding: 22px; }
    .step-text { font-size: 1.02rem; }
    .step-title { font-size: 1.6rem; }
    .step-options--thumbs .step-option { flex: 1 1 100%; max-width: 130px; }
    .step-options--checkbox .step-option { flex: 1 1 40%; }
    .btn { font-size: 0.92rem; padding: 12px 20px; min-width: 90px; }
    .reg-card { padding: 24px; }
    .age-badge { min-width: 40px; height: 40px; font-size: 0.9rem; padding: 8px; }
    .form-group input, .form-group select { padding: 13px 16px; }
    #FreezePane .msg { font-size: 1.05rem; }
    .benefits-icons { flex-direction: column; gap: 16px; }
    .payment-form-col .row { flex-direction: column; gap: 0; }
    .expiry-group { gap: 8px; }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
