* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    min-height: 100vh;

    background:
        radial-gradient(
            circle at 50% 35%,
            #17324a 0%,
            #0c1b2a 38%,
            #060d14 100%
        );

    color: #f5e7bb;

    font-family:
        "Segoe UI",
        Arial,
        sans-serif;

    display: flex;
    flex-direction: column;

    overflow: hidden;
}

.landing {
    flex: 1;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 40px 20px;
}

.duck {
    font-size: 76px;

    margin-bottom: 24px;

    animation: float 4s ease-in-out infinite;

    filter:
        drop-shadow(
            0 10px 20px rgba(0, 0, 0, 0.35)
        );
}

h1 {
    margin: 0;

    font-size: clamp(34px, 6vw, 72px);

    letter-spacing: 0.15em;

    font-weight: 700;

    color: #f2c86b;

    text-shadow:
        0 0 35px rgba(242, 200, 107, 0.12);
}

.tagline {
    margin-top: 14px;

    font-size: clamp(14px, 2vw, 19px);

    letter-spacing: 0.2em;

    text-transform: uppercase;

    color: #b8c6d1;
}

.divider {
    width: 70px;
    height: 1px;

    margin: 38px 0;

    background: #f2c86b;

    opacity: 0.55;
}

h2 {
    margin: 0;

    font-size: clamp(24px, 4vw, 40px);

    font-weight: 400;

    letter-spacing: 0.04em;

    color: #fff8e8;
}

.coming-soon {
    margin-top: 16px;

    font-size: 14px;

    letter-spacing: 0.25em;

    text-transform: uppercase;

    color: #8496a5;
}

footer {
    padding: 24px;

    text-align: center;

    font-size: 12px;

    letter-spacing: 0.08em;

    color: #526575;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

.visitor-counter {
    margin-bottom: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    font-size: 14px;
    letter-spacing: 0.16em;

    color: #718697;

    text-transform: uppercase;
}

.counter-digits {
    padding: 4px 8px;

    background: #061019;

    border: 1px solid #334653;
    border-radius: 3px;

    color: #f2c86b;

    font-family:
        "Courier New",
        monospace;

    font-size: 15px;
    font-weight: bold;

    letter-spacing: 0.14em;

    box-shadow:
        inset 0 0 8px rgba(0, 0, 0, 0.65),
        0 0 6px rgba(242, 200, 107, 0.08);
} 