/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variables for easy color changes */
:root {
    --primary-color: #007bff; /* Blue for a tech/hosting look */
    --accent-color: #ffc107; /* Yellow/Gold for 'Star' or highlight */
    --background-color: #1a1a2e; /* Dark background */
    --text-color: #e6e6fa; /* Light text */
    --card-color: #2c2c43;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    text-align: center;
}

.container {
    max-width: 900px;
    width: 100%;
    padding: 40px;
    border-radius: 15px;
    /* Optional: subtle background */
    /* background-color: var(--card-color); */
    /* Optional: Subtle shadow */
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); */
}

/* Logo Styling */
.logo {
    font-size: 3em;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-color);
}
.dot {
    color: var(--primary-color);
}

/* Message Styling */
.message h2 {
    font-size: 2.5em;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 10px;
}
.message p {
    font-size: 1.2em;
    font-weight: 300;
    margin-bottom: 40px;
}

/* Countdown Timer Styling */
.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.countdown-item {
    background-color: var(--card-color);
    padding: 20px 30px;
    border-radius: 10px;
    min-width: 120px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.countdown-item span:first-child {
    display: block;
    font-size: 3.5em;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.countdown-item span:last-child {
    display: block;
    font-size: 0.9em;
    text-transform: uppercase;
    margin-top: 5px;
    font-weight: 600;
}

/* Signup Form Styling */
.signup-section h3 {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: var(--text-color);
}

.signup-form {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 5px;
    overflow: hidden;
}

.signup-form input[type="email"] {
    flex-grow: 1;
    padding: 15px;
    border: none;
    font-size: 1em;
    background-color: #3f3f5a; /* Slightly lighter dark background */
    color: var(--text-color);
}

.signup-form input[type="email"]::placeholder {
    color: #a0a0c0;
}

.signup-form button {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 25px;
    border: none;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.signup-form button:hover {
    background-color: #0056b3;
}

.footer-note {
    margin-top: 15px;
    font-size: 0.85em;
    opacity: 0.7;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .logo {
        font-size: 2.5em;
    }
    
    .message h2 {
        font-size: 2em;
    }

    .countdown {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 15px 10px;
    }

    .countdown-item span:first-child {
        font-size: 2.5em;
    }

    .signup-form {
        flex-direction: column;
    }

    .signup-form input[type="email"],
    .signup-form button {
        width: 100%;
        margin-bottom: 10px;
    }
}