/* ══ DIME QUE SÍ — Y2K Holographic Theme ══ */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --holo1: #ff00ff;
    --holo2: #00ffff;
    --holo3: #ffff00;
    --holo4: #00ff88;
    --pink: #ff1493;
    --cyan: #00ffff;
    --purple: #cc00ff;
    --green: #00ff88;
    --bg: #0a0015;
}

html,
body {
    width: 100%;
    height: 100%;
    background: var(--bg);
    overflow: hidden;
    font-family: 'Outfit', sans-serif;
    color: #ffffff;
    cursor: none;
    -webkit-font-smoothing: antialiased;
}

/* Pages that need scroll */
body.scrollable-page {
    overflow-y: auto;
    overflow-x: hidden;
    height: auto;
    min-height: 100vh;
    cursor: auto;
}

/* ── CURSOR Y2K ── */
#cursor {
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    width: 20px;
    height: 20px;
    transform: translate(-50%, -50%);
}

#cursor svg {
    filter: drop-shadow(0 0 6px var(--cyan));
}

/* ── FONDO: GRID ── */
.bg-grid {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(0, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
}

.scanlines {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px,
            rgba(0, 0, 0, 0.08) 2px, rgba(0, 0, 0, 0.08) 4px);
}

/* ── ORBES DINÁMICOS ── */
.orbs {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.7;
}

.orb-a {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, #ff00ff88, #ff1493);
    top: -140px;
    right: -80px;
    animation: orbA 28s infinite alternate ease-in-out;
}

.orb-b {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, #00ffff77, #cc00ff);
    bottom: -120px;
    left: -100px;
    animation: orbB 24s infinite alternate ease-in-out;
}

.orb-c {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #ff1493, #00ff88);
    top: 50%;
    right: -40px;
    animation: orbC 22s infinite alternate ease-in-out;
}

@keyframes orbA {
    to {
        transform: translate(-150px, 160px);
    }
}

@keyframes orbB {
    to {
        transform: translate(120px, -140px);
    }
}

@keyframes orbC {
    to {
        transform: translate(-80px, -100px) scale(1.3);
    }
}

/* ── STICKERS FLOTANTES ── */
.stickers {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.stk {
    position: absolute;
    opacity: 0.5;
}

.stk:nth-child(1) {
    top: 12%;
    right: 6%;
    animation: stkFloat 7s ease-in-out infinite;
}

.stk:nth-child(2) {
    top: 65%;
    left: 4%;
    animation: stkFloat 8s ease-in-out infinite 0.8s;
}

.stk:nth-child(3) {
    top: 70%;
    right: 5%;
    animation: stkFloat 9s ease-in-out infinite 1.2s;
}

@keyframes stkFloat {
    0% {
        transform: translateY(0) rotate(-6deg);
    }

    100% {
        transform: translateY(-14px) rotate(6deg);
    }
}

/* ── SCREENS ── */
.screen {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

.screen.active {
    opacity: 1;
    pointer-events: all;
}

#screen1 {
    z-index: 2;
}

#screen2 {
    z-index: 1;
}

#screen3 {
    z-index: 3;
}

#screen4 {
    z-index: 4;
}

#screen5 {
    z-index: 5;
    overflow-y: auto;
    align-items: center;
    /* center card vertically in live mode */
    justify-content: center;
    padding-bottom: 40px;
}

/* Demo scroll: full-page scroll overlay — works on mobile AND PC */
#screen5.demo-scroll {
    position: fixed;
    inset: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 16px 120px;
    gap: 20px;
}

/* On PC, constrain content width inside demo-scroll */
@media (min-width: 600px) {

    #screen5.demo-scroll .result-card,
    #screen5.demo-scroll .demo-cta-box {
        max-width: 480px;
        width: 100%;
    }
}

#heartCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

#confettiCanvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

