:root {
    --primary-color: #ffffff;
    /* White text for dark bg */
    --accent-color: #d4af37;
    /* Brighter Gold */
    --text-color: #f0f0f0;
    /* Off-white */
    --bg-color: transparent;
    --secondary-bg: #f9f9f9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #1a1a1a;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-color);
    line-height: 1.6;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.maintenance-container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    animation: fadeIn 1.2s ease-out;
}

.content-wrapper {
    text-align: center;
    max-width: 800px;
    padding: 3rem;
    background: transparent;
    /* Removed background and shadow */
}

.logo-container {
    margin-bottom: 2.5rem;
}

.logo {
    max-width: 250px;
    height: auto;
    display: block;
    margin: 0 auto;
    /* Add a subtle glow to help logo pop against dark bg */
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    /* Increased size for impact */
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 2.5rem;
    font-weight: 300;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.divider {
    height: 3px;
    width: 80px;
    background-color: var(--accent-color);
    margin: 0 auto 2.5rem;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.details {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 0.5rem;
}

.domain-link {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--accent-color);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.domain-link:hover {
    color: #ffd700;
    border-bottom: 1px solid #ffd700;
    transform: translateY(-2px);
}

footer {
    margin-top: auto;
    padding-top: 2rem;
    font-size: 0.85rem;
    color: #e0e0e0;
    /* Light text for dark background */
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 600px) {
    .content-wrapper {
        padding: 1.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    .logo {
        max-width: 200px;
    }
}