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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(120deg, #181a1b 0%, #232526 100%);
    color: #ffffff;
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    width: 100vw;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    background: repeating-linear-gradient(135deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 2px, transparent 2px, transparent 40px);
    pointer-events: none;
    animation: bgmove 20s linear infinite;
}

@keyframes bgmove {
    0% { background-position: 0 0; }
    100% { background-position: 200px 200px; }
}

.container {
    width: 100vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 1;
}

.content {
    width: 100%;
    max-width: 900px;
    margin: 3vw auto;
    background: rgba(30, 32, 34, 0.85);
    backdrop-filter: blur(16px);
    border-radius: 32px;
    padding: 4rem 2rem 3rem 2rem;
    box-shadow: 0 12px 48px 0 rgba(0,0,0,0.25);
    text-align: center;
    z-index: 2;
}

h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #00ff87, #60efff 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

.subtitle {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #e0e0e0;
    font-weight: 500;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin: 2.5rem 0 2rem 0;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
    background: rgba(40, 44, 52, 0.85);
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.18);
    padding: 1.5rem 1rem 1.2rem 1rem;
    margin: 0.5rem 0;
    transition: transform 0.2s;
}

.countdown-item:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 8px 32px 0 rgba(0,255,135,0.10);
}

.countdown-item span:first-child {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(0,255,135,0.08);
}

.label {
    font-size: 1.1rem;
    color: #a0a0a0;
    font-weight: 500;
    letter-spacing: 1px;
}

.launch-date {
    font-size: 1.3rem;
    margin: 2.5rem 0 1.5rem 0;
    color: #00ff87;
    font-weight: 600;
}

.contact {
    margin-top: 2.5rem;
}

.contact p {
    margin-bottom: 0.5rem;
    color: #a0a0a0;
    font-size: 1.05rem;
}

.email-link {
    color: #60efff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #00ff87;
    text-decoration: underline;
}

@media (max-width: 1100px) {
    .content {
        max-width: 98vw;
        padding: 3rem 1rem 2rem 1rem;
    }
    h1 {
        font-size: 2.5rem;
    }
    .countdown-item {
        min-width: 90px;
        padding: 1rem 0.5rem 0.8rem 0.5rem;
    }
    .countdown-item span:first-child {
        font-size: 2.2rem;
    }
}

@media (max-width: 700px) {
    .content {
        padding: 1.5rem 0.2rem 1rem 0.2rem;
        border-radius: 0;
    }
    .countdown {
        gap: 1rem;
    }
    h1 {
        font-size: 1.5rem;
    }
    .countdown-item {
        min-width: 60px;
        padding: 0.7rem 0.2rem 0.5rem 0.2rem;
    }
    .countdown-item span:first-child {
        font-size: 1.2rem;
    }
    .launch-date {
        font-size: 1rem;
    }
    .email-link {
        font-size: 1rem;
    }
} 