* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #502314 0%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.maintenance-container {
    background: #f5ebdc;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 1200px;
    width: 90%;
    position: relative;
    overflow: hidden;
}

.maintenance-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #feac00;
}


.maintenance-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.maintenance-logo {
    display: flex!important;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.maintenance-logo-img {
    width: 150px;
    height: auto;
}

.maintenance-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #502314;
}

.maintenance-subtitle {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.maintenance-message_1 {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid #feac00;
}

.maintenance-message_2 {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-right: 4px solid #feac00;
}

.maintenance-message p {
    color: #502314;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.maintenance-message p:last-child {
    margin-bottom: 0;
}

.access-link {
    display: inline-block;
    background: #feac00;
    color: #502314;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.access-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    background: #502314;
    color: #feac00;
}


.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fed7d7;
    color: #c53030;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #c53030;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

@media (max-width: 480px) {
    .maintenance-container {
        padding: 2rem 1.5rem;
    }
            
    .maintenance-title {
        font-size: 1.5rem;
    }
            
    .maintenance-icon {
        font-size: 3rem;
    }
}