body {
    margin: 0;
    font-family: Arial, sans-serif;
    overflow: hidden; /* Prevent scroll on parallax */
    color: #fff;
}

.parallax-hero {
    height: 100vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

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

.content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
}

h2 {
    font-size: 2em;
    margin-bottom: 1em;
    color: #0ea5e9;
}

p {
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto 2em auto;
    line-height: 1.5;
}

#countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 2em;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    font-size: 2em;
    font-weight: bold;
}

.countdown-item span:last-child {
    font-size: 0.5em;
    font-weight: normal;
    color: #ccc;
}

.notify-button {
    background-color: #0ea5e9;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1em;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.notify-button:hover {
    background-color: #0c8dd8;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5em;
    }
    h2 {
        font-size: 1.5em;
    }
    p {
        font-size: 1em;
    }
    .countdown-item {
        font-size: 1.5em;
    }
    .notify-button {
        padding: 10px 20px;
        font-size: 1em;
    }
}