body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #00091B; /* Dark background */
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    max-width: 600px;
    padding: 20px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 5px;
}

#timer {
    font-size: 2rem;
    margin: 30px 0;
    font-weight: bold;
    color: #ffcc00;
}

.signup-form input {
    padding: 10px;
    width: 250px;
    border: none;
    border-radius: 5px 0 0 5px;
}

.signup-form button {
    padding: 10px 20px;
    border: none;
    background: #ffcc00;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
}
