* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #00264d;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.container {
    text-align: center;
    z-index: 10;
    position: relative;
}

.maintenance-content {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Logo Bölümü */
.logo-section {
    margin-bottom: 40px;
}

.logo-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: logoFloat 3s ease-in-out infinite;
}

.logo-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    object-fit: contain;
}

.site-title {
    font-size: 28px;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 10px;
}

/* Mesaj Bölümü */
.message-section {
    margin-bottom: 40px;
}

.main-message {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.sub-message {
    font-size: 18px;
    color: #a0aec0;
    font-weight: 400;
    line-height: 1.5;
}

/* Progress Bar Bölümü */
.progress-section {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.progress-label {
    font-size: 16px;
    font-weight: 600;
    color: #e2e8f0;
}

.progress-percentage {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #b1b1b1, #acacac);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.progress-bar-container {
    margin-bottom: 25px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #b1b1b1, #acacac);
    border-radius: 10px;
    width: 0%;
    transition: width 2s ease-in-out;
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShine 2s infinite;
}

.progress-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.progress-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.progress-item.completed {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.progress-item.in-progress {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.2);
    animation: pulse 2s infinite;
}

.progress-item.pending {
    background: rgba(107, 114, 128, 0.1);
    color: #6b7280;
    border: 1px solid rgba(107, 114, 128, 0.2);
}

.progress-icon {
    font-size: 16px;
    font-weight: bold;
}

/* Takım Bölümü */
.team-section {
    margin-bottom: 30px;
}

.team-text {
    font-size: 16px;
    color: #cbd5e0;
    font-weight: 500;
    background: linear-gradient(135deg, #b1b1b1, #acacac);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Loading Animasyonu */
.loading-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.loading-dots span {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #b1b1b1, #acacac);
    border-radius: 50%;
    animation: loadingDots 1.4s ease-in-out infinite both;
}

.loading-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.loading-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

/* Arka Plan Animasyonu */
.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: 1s;
}

/* Animasyonlar */
@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes loadingDots {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes progressShine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .maintenance-content {
        padding: 40px 20px;
        margin: 20px;
    }
    
    .main-message {
        font-size: 24px;
    }
    
    .sub-message {
        font-size: 16px;
    }
    
    .logo-container {
        width: 100px;
        height: 100px;
    }
    
    .site-title {
        font-size: 24px;
    }
    
    .progress-section {
        padding: 20px;
    }
    
    .progress-details {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .progress-item {
        font-size: 13px;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .maintenance-content {
        padding: 30px 15px;
    }
    
    .main-message {
        font-size: 20px;
    }
    
    .sub-message {
        font-size: 14px;
    }
}
