/* --- SAYFA GENELİ (Bakım Sayfası) --- */
body {
    background-color: #050505;
    /* Senin klasik kırmızı kareli arka planın */
    background-image: 
        linear-gradient(rgba(220, 38, 38, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(220, 38, 38, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #fff;
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Kaydırma çubuğunu gizle */
}

/* --- ORTALAMA KAPSAYICISI --- */
.maintenance-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    z-index: 2;
}

/* --- ANA KART --- */
.maintenance-card {
    text-align: center;
    max-width: 600px;
    padding: 50px;
    background: rgba(24, 24, 27, 0.8); /* Arkası hafif şeffaf */
    border: 1px solid #27272a;
    border-radius: 20px;
    backdrop-filter: blur(10px); /* Arka planı buzlu cam yap */
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
    border-top: 3px solid #ef4444; /* Üstte kırmızı çizgi */
}

/* --- İKON VE ANİMASYON --- */
.icon-box {
    font-size: 4rem;
    color: #ef4444;
    margin-bottom: 20px;
    display: inline-block;
}

/* Çarkı döndüren animasyon kodu */
.fa-gear {
    animation: spin 4s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* --- METİNLER --- */
h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

p {
    font-size: 1.1rem;
    color: #a1a1aa;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* --- YÜKLENİYOR ÇUBUĞU (Progress Bar) --- */
.progress-container {
    width: 100%;
    height: 6px;
    background: #27272a;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
}

.progress-bar {
    width: 85%; /* Doluluk oranı */
    height: 100%;
    background: #ef4444;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
    position: relative;
    animation: loading 2s ease-in-out infinite; /* Yanıp sönme efekti */
}

/* --- BUTON --- */
.discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #5865F2;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.discord-btn:hover {
    background: #4752c4;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(88, 101, 242, 0.3);
}