/* ── HOLO TEXT ── */
.holo-text {
    background: linear-gradient(90deg, #ff00ff, #00ffff, #ffff00, #00ff88, #ff00ff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: holoShift 3s linear infinite;
}

@keyframes holoShift {
    to {
        background-position: 200% center;
    }
}

/* ── CARD Y2K ── */
.y2k-card {
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.06), rgba(0, 255, 255, 0.04));
    border: 2px solid rgba(0, 255, 255, 0.25);
    border-radius: 22px;
    box-shadow: 0 0 40px rgba(255, 20, 147, 0.25), 0 0 80px rgba(0, 255, 255, 0.15), inset 0 0 20px rgba(255, 0, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.y2k-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ffff, #ff00ff, #00ffff, transparent);
    opacity: 0.8;
}

/* ── SCREEN 2 ── */
.screen2-container {
    width: calc(100% - 28px);
    max-width: 420px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    gap: 16px;
}

.card {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.polaroid {
    background: linear-gradient(145deg, #1a0030, #2d1b4d);
    border: 3px solid rgba(0, 255, 255, 0.3);
    border-radius: 12px;
    padding: 10px 10px 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 20, 147, 0.2);
    transform: rotate(-3deg);
    width: 200px;
}

.polaroid img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    border-radius: 6px;
}

.polaroid-label {
    margin-top: 8px;
    font-family: 'Orbitron', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(0, 255, 255, 0.7);
    text-align: center;
    font-weight: 600;
}

.question {
    font-family: 'Orbitron', monospace;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.3;
    text-align: center;
}

/* ── BOTÓN SÍ ── */
.btn-yes {
    background: linear-gradient(135deg, #cc00ff 0%, #ff1493 100%);
    border: 2px solid rgba(255, 0, 255, 0.4);
    border-radius: 60px;
    padding: 16px 30px;
    font-family: 'Orbitron', monospace;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffffff;
    cursor: none;
    width: 100%;
    box-shadow: 0 0 24px rgba(255, 20, 147, 0.6), 0 0 60px rgba(204, 0, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: transform 0.1s ease, box-shadow 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
}

.btn-yes::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: btnShine 2.5s linear infinite;
}

@keyframes btnShine {
    to {
        left: 200%;
    }
}

.btn-yes:active {
    transform: scale(0.94);
    box-shadow: 0 0 40px rgba(255, 20, 147, 0.8), 0 0 80px rgba(204, 0, 255, 0.6);
}

.from-text {
    font-family: 'Orbitron', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(0, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

/* ── BOTÓN NO — MEJORADO ── */
#btnNo {
    position: fixed;
    z-index: 999;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(204, 0, 255, 0.2), rgba(255, 0, 255, 0.15));
    border: 2px solid rgba(0, 255, 255, 0.5);
    border-radius: 60px;
    padding: 12px 28px;
    font-family: 'Orbitron', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(0, 255, 255, 0.8);
    cursor: none;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.15s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-weight: 700;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    -webkit-tap-highlight-color: transparent;
}

#btnNo.visible {
    opacity: 1;
    pointer-events: all;
    animation: btnNoAppear 0.4s ease;
}

#btnNo:active {
    transform: translateX(-50%) scale(0.93);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

@keyframes btnNoAppear {
    from {
        opacity: 0;
        transform: translateX(-50%) scale(0.8);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

/* ── SCREEN 3 ── */
/* Full-screen two-half layout */
#screen3 {
    flex-direction: column;
    align-items: stretch;
}

.screen3-top {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.5rem 1rem;
    text-align: center;
}

.screen3-bottom {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem 2.5rem;
    text-align: center;
    gap: 20px;
    border-top: 1px solid rgba(0, 255, 255, 0.12);
}

.card3 {
    padding: 40px 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
    position: relative;
    z-index: 4;
}

.celebrate-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(1.8rem, 8vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    position: relative;
    z-index: 4;
}

.celebrate-sub {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
    max-width: 290px;
}

/* ── SCREEN 4 ── */
.screen4-container {
    width: calc(100% - 28px);
    max-width: 420px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
}

.date-card {
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.date-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(1rem, 5vw, 1.6rem);
    font-weight: 800;
    text-align: center;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.date-subtitle {
    font-size: 11px;
    color: rgba(0, 255, 255, 0.6);
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.date-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
}

.date-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.08), rgba(0, 255, 255, 0.04));
    border: 2px solid rgba(0, 255, 255, 0.2);
    border-radius: 16px;
    padding: 16px 10px;
    cursor: none;
    transition: all 0.15s;
    text-align: center;
    animation: fadeUp 0.4s ease backwards;
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
}

