/* ==========================================================================
   PREMIUM ABONELİK STİLLERİ
========================================================================== */

/* Premium Rozet (Yorum + Forum yazarı yanında) */
.mv-premium-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fff;
    font-size: 9px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin-left: 5px;
    vertical-align: middle;
    flex-shrink: 0;
}
.mv-premium-badge i { font-size: 9px; }

/* Profil sayfasındaki premium rozet (isim yanında) */
.mv-profile-premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    margin-left: 8px;
    vertical-align: middle;
}
.mv-profile-premium-badge i { font-size: 10px; }

/* Premium Ol Kartı (Profil sayfası) */
.mv-premium-card {
    background: linear-gradient(135deg, #fef3c7 0%, #fff7ed 50%, #fef9c3 100%);
    border: 1px solid #fbbf24;
    border-radius: var(--r, 12px);
    padding: 24px;
    margin-bottom: 20px;
    text-align: center;
}
.mv-premium-card-icon {
    font-size: 36px;
    color: #f59e0b;
    margin-bottom: 12px;
}
.mv-premium-card h3 {
    margin: 0 0 8px;
    font-size: 20px;
    color: #92400e;
}
.mv-premium-card p {
    margin: 0 0 16px;
    font-size: 13px;
    color: #a16207;
    line-height: 1.6;
}
.mv-premium-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    text-align: left;
    display: inline-block;
}
.mv-premium-features li {
    padding: 4px 0;
    font-size: 13px;
    color: #92400e;
    font-weight: 500;
}
.mv-premium-features li i {
    color: #10b981;
    margin-right: 6px;
    width: 16px;
}
.mv-premium-price {
    font-size: 28px;
    font-weight: 800;
    color: #92400e;
    margin-bottom: 4px;
}
.mv-premium-price small {
    font-size: 14px;
    font-weight: 500;
    color: #a16207;
}
.mv-premium-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    margin-top: 12px;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(245,158,11,.3);
}
.mv-premium-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245,158,11,.4);
    color: #fff;
}

/* Yaş Onay Modal */
.mv-age-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.5);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mv-age-modal {
    background: var(--card, #fff);
    border-radius: 16px;
    padding: 32px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,.2);
}
.mv-age-modal h3 { margin: 0 0 12px; font-size: 18px; }
.mv-age-modal p { margin: 0 0 20px; font-size: 13px; color: var(--slate-500); }
.mv-age-modal label { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; text-align: left; margin-bottom: 16px; cursor: pointer; }
.mv-age-modal input[type="checkbox"] { margin-top: 2px; }

/* Premium Aktif Kartı (Zaten abone olanlar) */
.mv-premium-active-card {
    background: linear-gradient(135deg, #d1fae5 0%, #ecfdf5 100%);
    border: 1px solid #6ee7b7;
    border-radius: var(--r, 12px);
    padding: 20px 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.mv-premium-active-icon {
    font-size: 32px;
    color: #10b981;
    flex-shrink: 0;
}
.mv-premium-active-info h4 {
    margin: 0 0 4px;
    font-size: 15px;
    color: #065f46;
}
.mv-premium-active-info p {
    margin: 0;
    font-size: 12px;
    color: #047857;
}

/* İndirme Limiti Uyarısı */
.fi-limit-warning {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 12px;
    text-align: center;
}
.fi-download-info {
    color: var(--slate-500);
    font-size: 12px;
    text-align: center;
    margin-bottom: 8px;
}
.fi-btn-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Dark Mode */
[data-theme="dark"] .mv-premium-card {
    background: linear-gradient(135deg, rgba(245,158,11,.1) 0%, rgba(249,115,22,.05) 100%);
    border-color: rgba(245,158,11,.3);
}
[data-theme="dark"] .mv-premium-card h3,
[data-theme="dark"] .mv-premium-price { color: #fbbf24; }
[data-theme="dark"] .mv-premium-card p,
[data-theme="dark"] .mv-premium-features li { color: #fcd34d; }

[data-theme="dark"] .mv-premium-active-card {
    background: linear-gradient(135deg, rgba(16,185,129,.1) 0%, rgba(16,185,129,.05) 100%);
    border-color: rgba(16,185,129,.3);
}
[data-theme="dark"] .mv-premium-active-info h4 { color: #6ee7b7; }
[data-theme="dark"] .mv-premium-active-info p { color: #34d399; }

[data-theme="dark"] .fi-limit-warning {
    background: rgba(239,68,68,.1);
    border-color: rgba(239,68,68,.3);
    color: #fca5a5;
}

/* Mobil */
@media (max-width: 480px) {
    .mv-premium-card { padding: 20px 16px; }
    .mv-premium-active-card { flex-direction: column; text-align: center; }
    .mv-premium-btn { width: 100%; justify-content: center; }
}