/* Genel Sıfırlama ve Arka Plan */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0b0f19;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

/* Konteyner */
.maintenance-container {
    position: relative;
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    z-index: 1;
}

/* --- ANIMASYONLU ARKA PLAN --- */
.animation-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.circle {
    position: absolute;
    border: 2px solid transparent;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle-1 {
    width: 300px;
    height: 300px;
    border-top-color: #3b82f6;
    border-bottom-color: #1d4ed8;
    animation: rotate 4s linear infinite;
}

.circle-2 {
    width: 400px;
    height: 400px;
    border-left-color: #10b981;
    border-right-color: #065f46;
    animation: rotate-reverse 6s linear infinite;
}

.circle-3 {
    width: 500px;
    height: 500px;
    border-top-color: #ec4899;
    border-bottom-color: #9d174d;
    opacity: 0.5;
    animation: rotate 10s linear infinite;
}

/* --- İÇERİK STİLLERİ --- */
.gear-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    background: linear-gradient(45deg, #3b82f6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    font-size: 1.1rem;
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* --- İLERLEME ÇUBUĞU (PROGRESS BAR) --- */
.progress-bar-container {
    background-color: #1f2937;
    border-radius: 20px;
    padding: 4px;
    width: 80%;
    margin: 0 auto 1rem auto;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.progress-bar {
    background: linear-gradient(90deg, #3b82f6, #10b981);
    height: 12px;
    border-radius: 10px;
    width: 75%; /* Yüklenme oranını buradan değiştirebilirsiniz */
    position: relative;
    animation: glow 1.5s ease-in-out infinite alternate;
}

.status-text {
    font-size: 0.9rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- KEYFRAMES (ANIMASYONLAR) --- */
@keyframes rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes rotate-reverse {
    0% { transform: translate(-50%, -50%) rotate(360deg); }
    100% { transform: translate(-50%, -50%) rotate(0deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes glow {
    from { box-shadow: 0 0 5px #3b82f6; }
    to { box-shadow: 0 0 15px #10b981; }
}