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

.question {
    margin-bottom: 0;
    max-width: 800px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.1rem;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.question-list {
    display: block;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.question-line {
    display: block;
}

.question-emphasis {
    font-weight: 700;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    overflow-y: auto;
    background: linear-gradient(
        125deg,
        #07121f 0%,
        #0b2233 18%,
        #10384a 36%,
        #0f3f3b 56%,
        #2a2f3a 78%,
        #7a6330 100%
    );
    background-size: 460% 460%;
    animation: gradientMove 12s ease-in-out infinite;
    height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(900px 600px at 14% 18%, rgba(56, 189, 248, 0.14), transparent 60%),
        radial-gradient(820px 540px at 86% 22%, rgba(20, 184, 166, 0.12), transparent 60%),
        radial-gradient(760px 560px at 62% 86%, rgba(122, 99, 48, 0.14), transparent 60%),
        radial-gradient(680px 520px at 92% 78%, rgba(148, 163, 184, 0.10), transparent 60%);
    filter: blur(20px) saturate(1.05);
    transform: translate3d(0, 0, 0);
    animation: glowDrift 9s ease-in-out infinite;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    background-image:
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.045) 0px, rgba(255, 255, 255, 0.045) 1px, transparent 1px, transparent 3px),
        repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.06) 0px, rgba(0, 0, 0, 0.06) 1px, transparent 1px, transparent 4px);
    opacity: 0.22;
    mix-blend-mode: overlay;
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
    will-change: transform;
}

body.lite {
    animation: none;
    background-size: auto;
}

body.lite::before {
    animation: none;
    filter: none;
}

body.lite::after {
    opacity: 0.14;
    mix-blend-mode: normal;
}

body.lite .countdown-item,
body.lite .whatsapp-link {
    backdrop-filter: none;
}

body.lite .whatsapp-link {
    box-shadow: none;
    transition: none;
}

body.lite h1 {
    text-shadow: none;
}

.paused,
.paused::before,
.paused::after {
    animation-play-state: paused !important;
}

.paused * {
    animation-play-state: paused !important;
}

.animated-bg.paused .particle {
    animation-play-state: paused !important;
}

.content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 16px;
    gap: 10px;
}

.lower {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.logo-container {
    animation: fadeInDown 1.5s ease-out;
    margin-bottom: 10px;
    width: 100%;
}

h1 {
    font-size: clamp(1.8rem, 7vw, 7rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.98);
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
    letter-spacing: -2px;
    margin-bottom: 0;
    display: block;
    width: 100%;
    max-width: calc(100vw - 40px);
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap;
    line-height: 1;
}

.subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    animation: fadeInUp 1.5s ease-out 0.5s both;
    margin-bottom: 50px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.coming-soon {
    position: relative;
    display: inline-block;
}

.coming-soon::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    animation: lineExpand 2s ease-in-out infinite;
}

.countdown {
    display: flex;
    gap: 16px;
    animation: fadeInUp 1.5s ease-out 1s both;
    margin-bottom: 0;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 18px 22px;
    min-width: 120px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: none;
}

.countdown-number {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    display: block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.countdown-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
}

.whatsapp-link {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    margin: 0;
    padding: 16px 44px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: fadeInUp 1.5s ease-out 1.5s both;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.whatsapp-link::before {
    content: '💬';
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.whatsapp-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.whatsapp-link:hover::after {
    width: 400px;
    height: 400px;
}

.whatsapp-link:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
}

.whatsapp-link span {
    position: relative;
    z-index: 1;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% 40%;
    }
    25% {
        background-position: 60% 10%;
    }
    50% {
        background-position: 100% 55%;
    }
    75% {
        background-position: 40% 95%;
    }
    100% {
        background-position: 0% 40%;
    }
}

@keyframes glowDrift {
    0% {
        transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
        filter: blur(18px) saturate(1.15);
        opacity: 0.95;
    }
    35% {
        transform: translate3d(10px, -16px, 0) scale(1.03) rotate(0.6deg);
        filter: blur(22px) saturate(1.3) hue-rotate(4deg);
        opacity: 1;
    }
    70% {
        transform: translate3d(-12px, 10px, 0) scale(1.02) rotate(-0.5deg);
        filter: blur(20px) saturate(1.25) hue-rotate(-3deg);
        opacity: 0.98;
    }
    100% {
        transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
        filter: blur(18px) saturate(1.15);
        opacity: 0.95;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

@keyframes lineExpand {
    0%, 100% {
        transform: scaleX(0.5);
        opacity: 0.5;
    }
    50% {
        transform: scaleX(1);
        opacity: 1;
    }
}

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

@media (max-width: 768px) {
    .countdown {
        flex-wrap: nowrap;
        gap: 10px;
        width: 100%;
        max-width: 560px;
    }

    .countdown-item {
        min-width: 0;
        flex: 1 1 0;
        padding: 14px 12px;
    }

    .countdown-number {
        font-size: clamp(1.4rem, 7vw, 2rem);
    }

    .countdown-label {
        font-size: 0.75rem;
        letter-spacing: 1px;
        margin-top: 8px;
    }

    .subtitle {
        letter-spacing: 4px;
    }

    .whatsapp-link {
        padding: 16px 28px;
        font-size: 1.05rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 420px) {
    .countdown {
        gap: 8px;
    }

    .countdown-item {
        padding: 12px 10px;
        border-radius: 12px;
    }

    .countdown-number {
        font-size: clamp(1.2rem, 8vw, 1.6rem);
    }
}

.whatsapp-link:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.85);
    outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }

    body {
        animation: none !important;
    }

    body::before {
        animation: none !important;
        filter: blur(18px) saturate(1.05) !important;
    }

    .particle {
        animation: none !important;
        transform: none !important;
    }
}
