/* =====================================================
   MOBİL CİHAZ ENGEL OVERLAY
   Mobil cihazlardan web erişimini engelleyip
   App Store / APK / Yapım Aşamasında mesajı gösterir
   ===================================================== */

.mobile-block-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    text-align: center;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
    .mobile-block-overlay {
        display: flex;
    }
}

/* =====================================================
   ADISYONIX VARYANTI - Beyaz Tonlar
   ===================================================== */
.mobile-block-adisyonix {
    background: linear-gradient(160deg, #ffffff 0%, #fef7f0 40%, #fff7ed 100%);
}

.mobile-block-adisyonix::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 20%, rgba(249, 115, 22, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(251, 146, 60, 0.06) 0%, transparent 50%);
    pointer-events: none;
    animation: mbo-glow 8s ease-in-out infinite alternate;
}

/* =====================================================
   HESAPMIX VARYANTI - Beyaz Tonlar
   ===================================================== */
.mobile-block-hesapmix {
    background: linear-gradient(160deg, #ffffff 0%, #f0f7ff 40%, #e8f4ff 100%);
}

.mobile-block-hesapmix::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 20%, rgba(0, 102, 204, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
    animation: mbo-glow 8s ease-in-out infinite alternate;
}

@keyframes mbo-glow {
    0% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

/* =====================================================
   İÇERİK ELEMANLARI
   ===================================================== */
.mbo-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-width: 380px;
    width: 100%;
    animation: mbo-fadeIn 0.6s ease-out;
}

@keyframes mbo-fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Logo - Büyük */
.mbo-logo {
    width: 140px;
    height: 140px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.08));
    animation: mbo-float 3s ease-in-out infinite;
}

@keyframes mbo-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Başlık - Koyu Renk */
.mbo-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', sans-serif;
}

/* Alt başlık - Koyu Gri */
.mbo-subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 2rem;
    max-width: 300px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', sans-serif;
}

/* =====================================================
   BUTONLAR (App Store / APK)
   ===================================================== */
.mbo-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    margin-bottom: 2rem;
}

.mbo-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.875rem;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', sans-serif;
}

.mbo-btn-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.mbo-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.mbo-btn-text-small {
    font-size: 0.6875rem;
    font-weight: 400;
    opacity: 0.85;
}

.mbo-btn-text-main {
    font-size: 1.0625rem;
    font-weight: 700;
}

/* App Store butonu - Koyu */
.mbo-btn-appstore {
    background: #1e293b;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.mbo-btn-appstore:hover {
    transform: translateY(-2px);
    background: #0f172a;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* APK İndir butonu */
.mbo-btn-apk {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
}

.mbo-btn-apk:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.4);
}

/* =====================================================
   YAPIM AŞAMASINDA (Hesapmix) - Açık Tema
   ===================================================== */
.mbo-wip-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 102, 204, 0.04);
    border-radius: 20px;
    border: 1px solid rgba(0, 102, 204, 0.1);
    width: 100%;
}

.mbo-wip-icon {
    font-size: 3rem;
    animation: mbo-spin-slow 4s linear infinite;
}

@keyframes mbo-spin-slow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.mbo-wip-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', sans-serif;
}

.mbo-wip-text {
    font-size: 0.9375rem;
    font-weight: 400;
    color: #64748b;
    line-height: 1.6;
    max-width: 280px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', sans-serif;
}

/* =====================================================
   DESTEK HATTI - Açık Tema
   ===================================================== */
.mbo-support {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
    font-size: 0.8125rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', sans-serif;
}

.mbo-support:hover {
    color: #64748b;
}

.mbo-support i {
    font-size: 0.875rem;
}

/* =====================================================
   AYIRICI ÇİZGİ - Açık Tema
   ===================================================== */
.mbo-divider {
    width: 40px;
    height: 2px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 1px;
    margin-bottom: 1.5rem;
}

/* =====================================================
   KÜÇÜK EKRANLAR (kısa telefonlar)
   ===================================================== */
@media (max-width: 768px) and (max-height: 600px) {
    .mbo-logo {
        width: 90px;
        height: 90px;
        margin-bottom: 1rem;
    }

    .mbo-title {
        font-size: 1.375rem;
    }

    .mbo-subtitle {
        font-size: 0.875rem;
        margin-bottom: 1.25rem;
    }

    .mbo-btn {
        padding: 0.75rem 1.25rem;
    }

    .mbo-wip-section {
        padding: 1rem;
    }

    .mbo-wip-icon {
        font-size: 2rem;
    }
}
