/* --- Global Reset and Setup --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif; /* Use a clean, sans-serif font */
    background-color: #1a1a2e; /* Dark background for a modern look */
    color: #ffffff; /* White text for contrast */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Make sure it takes up the full viewport height */
    text-align: center;
    padding: 20px; /* Add some padding for mobile screens */
}

/* --- Main Container Styling --- */
.coming-soon-container {
    max-width: 600px;
    width: 100%;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05); /* Slightly transparent white background */
    border-radius: 10px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px); /* Optional: Add a subtle blur effect */
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- Typography Styling --- */
h1 {
    font-size: 3em;
    margin-bottom: 15px;
    color: #00bcd4; /* Accent color */
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #ccc;
}

/* --- Countdown Styling (Optional) --- */
.countdown {
    display: flex;
    justify-content: space-around;
    margin: 40px 0;
    font-size: 1.5em;
    font-weight: bold;
}

.countdown span {
    background-color: #00bcd4;
    color: #1a1a2e;
    padding: 10px 15px;
    border-radius: 5px;
}

/* --- Notify Me/Form Styling (Optional) --- */
.notify-me p {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.notify-me form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.notify-me input[type="email"] {
    flex-grow: 1; /* Allows input to take up available space */
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    background-color: #333;
    color: #fff;
}

.notify-me input[type="email"]::placeholder {
    color: #999;
}

.notify-me button {
    padding: 12px 20px;
    background-color: #ff6b6b; /* Secondary accent color */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.notify-me button:hover {
    background-color: #e65a5a;
}

/* --- Media Queries for Responsiveness --- */
@media (max-width: 500px) {
    h1 {
        font-size: 2em; /* Smaller font on small screens */
    }

    .tagline {
        font-size: 1em;
    }
    
    .countdown {
        font-size: 1.2em;
        /* Stack components for the form on very small screens */
    }
    .notify-me form {
        flex-direction: column;
    }
    .notify-me button {
        width: 100%;
    }
}