body.ilays-maintenance-mode {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.maintenance-container {
    max-width: 800px;
    padding: 2rem;
    margin: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.maintenance-content {
    padding: 2rem;
}

.maintenance-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 2rem;
}

h1 {
    color: #2d3748;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

h2 {
    color: #2d3748;
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #6C63FF;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    margin: 1rem 0;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #5a52d5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 99, 255, 0.2);
}

.contact-info {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.contact-info a {
    color: #4299e1;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

.ilays-branding {
    margin-top: 2rem;
    font-size: 0.95em;
    opacity: 0.7;
}

.ilays-branding a {
    color: #6C63FF;
    font-weight: bold;
    text-decoration: none;
}

.ilays-branding a:hover {
    text-decoration: underline;
}

.ilays-upsell {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f7fafc;
    border-radius: 8px;
}

.ilays-upsell ul {
    list-style-type: none;
    padding: 0;
    margin: 1rem 0;
}

.ilays-upsell li {
    margin: 0.5rem 0;
    font-size: 1.1rem;
    color: #4a5568;
}

.permanent-deletion-warning {
    background: #fff3f3;
    border: 2px solid #ff4444;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.permanent-deletion-warning h1 {
    color: #ff4444;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.permanent-deletion-warning .warning-text {
    color: #ff4444;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 68, 68, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 68, 68, 0);
    }
}

@media (max-width: 768px) {
    .maintenance-container {
        margin: 1rem;
        padding: 1rem;
    }
    
    .maintenance-content {
        padding: 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    p {
        font-size: 1rem;
    }
} 