  :root {
            --bg-page: #0A0A0A;
            --bg-surface: #141414;
            --border-subtle: #2D2D2D;
            --border-focus: #00A3BF;
            --text-primary: #E4E4E7;
            --text-secondary: #A1A1AA;
            --accent-primary: #00B8D9;
            --accent-hover: #00A3BF;
            --glow-color: rgba(0, 184, 217, 0.3);
            --shadow-elevation: 0 8px 32px rgba(0, 0, 0, 0.25);
            --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 24px var(--glow-color);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: var(--bg-page);
            color: var(--text-primary);
            line-height: 1.6;
            min-height: 100vh;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 32px;
        }

        /* Header */
        .header {
            padding: 48px 0 96px;
            text-align: center;
        }

        .header h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 16px;
            background: linear-gradient(135deg, var(--text-primary), var(--accent-primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .header p {
            font-size: 18px;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Movies Grid */
        .movies-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 32px;
            margin-bottom: 96px;
        }

        /* Movie Card */
        .movie-card {
            background-color: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
            overflow: hidden;
            transition: all 300ms ease-out;
            cursor: pointer;
            box-shadow: var(--shadow-elevation);
        }

        .movie-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }

        .movie-poster {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 8px 8px 0 0;
        }

        .movie-content {
            padding: 24px;
        }

        .movie-title {
            font-size: 20px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .movie-meta {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 16px;
        }

        .movie-description {
            color: var(--text-secondary);
            margin-bottom: 20px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .movie-buttons {
            display: flex;
            gap: 16px;
        }

        .btn {
            padding: 12px 24px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            border: none;
            transition: all 200ms ease-out;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .btn-primary {
            background-color: var(--accent-primary);
            color: var(--bg-page);
        }

        .btn-primary:hover {
            background-color: var(--accent-hover);
            transform: scale(1.03);
        }

        .btn-primary:active {
            transform: scale(0.98);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--text-primary);
            border: 1px solid var(--border-subtle);
        }

        .btn-secondary:hover {
            color: var(--text-secondary);
            border-color: var(--text-secondary);
        }

        /* Modal */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 300ms ease-out;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background-color: var(--bg-surface);
            border-radius: 12px;
            max-width: 960px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            transform: scale(0.95);
            transition: transform 300ms ease-out;
        }

        .modal-overlay.active .modal-content {
            transform: scale(1);
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background-color: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            color: var(--text-primary);
            width: 40px;
            height: 40px;
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            z-index: 1001;
        }

        .modal-close:hover {
            background-color: var(--border-subtle);
        }

        .modal-video {
            width: 100%;
            height: 400px;
            border-radius: 8px;
        }

        .modal-info {
            padding: 32px;
        }

        .modal-title {
            font-size: 32px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 16px;
        }

        .modal-meta {
            font-size: 16px;
            color: var(--text-secondary);
            margin-bottom: 24px;
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }

        .modal-description {
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .modal-cast {
            margin-bottom: 24px;
        }

        .modal-cast h4 {
            color: var(--text-primary);
            margin-bottom: 8px;
            font-size: 16px;
            font-weight: 600;
        }

        .modal-cast p {
            color: var(--text-secondary);
            font-size: 14px;
        }

        /* Loading */
        .loading {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 200px;
            color: var(--text-secondary);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                padding: 0 24px;
            }

            .header {
                padding: 32px 0 64px;
            }

            .header h1 {
                font-size: 36px;
            }

            .movies-grid {
                grid-template-columns: 1fr;
                gap: 24px;
                margin-bottom: 64px;
            }

            .movie-poster {
                height: 300px;
            }

            .modal-content {
                width: 95%;
                margin: 20px;
            }

            .modal-info {
                padding: 24px;
            }

            .modal-title {
                font-size: 24px;
            }

            .modal-meta {
                flex-direction: column;
                gap: 8px;
            }
        }

        @media (max-width: 1024px) and (min-width: 769px) {
            .movies-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .movie-card {
            animation: fadeInUp 0.6s ease-out;
        }

        .movie-card:nth-child(even) {
            animation-delay: 0.1s;
        }

        /* Reduced motion */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }