@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0f;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 50%, rgba(0, 210, 255, 0.06) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 50%, rgba(120, 0, 255, 0.05) 0%, transparent 50%);
    animation: bgShift 15s ease-in-out infinite alternate;
}

@keyframes bgShift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(5%, -3%); }
}

canvas#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    max-width: 600px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 1.2rem;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: #00d2ff;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.6), 0 0 60px rgba(0, 210, 255, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

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

.logo h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -1px;
    color: #ffffff;
}

.logo h1 span {
    color: #00d2ff;
}

.tagline {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00d2ff, transparent);
    margin: 0 auto 2rem;
}

.message {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.count-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.count-block span {
    font-size: 2.4rem;
    font-weight: 600;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px 20px;
    min-width: 72px;
    backdrop-filter: blur(10px);
    transition: border-color 0.3s;
}

.count-block span:hover {
    border-color: rgba(0, 210, 255, 0.3);
}

.count-block small {
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-link {
    display: inline-block;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1px;
    padding: 10px 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #00d2ff;
    border-color: rgba(0, 210, 255, 0.3);
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.1);
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 2.2rem;
    }

    .countdown {
        gap: 0.8rem;
    }

    .count-block span {
        font-size: 1.6rem;
        padding: 10px 14px;
        min-width: 56px;
    }

    .tagline {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
}
