/* Instagram Premium / Dark Glassmorphism Tarzı VIP Dashboard CSS */

/* Container & Arka Plan */
#screen-premium {
    background: var(--bg-base);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 80px;
}

#screen-premium::-webkit-scrollbar {
    display: none;
}

/* Premium Hero Container */
.premium-hero-container {
    background: linear-gradient(145deg, var(--bg-surface), var(--bg-base));
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.premium-hero-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.premium-hero-container h2 {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    background: -webkit-linear-gradient(45deg, #ffdf00, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.premium-hero-container p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
}

/* Glassmorphism Paneller */
.premium-glass-panel {
    background: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 20px;
    margin: 15px 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.premium-section-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
}

/* Renk Grid Sistemi */
.color-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
    gap: 12px;
    margin-top: 15px;
}

.color-option-btn {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.color-option-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    background: rgba(15, 23, 42, 0.9);
    border-color: rgba(59, 130, 246, 0.4);
}

.color-option-btn:active:not(:disabled) {
    transform: translateY(0);
}

.color-option-btn.selected {
    border-color: #ffdf00;
    background: rgba(255, 223, 0, 0.1);
    box-shadow: 0 0 15px rgba(255, 223, 0, 0.2);
}

.color-option-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    filter: grayscale(100%);
}

.color-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.color-name {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
}

.color-option-btn.selected .color-name {
    color: #fff;
}

/* Kilit İkonu */
.lock-icon {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 12px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
}

/* Satın Alma / Upgrade Butonları */
.premium-action-btn {
    width: 100%;
    padding: 16px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.premium-action-btn.btn-ultra {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.premium-action-btn.btn-ultra:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.premium-action-btn.btn-outline {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-primary);
}

.premium-action-btn.btn-outline:hover {
    border-color: rgba(59, 130, 246, 0.4);
    background: rgba(59, 130, 246, 0.06);
}

/* Live Preview */
.live-preview-box {
    padding: 20px;
    background: rgba(0,0,0,0.5);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.preview-avatar-wrap {
    position: relative;
    display: inline-block;
}

.preview-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #333;
    transition: all 0.3s;
}

.preview-text {
    display: flex;
    flex-direction: column;
}

.preview-name {
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s;
}

.preview-badge {
    font-size: 12px;
    color: #888;
}

/* Özellikler (Features) Listesi */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-secondary);
}

.features-list li:last-child {
    border-bottom: none;
}

.feature-icon {
    font-size: 18px;
}

/* Gizleme Sınıfları */
.hidden-for-active-member {
    display: none !important;
}

/* Premium Name Colors (If not defined in Tailwind) */
.text-prem-gold { color: #facc15 !important; text-shadow: 0 0 10px rgba(250,204,21,0.5); }
.text-prem-rainbow {
    background: linear-gradient(to right, #ef4444, #f59e0b, #eab308, #22c55e, #3b82f6, #a855f7) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    text-shadow: none !important;
}
.text-prem-pink { color: #ec4899 !important; text-shadow: 0 0 10px rgba(236,72,153,0.5); }
.text-prem-green { color: #22c55e !important; text-shadow: 0 0 10px rgba(34,197,94,0.5); }
.text-dlx-blue { color: #3b82f6 !important; text-shadow: 0 0 10px rgba(59,130,246,0.5); }
