/* SkullHost Maintenance Page */

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0b0b0f, #111118);
    color: #ffffff;
    height: 100%;
}

.maintenance-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 20px;
}

.maintenance-content {
    background: #111118;
    padding: 50px 40px;
    border-radius: 12px;
    border: 1px solid rgba(30,144,255,0.3);
    box-shadow: 0 0 40px rgba(30,144,255,0.2);
    max-width: 500px;
}

.maintenance-content h1 {
    color: #1e90ff;
    font-size: 28px;
    margin-bottom: 20px;
}

.maintenance-content p {
    color: #ccc;
    font-size: 16px;
    margin-bottom: 15px;
}

.maintenance-content a {
    color: #1e90ff;
    text-decoration: none;
    font-weight: bold;
}

.maintenance-content a:hover {
    text-decoration: underline;
}

.maintenance-icon {
    font-size: 50px;
    margin-top: 30px;
    animation: bounce 2s infinite;
}

/* subtle bounce animation */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* responsive */
@media (max-width: 600px) {
    .maintenance-content {
        padding: 40px 20px;
    }

    .maintenance-content h1 {
        font-size: 24px;
    }
}
