/* /Pages/Index.razor.rz.scp.css */
/* ZLA vs SaaS Gamified Mercial - Modern AF CSS */

/* Base Dark Theme and Typography Setup */
:root[b-aeysxj3oy2] {
    --bg-deep-charcoal: #0a0a0c;
    --bg-pure-black: #000000;
    --neon-blue: #00f0ff;
    --neon-green: #39ff14;
    --neon-red: #ff0055;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

body[b-aeysxj3oy2] {
    background-color: var(--bg-deep-charcoal);
    color: #ffffff;
    font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    padding: 0;
    overflow: hidden; /* Let the pipeline container handle scrolling */
}

/* Scroll-Snapping Pipeline Container */
.pipeline-container[b-aeysxj3oy2] {
    width: 100vw;
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Hide scrollbar for a cleaner look */
}
.pipeline-container[b-aeysxj3oy2]::-webkit-scrollbar {
    display: none;
}

/* Scene Base Styling */
.scene[b-aeysxj3oy2] {
    width: 100vw;
    height: 100vh;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 2rem;
    box-sizing: border-box;
    transition: background 0.5s ease;
}

/* Individual Scenes */
.scene-1[b-aeysxj3oy2] {
    background: radial-gradient(circle at center, #1a1a24 0%, var(--bg-pure-black) 100%);
}
.scene-2[b-aeysxj3oy2] {
    background: radial-gradient(circle at center, #2a0810 0%, var(--bg-pure-black) 100%);
}
.scene-3[b-aeysxj3oy2] {
    background: radial-gradient(circle at center, #081a2a 0%, var(--bg-pure-black) 100%);
}
.scene-4[b-aeysxj3oy2] {
    background: radial-gradient(circle at center, #082a15 0%, var(--bg-pure-black) 100%);
}
.scene-5[b-aeysxj3oy2] {
    background: radial-gradient(circle at center, #1a1a24 0%, var(--bg-pure-black) 100%);
}

/* Glassmorphic Cards */
.glass-card[b-aeysxj3oy2] {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    text-align: center;
    max-width: 800px;
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.glass-card:hover[b-aeysxj3oy2] {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px 0 rgba(0, 0, 0, 0.5);
}

/* Neon Text Utilities */
.neon-text-blue[b-aeysxj3oy2] {
    color: #fff;
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px var(--neon-blue), 0 0 40px var(--neon-blue), 0 0 80px var(--neon-blue);
    font-weight: 800;
}
.neon-text-green[b-aeysxj3oy2] {
    color: #fff;
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px var(--neon-green), 0 0 40px var(--neon-green), 0 0 80px var(--neon-green);
    font-weight: 800;
}
.neon-text-red[b-aeysxj3oy2] {
    color: #fff;
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px var(--neon-red), 0 0 40px var(--neon-red), 0 0 80px var(--neon-red);
    font-weight: 800;
}

/* Interactive Elements & Animations */

/* Scene 1: Slow Upload Button */
.slow-upload-btn[b-aeysxj3oy2] {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: not-allowed;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.slow-upload-btn[b-aeysxj3oy2]::before {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 15%;
    background: rgba(255, 255, 255, 0.1);
    animation: sluggish-progress-b-aeysxj3oy2 5s infinite;
}
@keyframes sluggish-progress-b-aeysxj3oy2 {
    0% { width: 0%; }
    50% { width: 45%; }
    100% { width: 100%; opacity: 0; }
}

/* Scene 2: Attack Fortress & Siren */
.attack-fortress[b-aeysxj3oy2] {
    font-size: 5rem;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px var(--neon-red));
    animation: shake-b-aeysxj3oy2 0.5s infinite alternate;
}
@keyframes shake-b-aeysxj3oy2 {
    0% { transform: translateX(-2px) rotate(-1deg); }
    100% { transform: translateX(2px) rotate(1deg); }
}

.siren-alert[b-aeysxj3oy2] {
    animation: siren-blink-b-aeysxj3oy2 1s infinite alternate;
    border: 2px solid var(--neon-red);
    background: rgba(255, 0, 85, 0.1);
}
@keyframes siren-blink-b-aeysxj3oy2 {
    0% { box-shadow: 0 0 10px rgba(255, 0, 85, 0.2); }
    100% { box-shadow: 0 0 50px var(--neon-red), inset 0 0 20px var(--neon-red); }
}

/* Scene 3: Wireframe Jig */
.wireframe-jig[b-aeysxj3oy2] {
    border: 1px dashed var(--neon-blue);
    background: repeating-linear-gradient(
        45deg,
        rgba(0, 240, 255, 0.05),
        rgba(0, 240, 255, 0.05) 10px,
        transparent 10px,
        transparent 20px
    );
    animation: wireframe-pulse-b-aeysxj3oy2 3s infinite linear;
}
@keyframes wireframe-pulse-b-aeysxj3oy2 {
    0% { background-position: 0 0; border-color: rgba(0, 240, 255, 0.5); }
    100% { background-position: 40px 40px; border-color: var(--neon-blue); }
}

/* Scene 4: Data Pour Container */
.data-pour-container[b-aeysxj3oy2] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: 100%;
}
.data-pour-container .glass-card[b-aeysxj3oy2] {
    flex: 1;
    cursor: grab;
}
.data-pour-container .glass-card:active[b-aeysxj3oy2] {
    cursor: grabbing;
}

/* Scene 5: Celebration Button */
.celebration-btn[b-aeysxj3oy2] {
    background: transparent;
    color: #fff;
    border: 2px solid var(--neon-green);
    padding: 1rem 3rem;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 0 15px var(--neon-green);
    transition: all 0.2s ease;
}
.celebration-btn:hover[b-aeysxj3oy2] {
    background: var(--neon-green);
    color: var(--bg-pure-black);
    box-shadow: 0 0 30px var(--neon-green), 0 0 60px var(--neon-green);
    transform: scale(1.05);
}
.celebration-btn:active[b-aeysxj3oy2] {
    transform: scale(0.95);
}
/* /Pages/Personalization.razor.rz.scp.css */
.pers-container[b-2hcofynajs] {
    padding: 30px 20px;
    max-width: 500px;
    margin: 0 auto;
    font-family: system-ui, -apple-system, sans-serif;
    color: #ffffff;
    min-height: 100vh;
}

.pers-header[b-2hcofynajs] {
    margin-bottom: 30px;
    position: relative;
    padding-top: 20px;
}

.pers-close-btn[b-2hcofynajs] {
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.pers-close-btn:active[b-2hcofynajs] {
    background: rgba(255, 255, 255, 0.22);
}

.pers-title[b-2hcofynajs] {
    font-size: 2.2rem;
    font-weight: 900;
    margin: 0;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pers-subtitle[b-2hcofynajs] {
    color: #98989d;
    font-size: 1rem;
    margin-top: 5px;
}

.pers-form[b-2hcofynajs] {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pers-group[b-2hcofynajs] {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 20px;
}

.pers-label[b-2hcofynajs] {
    display: block;
    color: #0a84ff;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.pers-help[b-2hcofynajs] {
    color: #98989d;
    font-size: 0.75rem;
    margin-top: 8px;
}

.pers-input[b-2hcofynajs] {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 16px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.pers-input:focus[b-2hcofynajs] {
    border-color: #0a84ff;
    box-shadow: 0 0 0 3px rgba(10, 132, 255, 0.2);
}

.pers-toggle[b-2hcofynajs] {
    display: flex;
    gap: 8px;
    background: rgba(0, 0, 0, 0.3);
    padding: 6px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.pers-toggle-btn[b-2hcofynajs] {
    flex: 1;
    background: transparent;
    border: none;
    color: #98989d;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.pers-toggle-btn.active[b-2hcofynajs] {
    background: #0a84ff;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(10, 132, 255, 0.3);
}

.pers-select-wrap[b-2hcofynajs] {
    position: relative;
}

.pers-select[b-2hcofynajs] {
    width: 100%;
    appearance: none;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 16px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    outline: none;
    cursor: pointer;
    box-sizing: border-box;
}

.pers-select-wrap[b-2hcofynajs]::after {
    content: "▼";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #98989d;
    pointer-events: none;
    font-size: 0.8rem;
}

.pers-save-btn[b-2hcofynajs] {
    margin-top: 10px;
    background: linear-gradient(135deg, #39FF14 0%, #2bb20d 100%);
    color: #000000;
    border: none;
    border-radius: 14px;
    padding: 16px;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(57, 255, 20, 0.25);
    transition: transform 0.1s, box-shadow 0.2s;
}

.pers-save-btn:active[b-2hcofynajs] {
    transform: scale(0.98);
}

.pers-save-btn:disabled[b-2hcofynajs] {
    background: #3f3f46;
    color: #a1a1aa;
    box-shadow: none;
    cursor: not-allowed;
}

.pers-error[b-2hcofynajs] {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #fca5a5;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
}

.pers-success[b-2hcofynajs] {
    background: rgba(57, 255, 20, 0.15);
    border: 1px solid rgba(57, 255, 20, 0.4);
    color: #39FF14;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
}

.pers-loading[b-2hcofynajs] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    color: #0a84ff;
    font-weight: 700;
}

.pers-spinner[b-2hcofynajs] {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(10, 132, 255, 0.2);
    border-top-color: #0a84ff;
    border-radius: 50%;
    animation: spin-b-2hcofynajs 1s linear infinite;
    margin-bottom: 16px;
}

@keyframes spin-b-2hcofynajs {
    to { transform: rotate(360deg); }
}

.pers-tabs[b-2hcofynajs] {
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    padding: 4px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 24px;
}

.pers-tab-btn[b-2hcofynajs] {
    flex: 1;
    background: transparent;
    border: none;
    color: #98989d;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    outline: none;
}

.pers-tab-btn.active[b-2hcofynajs] {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.pers-checkbox-group[b-2hcofynajs] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pers-checkbox-label[b-2hcofynajs] {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

.pers-checkbox[b-2hcofynajs] {
    width: 20px;
    height: 20px;
    accent-color: #0a84ff;
    cursor: pointer;
}

.alert-card[b-2hcofynajs] {
    background: rgba(10, 132, 255, 0.08);
    border: 1px solid rgba(10, 132, 255, 0.2);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 20px;
}

.alert-card-title[b-2hcofynajs] {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0a84ff;
    margin-bottom: 6px;
}

.alert-card-body[b-2hcofynajs] {
    font-size: 0.95rem;
    color: #ffffff;
    line-height: 1.4;
}

.alert-card-time[b-2hcofynajs] {
    font-size: 0.75rem;
    color: #98989d;
    margin-top: 10px;
    display: block;
}