.date-option:nth-child(1) {
    animation-delay: 0s
}

.date-option:nth-child(2) {
    animation-delay: 0.08s
}

.date-option:nth-child(3) {
    animation-delay: 0.12s
}

.date-option:nth-child(4) {
    animation-delay: 0.16s
}

.date-option:active {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.15), rgba(255, 0, 255, 0.08));
    border-color: rgba(0, 255, 255, 0.5);
    transform: scale(0.95);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.25);
}

.date-option .icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.08);
    border: 2px solid rgba(0, 255, 255, 0.2);
}

.date-option .info strong {
    font-family: 'Orbitron', monospace;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #ffffff;
    text-transform: uppercase;
}

.btn-surprise {
    background: linear-gradient(135deg, #00ffff 0%, #00ff88 50%, #cc00ff 100%);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 60px;
    padding: 14px 26px;
    font-family: 'Orbitron', monospace;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #0a0015;
    cursor: none;
    width: 100%;
    box-shadow: 0 0 24px rgba(0, 255, 255, 0.5), 0 0 60px rgba(0, 255, 136, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: transform 0.1s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    animation: fadeUp 0.4s 0.24s ease backwards;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    overflow: hidden;
}

.btn-surprise::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: btnShine 2.5s linear infinite;
}

.btn-surprise:active {
    transform: scale(0.94);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.7), 0 0 80px rgba(0, 255, 136, 0.5);
}

/* ── SCREEN 5 ── */
.result-card {
    padding: 34px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    max-width: 420px;
}

.result-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1), rgba(0, 255, 255, 0.08));
    border: 2px solid rgba(0, 255, 255, 0.25);
    animation: floatHeart 3s ease-in-out infinite alternate;
    box-shadow: 0 0 24px rgba(255, 20, 147, 0.3);
}

.result-title {
    font-family: 'Orbitron', monospace;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.3;
    text-transform: uppercase;
}

.result-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
    max-width: 300px;
}

.result-tag {
    font-family: 'Orbitron', monospace;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(0, 255, 255, 0.6);
}

.btn-back {
    background: transparent;
    border: 2px solid rgba(0, 255, 255, 0.25);
    border-radius: 60px;
    padding: 11px 24px;
    font-family: 'Orbitron', monospace;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(0, 255, 255, 0.6);
    cursor: none;
    transition: all 0.15s;
    animation: fadeUp 0.4s 0.32s ease backwards;
    -webkit-tap-highlight-color: transparent;
}

.btn-back:active {
    border-color: var(--cyan);
    color: var(--cyan);
    box-shadow: 0 0 16px rgba(0, 255, 255, 0.3);
}

.btn-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, #00ff55 0%, #00dd44 40%, #00ffcc 100%);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 60px;
    padding: 13px 24px;
    font-family: 'Orbitron', monospace;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #0a0015;
    cursor: none;
    text-decoration: none;
    box-shadow: 0 0 24px rgba(0, 255, 85, 0.5), 0 0 60px rgba(0, 255, 136, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: transform 0.1s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
    animation: fadeUp 0.4s 0.12s ease backwards;
    -webkit-tap-highlight-color: transparent;
}

.btn-wa::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: btnShine 2.5s linear infinite;
}

.btn-wa:active {
    transform: scale(0.94);
    box-shadow: 0 0 40px rgba(0, 255, 85, 0.7), 0 0 80px rgba(0, 255, 136, 0.5);
}

