body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1e1e2f, #2a2a40);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.landing-container {
    max-width: 800px;
    padding: 20px;
}

h1 { font-size: 3rem; margin-bottom: 10px; }

.timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.time-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    min-width: 100px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.time-box span {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #00d2ff;
}

.newsletter input {
    padding: 12px;
    width: 250px;
    border: none;
    border-radius: 5px 0 0 5px;
    outline: none;
}

.newsletter button {
    padding: 12px 25px;
    border: none;
    background-color: #00d2ff;
    color: #1e1e2f;
    font-weight: bold;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
    transition: 0.3s;
}

.newsletter button:hover { background-color: #33e0ff; }