body {
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;

    background: linear-gradient(
        135deg,
        #7a1f1f 0%,
        #b73737 50%,
        #e53935 100%
    );

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}


.logo{
    height: 100px;
}


/* MAIN */
.maintenance-container {
    max-width: 900px;
    width: 100%;
    padding: 2rem;
}

/* TITLE */
.maintenance-container h1 {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.85;
    margin-bottom: 4rem;
    line-height: 1.6;
}

/* COUNTDOWN */
.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.time-box {
    width: 180px;
    height: 180px;
    border-radius: 18px;

    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(10px);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    box-shadow: 0 25px 40px rgba(0,0,0,0.35);
    transition: 0.3s ease;
}

.time-box:hover {
    transform: translateY(-10px);
}

.time-box h2 {
    width: 180px;
    height: 180px;
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
}
}

.time-box span {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
    margin-top: 0.5rem;
}

/* NEWSLETTER */
.newsletter h3 {
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.newsletter input {
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: none;
    width: 260px;
    outline: none;
    font-size: 0.9rem;
    margin-right: 0.8rem;
}

.newsletter button {
    padding: 1rem 2rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    background: #111;
    color: #fff;
    transition: 0.3s ease;
}

.newsletter button:hover {
    background: #000;
    transform: translateY(-2px);
}



@media (max-width: 768px) {

    .maintenance-wrapper {
        padding: 1.5rem;
    }

    .headline {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .countdown {
        gap: 1rem;
    }

    .time-box {
        width: 90px;
        height: 90px;
        border-radius: 14px;
    }

    .time-box h2 {
        font-size: 2.8rem;
        font-weight: 800;
    }

    .time-box span {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }

    .notify-section h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .notify-section form {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }

    .notify-section input {
        width: 100%;
        max-width: 280px;
        padding: 0.8rem 1rem;
    }

    .notify-section button {
        width: 100%;
        max-width: 280px;
        padding: 0.8rem 1rem;
    }
}
