/* ==================== DEX SAYFASI ==================== */

.coming-soon-box {
    box-shadow: 0 8px 24px rgba(88, 166, 255, 0.1);
    animation: slideUp 0.6s ease-out;
    border: 1px solid #58a6ff;
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .coming-soon-box {
    box-shadow: 0 8px 24px rgba(9, 105, 218, 0.1);
    border-color: #0969da;
}

.coming-soon-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(88, 166, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.coming-soon-box h1 {
    font-size: 48px;
    color: #58a6ff;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: 1px;
}

[data-theme="light"] .coming-soon-box h1 {
    color: #0969da;
}

.coming-soon-box h3 {
    color: #c9d1d9;
    margin-bottom: 15px;
    font-size: 20px;
}

[data-theme="light"] .coming-soon-box h3 {
    color: #24292f;
}

.coming-soon-box p {
    color: #8b949e;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

[data-theme="light"] .coming-soon-box p {
    color: #57606a;
}

.status-badge {
    display: inline-block;
    background-color: #f0ad4e;
    color: #0b0d10;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s ease-in-out infinite;
}

.status-badge.active {
    background-color: #f0ad4e;
    box-shadow: 0 0 12px rgba(240, 173, 78, 0.4);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .coming-soon-box {
        padding: 40px !important;
    }
    
    .coming-soon-box h1 {
        font-size: 36px;
    }
    
    .coming-soon-box h3 {
        font-size: 18px;
    }
    
    .coming-soon-box p {
        font-size: 14px;
    }
}