:root {
    --primary: #8b5cf6;
    --primary-hover: #7c3aed;
    --bg-color: #030712;
    --text-color: #f9fafb;
    --glass-bg: rgba(17, 24, 39, 0.4);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
}

h1,
.badge,
.time-value,
.notify-btn {
    font-family: 'Outfit', sans-serif;
}

/* Animated Background Orbs */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.6;
}

.orb-1 {
    width: 45vw;
    height: 45vw;
    background: #4f46e5;
    top: -10vw;
    left: -10vw;
    animation: float1 18s infinite ease-in-out alternate;
}

.orb-2 {
    width: 40vw;
    height: 40vw;
    background: #db2777;
    bottom: -10vw;
    right: -10vw;
    animation: float2 22s infinite ease-in-out alternate;
}

.orb-3 {
    width: 35vw;
    height: 35vw;
    background: #0ea5e9;
    top: 30vh;
    left: 30vw;
    animation: float3 25s infinite ease-in-out alternate;
}

@keyframes float1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(10vw, 15vh) scale(1.1);
    }
}

@keyframes float2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-10vw, -10vh) scale(0.9);
    }
}

@keyframes float3 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-15vw, 15vh) scale(1.2);
    }
}

.container {
    width: 100%;
    max-width: 800px;
    padding: 24px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(30px);
    opacity: 0;
    animation: slideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    width: 100%;
    transform-style: preserve-3d;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(139, 92, 246, 0.15);
    color: #c4b5fd;
    border-radius: 24px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    letter-spacing: -1px;
}

.description {
    font-size: 1.125rem;
    color: #9ca3af;
    margin-bottom: 48px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 300;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 24px 20px;
    border-radius: 20px;
    min-width: 110px;
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: inset 0 2px 10px rgba(255, 255, 255, 0.02);
}

.time-box:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2), inset 0 2px 10px rgba(255, 255, 255, 0.05);
}

.time-value {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
    font-variant-numeric: tabular-nums;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.time-label {
    font-size: 0.8rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.notify-section {
    display: flex;
    gap: 12px;
    max-width: 440px;
    margin: 0 auto;
    position: relative;
    width: 100%;
}

.email-input {
    flex: 1;
    padding: 18px 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
}

.email-input:focus {
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.15);
}

.email-input::placeholder {
    color: #6b7280;
}

.notify-btn {
    padding: 16px 32px;
    border-radius: 16px;
    border: none;
    background: linear-gradient(135deg, var(--primary) 0%, #4f46e5 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
    white-space: nowrap;
}

.notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(139, 92, 246, 0.4);
    background: linear-gradient(135deg, var(--primary-hover) 0%, #4338ca 100%);
}

.notify-btn:active {
    transform: translateY(1px);
}

.footer-joke {
    margin-top: 40px;
    font-size: 0.95rem;
    color: #4b5563;
    opacity: 0;
    animation: fadeIn 1s 2s forwards;
    transition: color 0.3s ease;
    text-align: center;
}

.footer-joke:hover {
    color: #9ca3af;
}

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

/* Responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }

    .countdown {
        gap: 16px;
    }

    .time-box {
        min-width: 90px;
        padding: 16px;
    }

    .time-value {
        font-size: 2.25rem;
    }
}

@media (max-width: 480px) {
    .glass-card {
        padding: 40px 24px;
        border-radius: 24px;
    }

    h1 {
        font-size: 2.75rem;
    }

    .description {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .countdown {
        gap: 12px;
        margin-bottom: 40px;
    }

    .time-box {
        min-width: 75px;
        padding: 12px;
        border-radius: 16px;
    }

    .time-value {
        font-size: 1.75rem;
    }

    .time-label {
        font-size: 0.7rem;
    }

    .notify-section {
        flex-direction: column;
    }

    .notify-btn {
        width: 100%;
        padding: 18px;
    }
}