/* ── DEMO MODE ── */
.demo-cta-box {
    margin-top: 0;
    padding: 0;
    background: linear-gradient(160deg, rgba(20, 0, 42, 0.99), rgba(10, 0, 21, 0.99));
    border: 2px solid rgba(0, 255, 255, 0.25);
    border-bottom: none;
    border-radius: 22px 22px 0 0;
    text-align: center;
    display: none;
    width: 100%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 -4px 40px rgba(204, 0, 255, 0.25), 0 -1px 0 rgba(0, 255, 255, 0.15);
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.demo-cta-box.visible {
    display: block;
}

/* Toggle header for collapsible CTA */
.cta-toggle-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    cursor: pointer;
    background: linear-gradient(135deg, rgba(204, 0, 255, 0.08), rgba(255, 20, 147, 0.05));
    border-bottom: 1px solid rgba(0, 255, 255, 0.08);
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.cta-toggle-header .toggle-label {
    font-family: 'Orbitron', monospace;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(0, 255, 255, 0.6);
}

.cta-toggle-header .toggle-arrow {
    font-size: 18px;
    color: rgba(0, 255, 255, 0.5);
    transition: transform 0.3s ease;
    line-height: 1;
}

.cta-toggle-header.open .toggle-arrow {
    transform: rotate(180deg);
}

#demo-cta-inner {
    padding: 20px 20px 24px;
}

/* Price compare-at */
.price-compare {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: line-through;
    margin-bottom: 2px;
}

/* Urgency badge */
.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.15), rgba(204, 0, 255, 0.1));
    border: 1px solid rgba(255, 20, 147, 0.3);
    border-radius: 30px;
    padding: 5px 14px;
    font-family: 'Orbitron', monospace;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 100, 150, 0.9);
    margin: 6px 0 12px;
    animation: urgencyPulse 2s ease-in-out infinite;
}

@keyframes urgencyPulse {

    0%,
    100% {
        box-shadow: 0 0 0 rgba(255, 20, 147, 0);
    }

    50% {
        box-shadow: 0 0 14px rgba(255, 20, 147, 0.3);
    }
}

.demo-cta-box .price {
    font-family: 'Orbitron', monospace;
    font-size: 2.2rem;
    font-weight: 900;
}

.demo-cta-box .price-sub {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

.demo-cta-box .cta-btn {
    display: block;
    width: 100%;
    margin-top: 16px;
    background: linear-gradient(135deg, #cc00ff, #ff1493);
    border: none;
    border-radius: 60px;
    padding: 15px 24px;
    font-family: 'Orbitron', monospace;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 0 24px rgba(255, 20, 147, 0.5);
    transition: transform 0.1s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

.demo-cta-box .cta-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: btnShine 2.5s linear infinite;
}

.demo-cta-box .cta-btn:active {
    transform: scale(0.94);
}

/* ── DEMO BANNER: Scrolling Ticker ── */
#demo-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: linear-gradient(135deg, rgba(10, 0, 21, 0.97), rgba(20, 0, 42, 0.97));
    border-top: 2px solid rgba(0, 255, 255, 0.25);
    height: 36px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

#demo-banner .ticker-track {
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
    animation: tickerScroll 18s linear infinite;
}

#demo-banner .ticker-text {
    font-family: 'Orbitron', monospace;
    font-size: 9px;
    color: rgba(0, 255, 255, 0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0 60px;
}

#demo-banner .ticker-sep {
    color: rgba(255, 0, 255, 0.5);
    font-size: 12px;
    padding: 0 20px;
}

#demo-banner-close {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.25);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(0, 255, 255, 0.6);
    font-size: 12px;
    line-height: 1;
    transition: all 0.2s;
    z-index: 2;
    -webkit-tap-highlight-color: transparent;
}

#demo-banner-close:hover {
    background: rgba(0, 255, 255, 0.25);
    color: #00ffff;
}

@keyframes tickerScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ── COOKIE CONSENT ── */
#cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9990;
    background: linear-gradient(135deg, rgba(10, 0, 21, 0.98), rgba(20, 0, 42, 0.98));
    border-top: 2px solid rgba(0, 255, 255, 0.2);
    padding: 1.2rem 1.5rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

