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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #2d1b69 0%, #1a0f3a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-x: hidden;
}

/* Header Top */
.header-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background: rgba(45, 27, 105, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 100;
}

.logo-top {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.brand-info {
    text-align: left;
}

.title-main {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.subtitle-main {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin: 4px 0 0 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin-top: 120px;
    animation: fadeInUp 0.5s ease-out;
    padding: 0 20px;
}

.maintenance-card {
    background: transparent;
    padding: 60px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* Sol İçerik */
.left-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Sağ İçerik */
.right-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
    padding: 16px 24px;
    border-radius: 50px;
    font-weight: 500;
    border: 2px solid rgba(255, 193, 7, 0.3);
    backdrop-filter: blur(10px);
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.2);
}

.status-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-icon svg {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(0.95);
    }
}

.description {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    margin: 0;
    font-weight: 300;
    text-align: center;
}

.info-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 24px 20px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    min-width: 200px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.time-card {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(255, 152, 0, 0.1));
    border: 2px solid rgba(255, 193, 7, 0.3);
    box-shadow: 0 8px 32px rgba(255, 193, 7, 0.2);
}

.update-card {
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.15), rgba(139, 92, 246, 0.1));
    border: 2px solid rgba(107, 70, 193, 0.3);
    box-shadow: 0 8px 32px rgba(107, 70, 193, 0.2);
}

.info-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.info-icon {
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.info-icon svg {
    transition: transform 0.3s ease;
}

.info-item:hover .info-icon svg {
    transform: scale(1.1) rotate(5deg);
}

.info-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 6px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.info-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
    margin: 0;
    font-weight: 500;
}

/* Progress Bar Section */
.progress-section {
    background: rgba(255, 255, 255, 0.08);
    padding: 32px;
    border-radius: 20px;
    margin-top: 40px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    grid-column: 1 / -1;
    text-align: center;
}

.progress-section h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.progress-container {
    max-width: 400px;
    margin: 0 auto;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffc107, #ff9800);
    border-radius: 50px;
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.progress-text {
    color: #ffc107;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.time-remaining {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.discord-section {
    background: rgba(107, 70, 193, 0.2);
    padding: 40px;
    border-radius: 20px;
    margin-top: 40px;
    border: 2px solid rgba(107, 70, 193, 0.3);
    backdrop-filter: blur(10px);
    grid-column: 1 / -1;
    text-align: center;
    transform: rotate(-0.5deg);
}

.discord-section h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 12px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.discord-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.discord-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #6b46c1;
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(107, 70, 193, 0.3);
}

.discord-link:hover {
    background: #553c9a;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(107, 70, 193, 0.4);
}

.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 40px;
    text-align: center;
    grid-column: 1 / -1;
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 24px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.footer .status-badge {
    margin: 20px 0;
    transform: rotate(0deg);
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 4px;
}

.loading-dots span {
    width: 8px;
    height: 8px;
    background: #6b46c1;
    border-radius: 50%;
    animation: bounce 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; }

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



@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .header-top {
        padding: 15px;
        gap: 15px;
    }

    .logo-top {
        width: 40px;
        height: 40px;
    }

    .title-main {
        font-size: 1.4rem;
    }

    .subtitle-main {
        font-size: 0.9rem;
    }

    .container {
        margin-top: 100px;
        padding: 0 15px;
    }

    .maintenance-card {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px 0;
        text-align: center;
    }

    .left-content,
    .right-content {
        justify-content: center;
    }

    .info-cards {
        flex-direction: row;
        gap: 15px;
        justify-content: center;
    }

    .info-item {
        min-width: 140px;
        padding: 16px;
    }

    .description {
        font-size: 1.1rem;
        max-width: 100%;
    }

    .progress-section {
        padding: 24px 20px;
        margin-top: 30px;
    }
    
    .progress-section h3 {
        font-size: 1.1rem;
    }
    
    .progress-container {
        max-width: 100%;
    }
    
    .progress-info {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .discord-section {
        padding: 30px 20px;
        margin-top: 30px;
    }
    
    .status-badge {
        transform: rotate(0deg);
    }
    
    .time-card,
    .update-card {
        transform: none;
    }
    
    .info-item:hover {
        transform: translateY(-3px) scale(1.01);
    }
}
