/* MMBS V30 - CORE STYLE SHEET */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&family=Tajawal:wght@400;700;900&display=swap');

:root {
    --accent: #22d3ee; /* Cyan 400 */
    --accent-dark: #0891b2; /* Cyan 600 */
    --bg-dark: #01040a;
    --glass: rgba(255, 255, 255, 0.02);
    --border: rgba(255, 255, 255, 0.05);
}

/* التنسيقات العامة */
body {
    background-color: var(--bg-dark);
    color: white;
    font-family: 'Inter', 'Tajawal', sans-serif;
    margin: 0;
    overflow-x: hidden;
    line-height: 1.6;
}

.mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

/* تأثير الزجاج (V30 Glassmorphism) */
.glass-panel {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 24px;
    transition: all 0.3s ease;
}

/* تحسين شكل السكرول بار (Scrollbar) */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* الأنيميشن الأساسي للموقع */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-v30 {
    animation: fadeIn 0.5s ease-out forwards;
}

/* تنسيقات حماية الفيديوهات */
.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* وضع المسرح (Theater Mode) */
.theater-mode-active {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 99999 !important;
    background: #000 !important;
    border-radius: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

/* العلامة المائية */
.user-watermark {
    position: absolute;
    z-index: 100;
    pointer-events: none;
    color: rgba(255, 255, 255, 0.1);
    font-family: monospace;
    font-size: 10px;
    white-space: nowrap;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
header.glass-panel {
    margin-top: 15px; /* يدفعه للأسفل عن الحافة العلوية */
    margin-bottom: 20px; /* يعطيه مساحة عن المحتوى الذي تحته */
}
/* تحسينات القوائم للجوال */
@media (max-width: 768px) {
    .glass-panel {
        border-radius: 16px;
    }
    .nav-tab {
        padding: 8px 12px;
        font-size: 10px;
    }
}
