:root {
    --primary-blue: #007BFF;
    --text-color: #ffffff;
    --overlay-color: rgba(10, 25, 47, 0.85); /* Dark blue-gray overlay */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
}

.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('maintenance_bg.png');
    background-size: cover;
    background-position: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-color);
    backdrop-filter: blur(3px); /* Slight blur to improve text readability */
}

.content-wrapper {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.content-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1s ease-out;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 40px;
    background: linear-gradient(90deg, #fff, #a0cfff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 123, 255, 0.2);
    border: 1px solid rgba(0, 123, 255, 0.4);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #4da3ff;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #4da3ff;
    border-radius: 50%;
    margin-right: 10px;
    animation: pulse 2s infinite;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.progress-container {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 30%;
    background: var(--primary-blue);
    border-radius: 3px;
    box-shadow: 0 0 10px var(--primary-blue);
    animation: progress 2s infinite ease-in-out;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(77, 163, 255, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(77, 163, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(77, 163, 255, 0); }
}

@keyframes progress {
    0% { left: -30%; }
    100% { left: 100%; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .content-card {
        padding: 30px;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    p {
        font-size: 1rem;
    }
}
