        :root {
            --bg-color: #0f0f0f;
            --card-bg: #1a1a1a;
            --brand-blue: #00a2ff;
            --text-main: #ffffff;
            --text-dim: #999999;
            --radius: 18px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'estedad-bold';
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-main);
            direction: rtl;
            overflow-x: hidden;
            padding-bottom: 80px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .section-title {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--text-main);
        }

        .brand-blue { color: var(--brand-blue); }

        .category-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin-bottom: 40px;
        }

        .category-item {
            aspect-ratio: 1 / 1;
            border-radius: var(--radius);
            overflow: hidden;
            background-color: var(--card-bg);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: transform 0.2s;
        }

        .category-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .category-item:active { transform: scale(0.95); }

        .slider-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 40px 0 15px 0;
            border-right: 4px solid var(--brand-blue);
            padding-right: 15px;
        }

        .slider-header h2 { font-size: 1.2rem; }

        .nav-buttons {
            display: flex;
            gap: 10px;
        }

        .nav-btn {
            background: var(--card-bg);
            color: white;
            border: 1px solid #333;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: 0.3s;
            font-weight: bold;
        }

        .nav-btn:hover {
            background: var(--brand-blue);
            border-color: var(--brand-blue);
        }

        .slider-container {
            position: relative;
        }

        .main-slider {
            display: flex;
            overflow-x: auto;
            gap: 15px;
            padding: 10px 5px;
            scroll-behavior: smooth; 

            scrollbar-width: none; 
        }

        .main-slider::-webkit-scrollbar { display: none; } 

        .movie-card {
            min-width: 160px; 
            max-width: 160px;
            background: var(--card-bg);
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.05);
            text-decoration: none;
            transition: transform 0.3s;
        }

        .movie-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        .movie-info {
            padding: 12px;
            text-align: center;
        }

        .movie-info h4 {
            font-size: 0.85rem;
            color: #fff;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-bottom: 5px;
        }

        .movie-info span {
            font-size: 0.75rem;
            color: var(--brand-blue);
        }

        @media (min-width: 900px) {
            .category-grid { grid-template-columns: repeat(6, 1fr); }
            .movie-card { min-width: 200px; max-width: 200px; }
            .movie-card img { height: 280px; }
            .movie-card:hover {
                transform: translateY(-10px);
                border-color: var(--brand-blue);
                box-shadow: 0 10px 20px rgba(0,0,0,0.4);
            }
        }