* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('https://images.unsplash.com/photo-1519003722824-194d4455a60c?auto=format&fit=crop&q=80&w=2000') no-repeat center center/cover;
    color: white;
    text-align: center;
    overflow: hidden;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 900px;
}

/* Header & Logo */
.brand {
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 800;
    letter-spacing: 4px;
    color: #ffffff;
    text-transform: uppercase;
}

.brand .suffix {
    color: #00cccc;
    font-weight: 300;
    font-size: 0.6em;
}

.divider {
    width: 80px;
    height: 4px;
    background-color: #00cccc;
    margin: 15px auto;
}

.subtitle {
    font-size: 1rem;
    letter-spacing: 5px;
    font-weight: 300;
    opacity: 0.8;
    text-transform: uppercase;
}

.status-text {
    margin-top: 30px;
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
}

/* Countdown */
.countdown-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0;
}

.time-box {
    background: rgba(255, 255, 255, 0.07);
    padding: 20px;
    border-radius: 12px;
    min-width: 110px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.time-box span {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    color: #00cccc;
}

.time-box p {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    opacity: 0.7;
}

/* Form */
.notify-section h3 {
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.subscribe-form {
    display: flex;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 450px;
    margin: 0 auto;
    border-radius: 4px;
    overflow: hidden;
}

.subscribe-form input {
    background: transparent;
    border: none;
    padding: 15px;
    color: white;
    flex-grow: 1;
    outline: none;
}

.subscribe-form button {
    background: #00cccc;
    border: none;
    color: #000;
    font-weight: bold;
    padding: 0 25px;
    cursor: pointer;
    transition: 0.3s;
}

.subscribe-form button:hover {
    background: #ffffff;
}

/* Footer */
.social-links {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 2px;
    opacity: 0.5;
    transition: 0.3s;
}

.social-links a:hover {
    opacity: 1;
    color: #00cccc;
}

@media (max-width: 600px) {
    .time-box {
        min-width: 80px;
        padding: 10px;
    }
    .time-box span {
        font-size: 1.8rem;
    }
}