/* Maintenance Page Styles */
:root {
    --primary: #e63946;
    --primary-dark: #c1121f;
    --black: #0a0a0a;
    --white: #ffffff;
    --gray: #6c757d;
    --gray-dark: #1a1a1a;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base Styles */
body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--black);
    color: var(--white);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    background-image: url('../../img/onyx_background_1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    line-height: 1.6;
}

/* Overlay */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1;
}

/* Container */
.container {
    max-width: 800px;
    position: relative;
    z-index: 2;
    padding: 50px;
    background: rgba(20, 20, 20, 0.85);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.8s ease-out;
}

/* Logo */
.logo {
    max-width: 220px;
    margin: 0 auto 30px;
    display: block;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
}

/* Typography */
h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    line-height: 1.2;
}

p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Maintenance Icon */
.maintenance-icon {
    font-size: 4.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite ease-in-out;
    text-shadow: 0 0 15px rgba(230, 57, 70, 0.5);
}

/* Status Info */
.status-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 3px solid var(--primary);
}

.status-info p {
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.status-info i {
    color: var(--primary);
    width: 24px;
    text-align: center;
}

/* Buttons */
.discord-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #5865F2;
    color: white !important;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin: 25px 0 15px;
    transition: var(--transition);
    border: none;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
    position: relative;
    overflow: hidden;
}

.discord-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: var(--transition);
}

.discord-btn:hover {
    background: #4752C4;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.4);
}

.discord-btn:hover::after {
    transform: translateX(100%);
}

.discord-btn i {
    font-size: 1.3rem;
}

/* Social Links */
.social-links {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    color: var(--white);
    font-size: 1.3rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.05);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: var(--transition);
}

.social-link:hover {
    color: var(--primary);
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-link:hover::before {
    transform: translateX(100%);
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 30px 20px;
        margin: 20px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    p {
        font-size: 1.1rem;
    }
    
    .maintenance-icon {
        font-size: 3.5rem;
    }
    
    .discord-btn {
        width: 100%;
        padding: 15px 20px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

/* Dark mode scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}
