/* Modern Maintenance Mode Styles */
.mmm-maintenance-body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--primary-color) 0%, #764ba2 100%);
    color: var(--text-color);
    overflow-x: hidden;
    position: relative;
}

.mmm-maintenance-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.mmm-maintenance-content {
    text-align: center;
    max-width: 600px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mmm-logo {
    margin-bottom: 30px;
}

.mmm-logo img {
    max-width: 150px;
    height: auto;
    border-radius: 10px;
}

.mmm-title {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mmm-message {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.mmm-countdown {
    margin: 40px 0;
}

.mmm-countdown-title {
    font-size: 1.1em;
    margin-bottom: 20px;
    font-weight: 600;
}

.mmm-countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.mmm-countdown-item {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px 15px;
    min-width: 80px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.mmm-countdown-number {
    display: block;
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.mmm-countdown-label {
    font-size: 0.9em;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mmm-social-links {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.mmm-social-link {
    display: inline-block;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.mmm-social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.mmm-contact-info {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mmm-contact-info a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
}

.mmm-contact-info a:hover {
    text-decoration: underline;
}

/* Background Animation */
.mmm-background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.mmm-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.mmm-shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.mmm-shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.mmm-shape-3 {
    width: 100px;
    height: 100px;
    bottom: 10%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mmm-maintenance-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .mmm-title {
        font-size: 2em;
    }
    
    .mmm-countdown-timer {
        gap: 10px;
    }
    
    .mmm-countdown-item {
        min-width: 70px;
        padding: 15px 10px;
    }
    
    .mmm-countdown-number {
        font-size: 2em;
    }
    
    .mmm-social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .mmm-social-link {
        width: 200px;
        text-align: center;
    }
}