/* الهوية الكاملة لموقع REELAT - ستايل TOD مع دعم اللوجو */
:root {
    --tod-yellow: #ffcc00;
    --bg-black: #000000;
    --card-bg: #111111;
}

body {
    background-color: var(--bg-black);
    color: white;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    margin: 0;
    direction: rtl;
}

/* تنسيق شريط التنقل واللوجو */
.navbar {
    background: #000;
    padding: 10px 15px;
    border-bottom: 1px solid #222;
    display: flex;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .logo-container img {
    height: 50px; /* يمكنك تعديل الحجم حسب رغبتك */
    width: auto;
    display: block;
}

/* تصميم شبكة الأفلام في الرئيسية */
.movies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    padding: 20px;
}

.movie-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #222;
    transition: 0.3s;
    text-decoration: none;
    color: white;
}

.movie-card img {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
}

.movie-card h3 {
    font-size: 14px;
    padding: 10px;
    margin: 0;
    text-align: center;
}

/* تنسيق صفحات الأفلام الداخلي */
.video-container {
    width: 100%;
    max-width: 380px;
    aspect-ratio: 9 / 16;
    margin: 20px auto;
    background: #111;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border: 2px solid #222;
}