        :root {
            --primary: #e50914;
            --bg-dark: #0a0a0a;
            --bg-card: #141414;
            --text-main: #ffffff;
            --text-dim: #8c8c8c;
            --accent-gold: #FFD700;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Outfit', sans-serif;
            background: var(--bg-dark);
            color: var(--text-main);
            overflow-x: hidden;
        }

        /* Cinematic Header with Backdrop */
        .hero-backdrop {
            position: relative;
            height: 75vh;
            min-height: 600px;
            overflow: hidden;
            padding-top: 80px;
        }

        .backdrop-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 30%;
            filter: blur(8px) brightness(0.4);
        }

        .backdrop-gradient {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                to bottom,
                rgba(10,10,10,0.3) 0%,
                rgba(10,10,10,0.7) 50%,
                rgba(10,10,10,1) 100%
            );
        }

        /* Floating Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 4%;
            background: rgba(10, 10, 10, 0);
            backdrop-filter: blur(0px);
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(20px);
            padding: 15px 4%;
            box-shadow: 0 2px 20px rgba(0,0,0,0.5);
        }

        .nav-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .logo {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 32px;
            color: var(--primary);
            text-decoration: none;
            letter-spacing: 2px;
            white-space: nowrap;
        }

        /* Search Bar in Navbar */
        .nav-search {
            flex: 1;
            max-width: 500px;
            position: relative;
        }

        .nav-search form {
            width: 100%;
            position: relative;
        }

        .search-input {
            width: 100%;
            padding: 12px 45px 12px 20px;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 25px;
            color: white;
            font-size: 15px;
            font-family: 'Outfit', sans-serif;
            transition: all 0.3s;
            outline: none;
        }

        .search-input::placeholder {
            color: rgba(255,255,255,0.5);
        }

        .search-input:focus {
            background: rgba(255,255,255,0.15);
            border-color: var(--primary);
        }

        .search-btn {
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--text-dim);
            font-size: 20px;
            cursor: pointer;
            padding: 8px;
            transition: color 0.3s;
        }

        .search-btn:hover {
            color: var(--primary);
        }

        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .nav-links a {
            color: var(--text-main);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: color 0.3s;
            white-space: nowrap;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-search-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 22px;
            cursor: pointer;
            padding: 5px;
        }

        /* Mobile Search Dropdown */
        .mobile-search-dropdown {
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            background: rgba(10, 10, 10, 0.98);
            backdrop-filter: blur(20px);
            padding: 15px 20px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            z-index: 999;
            display: none;
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .mobile-search-dropdown.active {
            display: block;
        }

        .mobile-search-dropdown form {
            display: flex;
            gap: 10px;
        }

        .mobile-search-dropdown input {
            flex: 1;
            padding: 12px 20px;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 25px;
            color: white;
            font-size: 15px;
            outline: none;
        }

        .mobile-search-dropdown input::placeholder {
            color: rgba(255,255,255,0.5);
        }

        .mobile-search-dropdown button {
            padding: 12px 25px;
            background: var(--primary);
            border: none;
            border-radius: 25px;
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .mobile-search-dropdown button:hover {
            background: #ff0a1a;
        }

        /* Movie Info Overlay on Hero */
        .hero-content {
            position: absolute;
            bottom: 60px;
            left: 0;
            right: 0;
            padding: 0 4% 3%;
            z-index: 10;
        }

        .movie-main-info {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 40px;
            align-items: flex-end;
        }

        .poster-float {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.8);
            transition: transform 0.5s ease;
            animation: posterFloat 1s ease-out;
        }

        @keyframes posterFloat {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .poster-float:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .poster-float img {
            width: 100%;
            height: auto;
            display: block;
        }

        .title-section {
            animation: titleSlide 1s ease-out 0.2s both;
        }

        @keyframes titleSlide {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .movie-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(32px, 5vw, 56px);
            line-height: 1.1;
            margin-bottom: 20px;
            letter-spacing: 1.5px;
            text-shadow: 2px 2px 20px rgba(0,0,0,0.8);
        }

        .meta-badges {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
            flex-wrap: wrap;
        }

        .badge {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            padding: 8px 18px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            border: 1px solid rgba(255,255,255,0.2);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .badge.rating {
            background: var(--accent-gold);
            color: #000;
            border-color: var(--accent-gold);
        }

        .badge.year {
            background: rgba(229, 9, 20, 0.2);
            border-color: var(--primary);
        }

        .genre-pills {
            display: flex;
            gap: 10px;
            margin-bottom: 25px;
            flex-wrap: wrap;
        }

        .genre-pill {
            background: rgba(255,255,255,0.05);
            padding: 6px 16px;
            border-radius: 16px;
            font-size: 13px;
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.3s;
        }

        .genre-pill:hover {
            background: var(--primary);
            border-color: var(--primary);
            transform: translateY(-2px);
        }

        .description-preview {
            font-size: 16px;
            line-height: 1.6;
            color: rgba(255,255,255,0.8);
            max-width: 700px;
            margin-bottom: 30px;
            text-shadow: 1px 1px 10px rgba(0,0,0,0.8);
        }

        .primary-actions {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn {
            padding: 15px 35px;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-family: 'Outfit', sans-serif;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
            box-shadow: 0 4px 20px rgba(229, 9, 20, 0.4);
        }

        .btn-primary:hover {
            background: #ff0a1a;
            transform: translateY(-3px);
            box-shadow: 0 6px 30px rgba(229, 9, 20, 0.6);
        }

        .btn-secondary {
            background: rgba(255,255,255,0.1);
            color: white;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .btn-secondary:hover {
            background: rgba(255,255,255,0.2);
            border-color: rgba(255,255,255,0.4);
        }

        /* Quality Download Buttons */
        .quality-download-btn {
            background: rgba(255,255,255,0.05);
            border: 2px solid rgba(255,255,255,0.1);
            border-radius: 10px;
            padding: 18px 20px;
            text-decoration: none;
            color: white;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            position: relative;
            overflow: hidden;
        }

        .quality-download-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: left 0.5s;
        }

        .quality-download-btn:hover::before {
            left: 100%;
        }

        .quality-download-btn:hover {
            background: rgba(229, 9, 20, 0.2);
            border-color: var(--primary);
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(229, 9, 20, 0.4);
        }

        .quality-download-btn.recommended {
            border-color: var(--accent-gold);
            background: rgba(255, 215, 0, 0.1);
        }

        .quality-download-btn.recommended:hover {
            background: rgba(255, 215, 0, 0.2);
            border-color: var(--accent-gold);
            box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
        }

        .quality-download-btn.premium {
            border-color: #9b59b6;
            background: rgba(155, 89, 182, 0.1);
        }

        .quality-download-btn.premium:hover {
            background: rgba(155, 89, 182, 0.2);
            border-color: #9b59b6;
            box-shadow: 0 8px 25px rgba(155, 89, 182, 0.4);
        }

        .quality-label {
            font-size: 24px;
            font-weight: 800;
            font-family: 'Bebas Neue', sans-serif;
            letter-spacing: 1px;
        }

        .quality-desc {
            font-size: 12px;
            color: var(--text-dim);
            font-weight: 500;
        }

        .quality-badge-recommended {
            position: absolute;
            top: 8px;
            right: 8px;
            background: var(--accent-gold);
            color: #000;
            font-size: 9px;
            font-weight: 800;
            padding: 4px 8px;
            border-radius: 4px;
            letter-spacing: 0.5px;
        }

        .quality-badge-premium {
            position: absolute;
            top: 8px;
            right: 8px;
            background: #9b59b6;
            color: white;
            font-size: 9px;
            font-weight: 800;
            padding: 4px 8px;
            border-radius: 4px;
            letter-spacing: 0.5px;
        }

        /* Content Sections */
        .content-wrapper {
            max-width: 1400px;
            margin: -44px auto 0;
            padding: 0 4%;
            position: relative;
            z-index: 5;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
            margin-bottom: 40px;
        }

        .content-card {
            background: var(--bg-card);
            border-radius: 12px;
            padding: 35px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
            margin-bottom: 30px;
        }

        .section-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 28px;
            letter-spacing: 1px;
            margin-bottom: 25px;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .movie-description {
            font-size: 16px;
            line-height: 1.8;
            color: rgba(255,255,255,0.85);
        }

        /* User Rating Card */
        .rating-card {
            text-align: center;
            background: linear-gradient(135deg, rgba(229, 9, 20, 0.1), rgba(255, 215, 0, 0.1));
            border: 1px solid rgba(229, 9, 20, 0.3);
        }

        .rating-display {
            margin-bottom: 30px;
        }

        .rating-score {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 80px;
            line-height: 1;
            color: var(--accent-gold);
            text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
        }

        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            font-size: 24px;
            margin: 15px 0;
        }

        .star {
            color: rgba(255, 215, 0, 0.3);
        }

        .star.filled {
            color: var(--accent-gold);
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }

        .rating-count {
            font-size: 14px;
            color: var(--text-dim);
        }

        .rate-section {
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .rate-title {
            font-size: 16px;
            margin-bottom: 15px;
            color: rgba(255,255,255,0.9);
        }

        .star-rating {
            display: flex;
            gap: 10px;
            justify-content: center;
        }

        .star-btn {
            font-size: 36px;
            color: rgba(255, 215, 0, 0.3);
            text-decoration: none;
            transition: all 0.3s;
            cursor: pointer;
            filter: drop-shadow(0 0 0 rgba(255, 215, 0, 0));
        }

        .star-btn:hover {
            color: var(--accent-gold);
            transform: scale(1.2);
            filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
        }

        .star-btn.active {
            color: var(--accent-gold);
            filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
        }

        /* Social Share */
        .share-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 12px;
        }

        .share-btn {
            padding: 12px 20px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-family: 'Outfit', sans-serif;
        }

        .share-btn.whatsapp {
            background: #25D366;
            color: white;
        }

        .share-btn.facebook {
            background: #1877F2;
            color: white;
        }

        .share-btn.twitter {
            background: #1DA1F2;
            color: white;
        }

        .share-btn.telegram {
            background: #0088cc;
            color: white;
        }

        .share-btn.copy {
            background: rgba(255,255,255,0.1);
            color: white;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .share-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.4);
        }

        /* Admin Actions */
        .admin-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .btn-edit {
            background: rgba(255,255,255,0.1);
            color: white;
        }

        .btn-delete {
            background: rgba(220, 53, 69, 0.2);
            color: #ff4d5e;
            border: 1px solid rgba(220, 53, 69, 0.4);
        }

        .btn-delete:hover {
            background: #dc3545;
            color: white;
        }

        /* Comments Section */
        .comments-section {
            margin-top: 40px;
        }

        .comment-form {
            background: var(--bg-card);
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 30px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-input,
        .form-textarea {
            width: 100%;
            padding: 15px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 8px;
            color: white;
            font-size: 15px;
            font-family: 'Outfit', sans-serif;
            transition: all 0.3s;
        }

        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            background: rgba(255,255,255,0.08);
            border-color: var(--primary);
        }

        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }

        .comments-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .comment {
            background: var(--bg-card);
            border-radius: 12px;
            padding: 25px;
            border: 1px solid rgba(255,255,255,0.05);
            transition: all 0.3s;
        }

        .comment:hover {
            border-color: rgba(255,255,255,0.1);
            transform: translateX(5px);
        }

        .comment-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .comment-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .author-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), #ff6b6b);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }

        .author-name {
            font-weight: 700;
            font-size: 16px;
        }

        .comment-date {
            font-size: 13px;
            color: var(--text-dim);
        }

        .comment-text {
            color: rgba(255,255,255,0.85);
            line-height: 1.6;
        }

        .delete-btn {
            background: none;
            border: none;
            color: var(--text-dim);
            cursor: pointer;
            font-size: 18px;
            padding: 5px;
            transition: color 0.3s;
        }

        .delete-btn:hover {
            color: var(--primary);
        }

        .no-comments {
            text-align: center;
            padding: 60px;
            color: var(--text-dim);
            background: var(--bg-card);
            border-radius: 12px;
            border: 2px dashed rgba(255,255,255,0.1);
        }

        /* Footer */
        .footer {
            margin-top: 80px;
            padding: 60px 4% 30px;
            background: linear-gradient(to bottom, var(--bg-dark), #000);
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
        }

        .footer-logo {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 36px;
            color: var(--primary);
            margin-bottom: 15px;
            letter-spacing: 2px;
        }

        .footer-text {
            color: var(--text-dim);
            font-size: 14px;
            margin-bottom: 30px;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--text-dim);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.05);
            color: var(--text-dim);
            font-size: 13px;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr;
            }

            .hero-backdrop {
                height: 70vh;
                min-height: 600px;
                padding-top: 70px;
            }

            .hero-content {
                bottom: 50px;
                padding: 0 4% 2%;
            }

            .movie-main-info {
                grid-template-columns: 240px 1fr;
                gap: 30px;
            }

            .content-wrapper {
                margin-top: 30px;
            }

            .nav-search {
                max-width: 400px;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 12px 20px;
            }

            .navbar.scrolled {
                padding: 10px 20px;
            }

            .logo {
                font-size: 22px;
                letter-spacing: 1px;
            }

            /* Hide desktop search, show mobile search toggle */
            .nav-search {
                display: none;
            }

            .mobile-search-toggle {
                display: block;
            }

            .nav-links a:not(:last-child) {
                display: none;
            }

            .menu-toggle {
                display: block;
            }

            .hero-backdrop {
                height: auto;
                min-height: 600px;
                max-height: none;
                padding-top: 70px;
                padding-bottom: 30px;
                display: flex;
                align-items: flex-end;
            }

            .backdrop-image {
                filter: blur(5px) brightness(0.35);
            }

            .hero-content {
                position: relative;
                bottom: 0;
                padding: 20px 20px 30px;
                width: 100%;
            }

            .movie-main-info {
                grid-template-columns: 1fr;
                gap: 20px;
                text-align: left;
            }

            .poster-float {
                max-width: 200px;
                margin: 0 auto 20px;
            }

            .title-section {
                text-align: center;
            }

            .movie-title {
                font-size: 26px;
                text-align: center;
                line-height: 1.2;
                margin-bottom: 15px;
            }

            .meta-badges {
                justify-content: center;
                flex-wrap: wrap;
                gap: 8px;
                margin-bottom: 15px;
            }

            .badge {
                padding: 6px 14px;
                font-size: 13px;
            }

            .genre-pills {
                justify-content: center;
                flex-wrap: wrap;
                gap: 8px;
                margin-bottom: 15px;
            }

            .genre-pill {
                padding: 5px 14px;
                font-size: 12px;
            }

            .description-preview {
                margin: 0 auto 20px;
                text-align: center;
                font-size: 14px;
                line-height: 1.5;
                max-width: 100%;
            }

            .primary-actions {
                flex-direction: column;
                width: 100%;
                gap: 10px;
                max-width: 100%;
            }

            .btn {
                width: 100%;
                justify-content: center;
                padding: 14px 20px;
            }

            .content-wrapper {
                padding: 0 20px;
                margin-top: 30px;
            }

            .content-grid {
                gap: 20px;
            }

            .share-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .share-btn {
                padding: 14px 18px;
                font-size: 14px;
            }

            .content-card {
                padding: 25px 20px;
                border-radius: 10px;
                margin-bottom: 20px;
            }

            .section-title {
                font-size: 22px;
                margin-bottom: 20px;
            }

            .movie-description {
                font-size: 15px;
                line-height: 1.7;
            }

            .rating-card {
                padding: 30px 20px;
            }

            .rating-score {
                font-size: 64px;
            }

            .rating-stars {
                font-size: 22px;
                gap: 4px;
            }

            .star-btn {
                font-size: 32px;
            }

            .admin-actions {
                flex-direction: column;
                width: 100%;
                gap: 10px;
            }

            .comment-form {
                padding: 25px 18px;
            }

            .comment {
                padding: 20px 15px;
            }

            .form-group {
                margin-bottom: 15px;
            }
        }

        @media (max-width: 480px) {
            .navbar {
                padding: 12px 15px;
            }

            .nav-content {
                padding: 0;
            }

            .logo {
                font-size: 20px;
                letter-spacing: 0.5px;
            }

            .mobile-search-dropdown {
                top: 60px;
                padding: 12px 15px;
            }

            .mobile-search-dropdown input {
                padding: 10px 15px;
                font-size: 14px;
            }

            .mobile-search-dropdown button {
                padding: 10px 20px;
                font-size: 14px;
            }

            .hero-backdrop {
                min-height: 550px;
                padding-top: 60px;
                padding-bottom: 20px;
            }

            .hero-content {
                padding: 15px 15px 25px;
            }

            .poster-float {
                max-width: 180px;
                margin: 0 auto 15px;
            }

            .movie-title {
                font-size: 22px;
                margin-bottom: 12px;
                letter-spacing: 1px;
                line-height: 1.2;
            }

            .meta-badges {
                gap: 6px;
                margin-bottom: 12px;
            }

            .badge {
                padding: 5px 12px;
                font-size: 12px;
            }

            .genre-pills {
                gap: 6px;
                margin-bottom: 12px;
            }

            .genre-pill {
                padding: 4px 12px;
                font-size: 11px;
            }

            .description-preview {
                font-size: 13px;
                line-height: 1.4;
                margin-bottom: 15px;
            }

            .primary-actions {
                gap: 8px;
            }

            .btn {
                padding: 12px 18px;
                font-size: 14px;
            }

            .content-wrapper {
                padding: 0 15px;
                margin-top: 25px;
            }

            .content-card {
                padding: 20px 15px;
                border-radius: 8px;
                margin-bottom: 18px;
            }

            .section-title {
                font-size: 20px;
                margin-bottom: 15px;
            }

            .movie-description {
                font-size: 14px;
                line-height: 1.6;
            }

            .rating-card {
                padding: 25px 15px;
            }

            .rating-score {
                font-size: 52px;
            }

            .rating-stars {
                font-size: 20px;
                gap: 3px;
                margin: 12px 0;
            }

            .rating-count {
                font-size: 12px;
            }

            .rate-section {
                margin-top: 20px;
                padding-top: 20px;
            }

            .rate-title {
                font-size: 14px;
                margin-bottom: 12px;
            }

            .star-rating {
                gap: 8px;
            }

            .star-btn {
                font-size: 28px;
            }

            .share-grid {
                gap: 8px;
            }

            .share-btn {
                padding: 12px 16px;
                font-size: 13px;
            }

            .form-input,
            .form-textarea {
                padding: 12px;
                font-size: 14px;
            }

            .form-textarea {
                min-height: 100px;
            }

            .comment-form {
                padding: 20px 15px;
            }

            .comment {
                padding: 15px 12px;
            }

            .author-avatar {
                width: 36px;
                height: 36px;
                font-size: 16px;
            }

            .author-name {
                font-size: 14px;
            }

            .comment-date {
                font-size: 11px;
            }

            .comment-text {
                font-size: 14px;
                line-height: 1.5;
            }

            .no-comments {
                padding: 40px 15px;
            }

            .footer {
                padding: 35px 15px 20px;
            }

            .footer-logo {
                font-size: 26px;
                margin-bottom: 12px;
            }

            .footer-text {
                font-size: 13px;
                margin-bottom: 20px;
            }

            .footer-links {
                gap: 15px;
                font-size: 13px;
                margin-bottom: 20px;
            }

            .footer-bottom {
                padding-top: 20px;
                font-size: 12px;
            }

            .quality-download-btn {
                padding: 15px 16px;
            }

            .quality-label {
                font-size: 20px;
            }

            .quality-desc {
                font-size: 11px;
            }
        }
