body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #333;
}

.maintenance-container {
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 600px;
    width: 90%;
}

h1 { font-size: 2.5rem; color: #2d3436; margin-bottom: 10px; }
p { color: #636e72; line-height: 1.6; }

.countdown {
    display: flex;
    justify-content: space-around;
    margin: 30px 0;
}

.time-box span {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #0984e3;
}

.newsletter input {
    padding: 12px;
    border: 1px solid #dfe6e9;
    border-radius: 5px;
    width: 60%;
}

.newsletter button {
    padding: 12px 20px;
    background-color: #0984e3;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter button:hover { background-color: #74b9ff; }
