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

/* BODY + BACKGROUND */
body {
    font-family: Arial, sans-serif;

    background:
        linear-gradient(rgba(255,255,255,0.96), rgba(255,255,255,0.96)),
        url('background.jpeg') no-repeat center center;

    background-size: cover;

    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* CONTAINER */
.container {
    text-align: center;
    max-width: 650px;
    width: 90%;

    background: rgba(255, 255, 255, 0.92);
    padding: 55px 45px;
    border-radius: 20px;

    backdrop-filter: blur(14px);

    box-shadow: 
        0 20px 60px rgba(0,0,0,0.08),
        0 5px 20px rgba(0,0,0,0.05);

    animation: fadeUp 0.8s ease;
}

/* LOGO */
.logo {
    width: 220px;
    margin-bottom: 25px;
    image-rendering: -webkit-optimize-contrast;
}

/* HEADINGS */
h3 {
    color: #333;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

h1 {
    font-size: 46px;
    margin: 10px 0 15px;
    font-weight: 800;
    letter-spacing: -1px;
}

.green { color: #0a7c3d; }
.red { color: #e31e23; }

/* TEXT */
p {
    color: #555;
    font-size: 16px;
    margin-bottom: 15px;
}

/* TAGLINE */
.tagline {
    font-weight: 600;
    color: #333;
}

/* PROGRESS */
.progress-bar {
    width: 100%;
    height: 12px;
    background: #e0e0e0;
    border-radius: 20px;
    margin: 25px 0 10px;
    overflow: hidden;
}

.progress {
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, #0a7c3d, #16a34a);
}

.progress-text {
    font-weight: bold;
    color: #0a7c3d;
    margin-bottom: 25px;
}

/* COUNTDOWN */
.countdown {
    display: flex;
    gap: 10px;
    margin: 25px 0;
}

.countdown div {
    flex: 1;
    background: white;
    padding: 18px 10px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.countdown span {
    font-size: 26px;
    font-weight: bold;
}

.countdown p {
    font-size: 12px;
    color: #777;
}

/* FORM */
.notify-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.notify-form input {
    flex: 1;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.notify-form input:focus {
    outline: none;
    border-color: #0a7c3d;
}

/* BUTTON */
.notify-form button {
    background: #0a7c3d;
    color: white;
    border: none;
    padding: 14px 22px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(10,124,61,0.3);
}

.notify-form button:hover {
    background: #086a33;
    transform: translateY(-2px);
}

/* FOOTER */
footer {
    margin-top: 30px;
    font-size: 13px;
    color: #777;
}

/* ANIMATION */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}