#cookie-banner .cookie-inner {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#cookie-banner .cookie-title {
    font-family: 'Orbitron', monospace;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--cyan);
    display: flex;
    align-items: center;
    gap: 8px;
}

#cookie-banner .cookie-text {
    font-size: 0.8rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
}

#cookie-banner .cookie-text a {
    color: var(--cyan);
    text-decoration: none;
}

#cookie-banner .cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

#cookie-banner .btn-accept {
    background: linear-gradient(135deg, #cc00ff, #ff1493);
    border: none;
    border-radius: 30px;
    padding: 10px 24px;
    font-family: 'Orbitron', monospace;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 0 16px rgba(255, 20, 147, 0.4);
    transition: transform 0.1s;
    flex: 1;
}

#cookie-banner .btn-accept:active {
    transform: scale(0.95);
}

#cookie-banner .btn-reject {
    background: transparent;
    border: 1px solid rgba(0, 255, 255, 0.25);
    border-radius: 30px;
    padding: 10px 20px;
    font-family: 'Orbitron', monospace;
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(0, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.2s;
}

#cookie-banner .btn-reject:hover {
    border-color: rgba(0, 255, 255, 0.5);
    color: rgba(0, 255, 255, 0.8);
}

@keyframes floatHeart {
    0% {
        transform: translateY(0) scale(1);
    }

    100% {
        transform: translateY(-10px) scale(1.1);
    }
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    14% {
        transform: scale(1.35);
    }

    28% {
        transform: scale(1);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── SCROLLABLE MODE (demo end) ── */
.screen.demo-scroll {
    position: relative;
    overflow-y: auto;
    min-height: 100vh;
    height: auto;
    flex-direction: column;
    padding: 40px 14px 100px;
}

/* ── LEGAL PAGES Y2K THEME ── */
.legal-page {
    width: 100%;
    min-height: 100vh;
    background: var(--bg);
    font-family: 'Outfit', sans-serif;
    color: #fff;
    overflow-y: auto;
    overflow-x: hidden;
    cursor: auto;
}

.legal-page .legal-wrap {
    max-width: 640px;
    margin: 0 auto;
    padding: 3rem 1.5rem 4rem;
}

.legal-page h1 {
    font-family: 'Orbitron', monospace;
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.legal-page .updated {
    font-size: 0.75rem;
    color: rgba(0, 255, 255, 0.5);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--cyan);
    margin: 2rem 0 0.8rem;
}

.legal-page p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1rem;
}

.legal-page ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.legal-page li {
    padding: 0.4rem 0;
    padding-left: 1.2rem;
    position: relative;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.legal-page li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--cyan);
}

.legal-page a {
    color: var(--cyan);
    text-decoration: none;
    transition: color 0.2s;
}

.legal-page a:hover {
    color: var(--pink);
}

.legal-page hr {
    border: none;
    border-top: 1px solid rgba(0, 255, 255, 0.15);
    margin: 2.5rem 0;
}

.legal-page .legal-nav {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-page .legal-nav a {
    font-family: 'Orbitron', monospace;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(0, 255, 255, 0.4);
    padding: 0.5rem 1rem;
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 30px;
    transition: all 0.2s;
}

.legal-page .legal-nav a:hover {
    color: var(--cyan);
    border-color: var(--cyan);
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.2);
}

.legal-page .back-link {
    display: inline-block;
    font-family: 'Orbitron', monospace;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(0, 255, 255, 0.5);
    margin-bottom: 2rem;
    transition: color 0.2s;
}

.legal-page .back-link:hover {
    color: var(--cyan);
}

/* contact card */
.legal-page .contact-card {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.06), rgba(0, 255, 255, 0.04));
    border: 2px solid rgba(0, 255, 255, 0.2);
    border-radius: 18px;
    padding: 2rem;
    text-align: center;
    margin: 1.5rem 0;
}

