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

html,
body {
    height: 100%;
}

body {
    font-family: system-ui, -apple-system, 'Segoe UI', 'Roboto', sans-serif;
    background: linear-gradient(145deg, #0b0b1a 0%, #12102a 50%, #0a1a2f 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem 1rem;
    text-align: center;
    overflow-x: hidden;
}

#confetti {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.card {
    background: rgba(15, 20, 35, 0.65);
    backdrop-filter: blur(20px);
    border-radius: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 3rem 2rem 2.5rem;
    max-width: 620px;
    width: 100%;
    position: relative;
    z-index: 1;
    box-shadow: 0 35px 65px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: transform 0.2s ease;
}

.card:hover {
    transform: scale(1.01);
}

.icon {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at 30% 20%, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 0 8px rgba(245, 158, 11, 0.2), 0 12px 28px rgba(0, 0, 0, 0.3);
    animation: softPulse 2.2s infinite alternate;
}

@keyframes softPulse {
    0% {
        box-shadow: 0 0 0 8px rgba(245, 158, 11, 0.1), 0 8px 20px rgba(0, 0, 0, 0.3);
        transform: scale(1);
    }

    100% {
        box-shadow: 0 0 0 14px rgba(245, 158, 11, 0.25), 0 18px 30px rgba(0, 0, 0, 0.4);
        transform: scale(1.02);
    }
}

.domain-old {
    font-size: clamp(1.3rem, 5vw, 1.9rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
    text-decoration-thickness: 1.5px;
    text-decoration-color: rgba(245, 158, 11, 0.5);
    letter-spacing: -0.01em;
}

.arrow-wrap {
    margin: 1rem 0 0.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.arrow-wrap .label {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(245, 158, 11, 0.15);
    padding: 0.2rem 0.8rem;
    border-radius: 60px;
}

.arrow-wrap i {
    font-size: 1.6rem;
    color: #fbbf24;
    animation: bounceArrow 0.9s infinite alternate ease;
}

@keyframes bounceArrow {
    from {
        transform: translateY(-3px);
        opacity: 0.8;
    }

    to {
        transform: translateY(6px);
        opacity: 1;
    }
}

.domain-new {
    font-size: clamp(2.2rem, 8vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(125deg, #FFE6B0, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 12px rgba(245, 158, 11, 0.3);
    margin-top: 0.2rem;
}

.description {
    margin-top: 1.6rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 1rem;
    font-weight: 450;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

.description span {
    background: rgba(245, 158, 11, 0.2);
    padding: 0.1rem 0.4rem;
    border-radius: 30px;
    font-weight: 500;
}

.message {
    margin-top: 2rem;
    padding: 1.25rem 1.8rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 1.6rem;
    border-left: 4px solid #f59e0b;
    text-align: left;
    font-size: 0.9rem;
    color: rgba(245, 245, 255, 0.8);
    line-height: 1.65;
}

.message p {
    margin-bottom: 0.9rem;
}

.message p:last-child {
    margin-bottom: 0;
}

.message strong {
    color: #fbbf24;
    font-weight: 600;
}

.message i {
    color: #f59e0b;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 2rem;
    padding: 0.85rem 2rem;
    background: linear-gradient(105deg, #fbbf24, #f59e0b);
    border: none;
    color: white;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    border-radius: 60px;
    transition: all 0.2s ease;
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.4);
}

.btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(105deg, #fcd34d, #f59e0b);
    box-shadow: 0 12px 28px rgba(245, 158, 11, 0.6);
    gap: 0.9rem;
}

.countdown {
    margin-top: 1.2rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 200, 0.35);
    letter-spacing: 0.3px;
}

#countdown-num {
    font-weight: 800;
    background: #1e1b3c;
    padding: 0.15rem 0.5rem;
    border-radius: 40px;
    color: #fbbf24;
    font-size: 0.85rem;
}

.footer {
    margin-top: 2rem;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.2);
    z-index: 1;
    position: relative;
    text-align: center;
}

/* Tablet */
@media (max-width: 640px) {
    body {
        padding: 1.5rem 0.75rem;
        justify-content: flex-start;
        padding-top: 2rem;
    }

    .card {
        padding: 2rem 1.4rem 2rem;
        border-radius: 1.8rem;
    }

    .icon {
        width: 68px;
        height: 68px;
        font-size: 1.7rem;
        margin-bottom: 1.2rem;
    }

    .description {
        font-size: 0.92rem;
    }

    .message {
        padding: 1.1rem 1.3rem;
        border-radius: 1.2rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
        min-height: 48px;
    }

    .footer {
        margin-top: 1.2rem;
    }
}

/* Kleines Smartphone */
@media (max-width: 380px) {
    .card {
        padding: 1.6rem 1rem 1.6rem;
        border-radius: 1.4rem;
    }

    .message {
        padding: 0.9rem 1rem;
        font-size: 0.85rem;
    }

    .btn {
        font-size: 0.9rem;
    }
}

/* Touch-Geräte: hover-Effekte deaktivieren */
@media (hover: none) {
    .card:hover {
        transform: none;
    }

    .btn:hover {
        transform: none;
        box-shadow: 0 6px 16px rgba(245, 158, 11, 0.4);
        gap: 0.6rem;
    }

    .btn:active {
        transform: scale(0.97);
        box-shadow: 0 3px 10px rgba(245, 158, 11, 0.5);
    }
}

/* Animationen reduzieren bei entsprechender Systemeinstellung */
@media (prefers-reduced-motion: reduce) {
    .icon {
        animation: none;
    }

    .arrow-wrap i {
        animation: none;
    }

    .card {
        transition: none;
    }

    .btn {
        transition: none;
    }
}