/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #fff;
    text-align: center;
}

/* Overlay for effect */
.overlay {
    width: 100%;
    padding: 20px;
}

.container {
    max-width: 700px;
    margin: auto;
}

.title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 40px;
    color: #dcdcdc;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.time {
    background: rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 12px;
    min-width: 90px;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.2);
}

.time span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #00e0ff;
}

.time p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ddd;
}

.release-text {
    font-size: 1rem;
    color: #f1f1f1;
    margin-top: 20px;
}