.legal-page .contact-card .icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.legal-page .contact-card .label {
    font-family: 'Orbitron', monospace;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(0, 255, 255, 0.5);
    margin-bottom: 0.5rem;
}

.legal-page .contact-card .email-link {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.legal-page .contact-card .response-time {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.5rem;
}

.legal-page .topics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 1rem 0;
}

.legal-page .topic-item {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.05), rgba(0, 255, 255, 0.03));
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 14px;
    padding: 1.2rem;
    text-align: center;
}

.legal-page .topic-item .topic-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-page .topic-item h3 {
    font-family: 'Orbitron', monospace;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0.3rem;
}

.legal-page .topic-item p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    margin: 0;
}

/* ── FOOTER LEGAL ── */
.legal-footer {
    margin-top: 3rem;
    max-width: 420px;
    width: 100%;
    text-align: center;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.legal-footer a {
    font-family: 'Orbitron', monospace;
    font-size: 0.55rem;
    color: rgba(0, 255, 255, 0.3);
    text-decoration: none;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0 0.5rem;
    transition: color 0.2s;
}

.legal-footer a:hover {
    color: rgba(0, 255, 255, 0.6);
}

.legal-footer p {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.15);
    margin-top: 0.8rem;
    letter-spacing: 0.06em;
}

/* ── BLOG PAGE ── */
.blog-page {
    width: 100%;
    min-height: 100vh;
    background: var(--bg);
    font-family: 'Outfit', sans-serif;
    color: #fff;
    cursor: auto;
    overflow-y: auto;
    overflow-x: hidden;
}

.blog-wrap {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 1.5rem 4rem;
}

.blog-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-hero h1 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.blog-hero p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 3rem;
}

@media (min-width: 560px) {
    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.blog-card {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.05), rgba(0, 255, 255, 0.03));
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 18px;
    padding: 1.5rem;
    transition: all 0.25s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card:hover {
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 24px rgba(0, 255, 255, 0.15);
    transform: translateY(-3px);
}

.blog-card .tag {
    font-family: 'Orbitron', monospace;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 0.6rem;
}

.blog-card h2 {
    font-family: 'Orbitron', monospace;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.blog-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

/* Blog article */
.blog-article {
    max-width: 640px;
    margin: 0 auto;
    padding: 3rem 1.5rem 4rem;
}

.blog-article h1 {
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.blog-article .meta {
    font-size: 0.75rem;
    color: rgba(0, 255, 255, 0.5);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.blog-article h2 {
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--cyan);
    margin: 2rem 0 0.8rem;
}

.blog-article h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--pink);
    margin: 1.5rem 0 0.5rem;
}

.blog-article p {
    font-size: 1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 1rem;
}

.blog-article ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.blog-article li {
    padding: 0.3rem 0 0.3rem 1.2rem;
    position: relative;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.blog-article li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--cyan);
}

.blog-article blockquote {
    border-left: 3px solid var(--pink);
    margin: 1.5rem 0;
    padding: 1rem 1.2rem;
    background: rgba(255, 20, 147, 0.05);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
}

.blog-article .cta-block {
    background: linear-gradient(135deg, rgba(204, 0, 255, 0.1), rgba(255, 20, 147, 0.08));
    border: 2px solid rgba(255, 20, 147, 0.3);
    border-radius: 18px;
    padding: 2rem;
    text-align: center;
    margin: 2.5rem 0;
}

.blog-article .cta-block h3 {
    color: #fff;
    margin: 0 0 0.5rem;
}

.blog-article .cta-block p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.blog-article .cta-block a {
    display: inline-block;
    background: linear-gradient(135deg, #cc00ff, #ff1493);
    color: #fff;
    text-decoration: none;
    font-family: 'Orbitron', monospace;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: 60px;
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.4);
    transition: transform 0.1s;
}

.blog-article .cta-block a:hover {
    transform: scale(1.03);
}

.blog-article a {
    color: var(--cyan);
    text-decoration: none;
}

.blog-article a:hover {
    color: var(--pink);
}