@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Montserrat:wght@300;400;500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    color: #f8f8f8;
    background-color: #0d0d0d;
}

.maintenance-container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 20px;
    background: url('https://images.unsplash.com/photo-1515562141207-7a88fb7ce338?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.85);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    width: 100%;
    text-align: center;
    padding: 40px 30px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 4px;
}

.brand-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    letter-spacing: 4px;
    color: #d4af37;
    margin-bottom: 5px;
}

.tagline {
    font-size: 0.75rem;
    letter-spacing: 5px;
    color: #ccc;
    text-transform: uppercase;
}

.divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    margin: 25px auto;
    width: 60%;
}

.message-area h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 400;
}

.message-area p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #bbb;
    margin-bottom: 30px;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
}

.time-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 12px;
    min-width: 75px;
    border-radius: 4px;
}

.time-box span {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: #d4af37;
}

.time-box label {
    font-size: 0.7rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter-box p {
    font-size: 0.85rem;
    color: #aaa;
    margin-bottom: 12px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    max-width: 450px;
    margin: 0 auto 30px auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #333;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    outline: none;
    border-radius: 2px;
    font-size: 0.9rem;
    transition: border-color 0.3s;
}

.newsletter-form input:focus {
    border-color: #d4af37;
}

.newsletter-form button {
    padding: 12px 20px;
    background: #d4af37;
    border: 1px solid #d4af37;
    color: #000;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: background 0.3s, color 0.3s;
}

.newsletter-form button:hover {
    background: transparent;
    color: #d4af37;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    color: #ccc;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #d4af37;
}

@media (max-width: 576px) {
    .brand-title {
        font-size: 1.8rem;
    }

    .message-area h2 {
        font-size: 1.2rem;
    }

    .countdown-container {
        gap: 8px;
    }

    .time-box {
        min-width: 60px;
        padding: 8px;
    }

    .time-box span {
        font-size: 1.2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }
}