  :root {
            /* Ana Renkler */
            --primary-dark: #0f0514;
            --secondary-dark: #1a0b2e;
            --accent-purple: #8A2BE2;
            --accent-pink: #FF1493;
            --text-primary: #ffffff;
            --text-secondary: rgba(255, 255, 255, 0.7);
            --glass-bg: rgba(26, 11, 46, 0.8);
            --neon-color-rgb: 138, 43, 226;
            
            /* Neon Efektleri */
            --neon-purple: 0 0 10px rgba(138, 43, 226, 0.4),
                          0 0 20px rgba(138, 43, 226, 0.3),
                          0 0 30px rgba(138, 43, 226, 0.2);
            --neon-pink: 0 0 10px rgba(255, 20, 147, 0.4),
                        0 0 20px rgba(255, 20, 147, 0.3),
                        0 0 30px rgba(255, 20, 147, 0.2);
            
            /* Gradyanlar */
            --gradient-primary: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
            --gradient-purple: linear-gradient(135deg, #8A2BE2, #4B0082);
            --gradient-accent: linear-gradient(45deg, var(--accent-purple), var(--accent-pink));
            
            /* Geçişler */
            --transition-fast: 0.3s ease;
            --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        body {
            margin: 0;
            font-family: 'Poppins', sans-serif;
            background: var(--gradient-primary);
            color: var(--text-primary);
            min-height: 100vh;
        }

        /* Navbar Styles */
        .main-navbar {
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(138, 43, 226, 0.2);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 0.75rem 0;
        }

        .navbar-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .navbar-logo {
            color: var(--text-primary);
            font-size: 1.5rem;
            font-weight: 600;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-shadow: var(--neon-purple);
        }

        .navbar-logo i {
            color: var(--accent-purple);
        }

        .navbar-toggle {
            display: none;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }

        .toggle-icon {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .toggle-icon span {
            display: block;
            width: 25px;
            height: 2px;
            background-color: var(--text-primary);
            transition: var(--transition-fast);
        }

        .navbar-menu {
            flex: 1;
            display: flex;
            justify-content: flex-end;
        }

        .menu-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .menu-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem;
            transition: var(--transition-fast);
            position: relative;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .menu-link:hover,
        .menu-link.active {
            color: var(--text-primary);
        }

        .menu-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--gradient-accent);
            box-shadow: var(--neon-purple);
        }

        .profile-link,
        .logout-link {
            padding: 0.5rem 1rem;
            border-radius: 20px;
            border: 1px solid rgba(138, 43, 226, 0.2);
        }

        .profile-link:hover,
        .logout-link:hover {
            background: var(--glass-bg);
            box-shadow: var(--neon-purple);
        }

        /* Mobil & Tablet Görünüm */
        @media (max-width: 1199px) {
            /* Navbar */
            .navbar-toggle {
                display: block;
            }

            .navbar-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--glass-bg);
                padding: 1rem;
                z-index: 100;
            }

            .navbar-menu.show {
                display: block;
            }

            .menu-links {
                flex-direction: column;
                gap: 0.8rem;
            }
        }

        /* Genel stil (tüm ekran boyutları için) */
        .like-review i.active {
            color: #ff4081;
        }
        /* Card Styles */
        .neon-card {
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(138, 43, 226, 0.2);
            border-radius: 15px;
            transition: var(--transition-smooth);
            overflow: hidden;
        }

        .neon-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--neon-purple);
        }

        .neon-card img {
            transition: var(--transition-smooth);
            width: 100%;
            aspect-ratio: 2/3;
            object-fit: cover;
        }

        .neon-card:hover img {
            transform: scale(1.05);
        }

        /* Form Styles */
        .search-form {
            background: var(--glass-bg);
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 30px;
            box-shadow: var(--neon-purple);
        }

        .neon-select {
            background: rgba(15, 5, 20, 0.8);
            border: 1px solid var(--accent-purple);
            color: var(--text-primary);
            border-radius: 10px;
            padding: 10px;
            transition: var(--transition-fast);
        }

        .neon-select:focus {
            box-shadow: var(--neon-purple);
            border-color: var(--accent-pink);
        }

        .neon-select::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        /* Chat Styles */
        .chat-container {
            background: var(--glass-bg);
            border-radius: 15px;
            padding: 15px;
            margin-bottom: 20px;
            max-height: 300px;
            overflow-y: auto;
        }

        .user-message, .assistant-message {
            padding: 10px;
            margin-bottom: 10px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.1);
        }

        .user-message {
            margin-left: 20px;
            border-left: 3px solid var(--accent-purple);
        }

        .assistant-message {
            margin-right: 20px;
            border-right: 3px solid var(--accent-pink);
        }
        

        /* Modal Styles */
        .neon-modal .modal-content {
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(138, 43, 226, 0.2);
            border-radius: 15px;
            color: var(--text-primary);
        }

        .neon-modal .modal-header {
            border-bottom: 1px solid rgba(138, 43, 226, 0.2);
        }

        .neon-modal .modal-footer {
            border-top: 1px solid rgba(138, 43, 226, 0.2);
        }

        /* Button Styles */
        .neon-btn {
            background: var(--gradient-purple);
            color: var(--text-primary);
            border: none;
            border-radius: 10px;
            padding: 8px 16px;
            transition: var(--transition-fast);
        }

        .neon-btn:hover {
            box-shadow: var(--neon-purple);
            transform: translateY(-2px);
            color: var(--text-primary);
        }

        .btn-group .neon-btn {
            flex: 1;
            border-radius: 0;
        }

        .btn-group .neon-btn:first-child {
            border-top-left-radius: 10px;
            border-bottom-left-radius: 10px;
        }

        .btn-group .neon-btn:last-child {
            border-top-right-radius: 10px;
            border-bottom-right-radius: 10px;
        }

        .btn-group .neon-btn.active {
            background: var(--gradient-accent);
            box-shadow: var(--neon-purple);
        }

        /* Additional Styles */
        .provider-logo {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            margin: 5px;
            transition: var(--transition-fast);
        }

        .provider-logo:hover {
            transform: scale(1.1);
            box-shadow: var(--neon-purple);
        }

        .cast-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .cast-badge {
            background: var(--gradient-purple);
            color: var(--text-primary);
            border-radius: 20px;
            padding: 5px 15px;
            transition: var(--transition-fast);
        }

        .cast-badge:hover {
            box-shadow: var(--neon-purple);
            transform: translateY(-2px);
        }

        .show-info-overlay {
            position: absolute;
            width: 100%;
            padding: 10px;
            z-index: 2;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
            backdrop-filter: blur(3px);
        }

        .vote-badge {
            position: absolute;
            right: 6px;
            top: 6px;
            background: linear-gradient(135deg, #00296b, #003f88);
            padding: 3px 8px;
            border-radius: 10px;
            border: 1px solid rgba(0, 255, 255, 0.4);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3),
                        inset 0 0 15px rgba(0, 255, 255, 0.2),
                        0 0 5px rgba(0, 255, 255, 0.3);
            transition: all 0.2s ease;
            font-weight: 600;
            font-size: 0.75em;
            z-index: 2;
            letter-spacing: 0.3px;
            color: #fff;
            text-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(5px);
        }

        .vote-badge .fa-star {
            color: #00ffff;
            text-shadow: 0 0 4px #00ffff;
            margin-right: 3px;
            font-size: 0.8em;
            animation: starPulse 2s infinite;
        }

        @keyframes starPulse {
            0% { opacity: 0.8; }
            50% { opacity: 1; }
            100% { opacity: 0.8; }
        }

        .vote-badge:hover {
            transform: scale(1.03) translateY(-1px);
            background: linear-gradient(135deg, #003f88, #00509d);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4),
                        inset 0 0 20px rgba(0, 255, 255, 0.3),
                        0 0 8px rgba(0, 255, 255, 0.4);
        }

        .air-date {
            position: absolute;
            left: 6px;
            top: 6px;
            background: linear-gradient(135deg, #1a1a1a, #333);
            padding: 3px 8px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3),
                        inset 0 0 15px rgba(255, 255, 255, 0.1),
                        0 0 5px rgba(255, 255, 255, 0.2);
            transition: all 0.2s ease;
            font-weight: 600;
            font-size: 0.75em;
            z-index: 2;
            letter-spacing: 0.3px;
            color: #fff;
            text-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(5px);
        }

        .air-date:hover {
            transform: scale(1.03) translateY(-1px);
            background: linear-gradient(135deg, #333, #404040);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4),
                        inset 0 0 20px rgba(255, 255, 255, 0.15),
                        0 0 8px rgba(255, 255, 255, 0.3);
        }



        .show-details {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 15px;
            background: linear-gradient(to top, rgba(15, 5, 20, 0.9), transparent);
        }

        .genre-tags {
            display: flex;
            gap: 5px;
            margin-bottom: 5px;
        }

        .genre-tag {
            background: var(--glass-bg);
            padding: 2px 8px;
            border-radius: 15px;
            font-size: 0.8rem;
            border: 1px solid var(--accent-purple);
        }

        .show-status {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }


        .neon-card:hover .show-info-overlay {
            transform: translateY(0);
        }

        .show-title {
            font-size: 1.2rem; 
            margin: 0;
            margin-bottom: 8px; 
            color: #fff;
            text-shadow: 0 0 5px rgba(147, 51, 234, 0.5);
            line-height: 1.3;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2; 
            -webkit-box-orient: vertical;
            white-space: normal; 
        }

        .show-genres {
            font-size: 0.95rem; 
            margin: 0;
            color: #e2e2e2;
            opacity: 0.9;
            line-height: 1.4; 
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2; 
            -webkit-box-orient: vertical;
            white-space: normal; 
        }

         /* oyuncu listesi */
         ::-webkit-scrollbar {
            width: 10px; 
            height: 8px; 
            background: transparent; 
        }

        ::-webkit-scrollbar-track {
            background: rgba(0, 0, 0, 0.1); 
        }

        ::-webkit-scrollbar-thumb {
            background: rgba(138, 43, 226, 0.3); 
            border-radius: 4px;
            border: 2px solid transparent; 
            background-clip: padding-box; 
        }

        ::-webkit-scrollbar-thumb:hover {
            background: rgba(138, 43, 226, 0.5); 
            background-clip: padding-box;
        }

        /* Firefox için basit stil */
        * {
            scrollbar-width: thin;
            scrollbar-color: rgba(138, 43, 226, 0.3) transparent;
        }
        /* Oyuncu listesi */
        /* Oyuncu listesi scrollbar stilleri */
        .cast-list::-webkit-scrollbar {
            width: 10px;
            height: 8px;
            background: transparent;
        }

        .cast-list::-webkit-scrollbar-track {
            background: rgba(0, 0, 0, 0.1);
        }

        .cast-list::-webkit-scrollbar-thumb {
            background: rgba(138, 43, 226, 0.3);
            border-radius: 4px;
            border: 2px solid transparent;
            background-clip: padding-box;
        }

        .cast-list::-webkit-scrollbar-thumb:hover {
            background: rgba(138, 43, 226, 0.5);
            background-clip: padding-box;
        }

        /* Oyuncu listesi */
        .cast-list {
            display: flex;
            flex-wrap: nowrap;
            gap: 15px;
            padding: 15px;
            margin-bottom: 15px;
            overflow-x: auto;
            overflow-y: hidden;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            max-width: 100%;
            /* Firefox için özel scrollbar rengi */
            scrollbar-color: rgba(138, 43, 226, 0.5) rgba(0, 0, 0, 0.2);
        }

        .cast-member {
            flex: 0 0 120px; 
            width: 120px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            background: rgba(0, 0, 0, 0.8);
            padding: 8px 4px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(138, 43, 226, 0.3);
            border: 1px solid rgba(138, 43, 226, 0.2);
            transition: all 0.2s ease;
        }

        .cast-member:hover {
            transform: scale(1.02);
            box-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
        }

        .cast-member img {
            width: 100px;
            height: 150px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 8px;
            box-shadow: 0 0 15px rgba(138, 43, 226, 0.4);
            transition: transform 0.2s ease;
        }

        .cast-member img:hover {
            transform: scale(1.05);
            box-shadow: 0 0 20px rgba(138, 43, 226, 0.6);
        }

        .cast-member .actor-name {
            width: 112px;
            min-height: 36px;
            font-size: 0.85rem;
            font-weight: 500;
            margin: 0;
            color: #fff;
            text-shadow: 0 0 5px rgba(138, 43, 226, 0.8);
            overflow: hidden;
            text-align: center;
            padding: 0 2px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            line-height: 1.2;
            word-wrap: break-word;
        }

        .cast-member .character-name {
            width: 112px;
            font-size: 0.75rem;
            color: rgba(138, 43, 226, 0.9);
            margin: 2px 0 0 0;
            text-align: center;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            padding: 0 2px;
        }


        /* Önce CSS ekleyelim */
        .overview-text {
            font-size: 1rem;
            line-height: 1.3;
            color: rgba(255, 255, 255, 0.85);
            margin: 8px 0;
            padding: 0;
            max-height: 75px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            text-overflow: ellipsis;
            position: relative;
        }

        .overview-toggle {
            color: rgba(138, 43, 226, 0.9);
            cursor: pointer;
            font-size: 0.75rem;
            text-align: right;
            margin-top: 4px;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        
        /* Banner Swiper Styles */
        .movieBannerSwiper {
            width: 100%;
            height: 400px;
            border-radius: 15px;
            overflow: hidden;
        }

        .movieBannerSwiper .swiper-slide {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .banner-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem;
            background: linear-gradient(to top, rgba(15, 5, 20, 0.95), transparent);
            color: var(--text-primary);
        }

        .banner-content h2 {
            font-size: 2rem;
            margin-bottom: 0.5rem;
            text-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
        }

        .banner-content p {
            font-size: 1rem;
            margin-bottom: 1rem;
            opacity: 0.9;
        }

        .movieBannerSwiper .swiper-button-next,
        .movieBannerSwiper .swiper-button-prev {
            color: var(--accent-purple);
            text-shadow: var(--neon-purple);
        }

        .movieBannerSwiper .swiper-pagination-bullet {
            background: var(--accent-purple);
            opacity: 0.5;
        }

        .movieBannerSwiper .swiper-pagination-bullet-active {
            opacity: 1;
            box-shadow: var(--neon-purple);
        }

        .banner-backdrop {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .swiper-slide:hover .banner-backdrop {
            transform: scale(1.05);
        }

        .banner-badges {
            position: absolute;
            top: 20px;
            left: 0;
            right: 0;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            z-index: 2;
        }

        .banner-title {
            font-size: 1.2rem;
            color: var(--text-primary);
            margin: 0 0 10px 0;
            padding: 5px 0;
            border-left: 3px solid var(--primary);
            padding-left: 10px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .banner-title i {
            color: var(--primary);
            font-size: 0.9em;
        }

        /* Modal Styles */
        .neon-modal .modal-dialog {
            max-width: 1000px;
        }

        .show-info-section {
            padding: 20px;
            border-bottom: 1px solid rgba(138, 43, 226, 0.2);
        }

        /* Poster Styles */
        .movie-poster {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: var(--neon-purple);
            transition: transform 0.3s ease;
            max-width: 250px;
            margin: 0 auto;
        }

        .movie-poster:hover {
            transform: scale(1.02);
        }

        .movie-poster img {
            width: 100%;
            height: auto;
            border-radius: 15px;
        }

        /* Title and Meta Styles */
        .movie-title {
            font-size: 1.8rem;
            margin-bottom: 10px;
            color: var(--text-primary);
            text-shadow: var(--neon-purple);
            letter-spacing: 0.5px;
        }

        .movie-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 15px;
            color: var(--text-secondary);
        }

        .movie-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
            background: rgba(138, 43, 226, 0.1);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
            border: 1px solid rgba(138, 43, 226, 0.2);
        }

        
        /* Director Info Box */
        .director-info-box {
            background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 193, 7, 0.05));
            border-left: 4px solid #ffc107;
            border-radius: 8px;
            padding: 12px 16px;
            margin: 15px 0;
            font-size: 0.95rem;
            color: #ffffff;
            box-shadow: 0 2px 10px rgba(255, 193, 7, 0.1);
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 193, 7, 0.2);
        }

        .director-info-box::before {
            content: "🎥 Yönetmen: ";
            color: #ffd700;
            font-weight: 600;
        }

        .director-info-box:hover {
            background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(255, 193, 7, 0.08));
            box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2);
            transform: translateY(-1px);
        }

        /* Action Buttons */
        .action-buttons {
            display: flex;
            gap: 8px;
            margin: 15px 0;
            max-width: 400px;
            justify-content: center;
        }

        .action-buttons .neon-btn {
            flex: 1;
            padding: 10px 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            font-size: 0.85rem;
            font-weight: 500;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 8px;
            min-height: 44px;
            position: relative;
            overflow: hidden;
        }

        .action-buttons .neon-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        .action-buttons .neon-btn i {
            font-size: 1rem;
            transition: transform 0.3s ease;
        }

        .action-buttons .neon-btn:hover i {
            transform: scale(1.1);
        }

        /* Desktop text visibility */
        .btn-text {
            display: inline;
            white-space: nowrap;
        }

        .btn-text-mobile {
            display: none;
        }
        


        /* Provider Logos */
        .providers-section {
            margin-top: 20px;
        }

        .providers-section h6 {
            color: var(--text-secondary);
            margin-bottom: 10px;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .providers-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 15px 0;
        }

        .provider-logo {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            transition: transform 0.2s ease;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }

        .provider-logo:hover {
            transform: scale(1.15);
        }

        /* Tab System */
        .movie-tabs {
            margin-top: 20px;
            padding: 0 20px;
        }

        .nav-tabs {
            border: none;
            gap: 10px;
            margin-bottom: 20px;
            display: flex;
            justify-content: center;
        }

        .nav-tabs .nav-link {
            background: var(--glass-bg);
            border: 1px solid rgba(138, 43, 226, 0.2);
            color: var(--text-secondary);
            border-radius: 10px;
            padding: 8px 16px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            min-width: 120px;
            text-align: center;
        }

        .nav-tabs .nav-link:hover,
        .nav-tabs .nav-link.active {
            background: var(--gradient-purple);
            color: var(--text-primary);
            border-color: var(--accent-purple);
            box-shadow: var(--neon-purple);
            transform: translateY(-2px);
        }

        /* Trailer Section */
        .ratio-16x9 {
            max-width: 700px; /* 800px'den 700px'e düşürdük */
            margin: 0 auto;
            box-shadow: var(--neon-purple);
            border-radius: 10px;
            overflow: hidden;
        }

        /* Cast Section */
        .cast-list {
            display: flex;
            gap: 15px;
            overflow-x: auto;
            padding: 10px 0;
            scroll-behavior: smooth;
            scrollbar-width: thin;
            scrollbar-color: var(--accent-purple) var(--glass-bg);
        }

        .cast-list::-webkit-scrollbar {
            height: 6px;
        }

        .cast-list::-webkit-scrollbar-track {
            background: var(--glass-bg);
            border-radius: 10px;
        }

        .cast-list::-webkit-scrollbar-thumb {
            background: var(--accent-purple);
            border-radius: 10px;
        }

        .cast-member {
            flex: 0 0 100px;
            text-align: center;
        }

        .cast-member img {
            width: 100px;
            height: 150px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 8px;
            transition: transform 0.2s ease;
            box-shadow: 0 0 10px rgba(138, 43, 226, 0.3);
        }

        .cast-member img:hover {
            transform: scale(1.05);
        }

        .actor-name {
            font-size: 0.85rem;
            color: var(--text-primary);
            margin: 5px 0;
            font-weight: 500;
        }

        .character-name {
            font-size: 0.75rem;
            color: var(--accent-purple);
            opacity: 0.9;
        }

        /* Review Section */
        .review-form {
            background: rgba(138, 43, 226, 0.1);
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 20px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .decimal-rating {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
            padding: 15px;
            background: rgba(138, 43, 226, 0.05);
            border-radius: 12px;
        }

        .rating-stars {
            display: flex;
            gap: 8px;
            font-size: 1.5rem;
        }

        .rating-star {
            cursor: pointer;
            color: var(--text-secondary);
            transition: all 0.2s ease;
        }

        .rating-star:hover {
            transform: scale(1.2);
        }

        .rating-star.active {
            color: var(--accent-purple);
            text-shadow: var(--neon-purple);
        }

        /* Review Form */
        .review-form textarea {
            background: var(--glass-bg);
            border: 1px solid var(--accent-purple);
            color: var(--text-primary);
            resize: vertical;
            min-height: 100px;
            border-radius: 10px;
            padding: 12px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            width: 100%;
            max-width: 700px;
            margin: 0 auto;
            display: block;
        }

        .review-form textarea:focus {
            border-color: var(--accent-pink);
            box-shadow: var(--neon-purple);
            outline: none;
        }

        /* Yeniden Tasarlanmış Spoiler Checkbox */
        .spoiler-toggle {
            position: relative;
            background: var(--glass-bg);
            border-radius: 12px;
            padding: 12px 15px;
            margin-top: 15px;
            border: 1px solid rgba(255, 59, 59, 0.2);
            transition: all 0.3s ease;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .spoiler-toggle:hover {
            background: rgba(255, 59, 59, 0.1);
        }

        .spoiler-toggle .form-check-input {
            width: 3em;
            height: 1.5em;
            margin: 0;
            position: relative;
            cursor: pointer;
        }

        .spoiler-toggle .form-check-label {
            margin: 0;
            cursor: pointer;
            color: #ff3b3b;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .spoiler-toggle .form-check-label i {
            font-size: 1.1rem;
        }

        /* Reviews Container */
        .reviews-container {
            max-height: 400px;
            overflow-y: auto;
            padding-right: 10px;
            max-width: 800px;
            margin: 0 auto;
        }

        .reviews-container::-webkit-scrollbar {
            width: 6px;
        }

        .reviews-container::-webkit-scrollbar-track {
            background: var(--glass-bg);
            border-radius: 10px;
        }

        .reviews-container::-webkit-scrollbar-thumb {
            background: var(--accent-purple);
            border-radius: 10px;
        }

        .review-item {
            background: var(--glass-bg);
            border-radius: 12px;
            padding: 15px;
            margin-bottom: 15px;
            border: 1px solid rgba(138, 43, 226, 0.2);
            transition: transform 0.2s ease;
        }

        .review-item:hover {
            transform: translateY(-2px);
        }

        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }

        .review-header strong {
            color: var(--accent-purple);
            font-size: 1rem;
            text-shadow: 0 0 5px rgba(138, 43, 226, 0.3);
        }

        .review-header small {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.85rem;
            margin-left: 10px;
        }

        .rating-display {
            margin-top: 5px;
            font-size: 0.8rem;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .rating-display i {
            color: var(--text-secondary);
            font-size: 0.8rem;
        }

        .rating-display i.active {
            color: var(--accent-purple);
        }

        .spoiler-warning {
            background: rgba(255, 59, 59, 0.1);
            padding: 8px 12px;
            border-radius: 8px;
            margin-bottom: 12px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 1px solid rgba(255, 59, 59, 0.2);
        }

        .spoiler-warning i {
            color: #ff3b3b;
        }

        .show-spoiler {
            background: rgba(255, 59, 59, 0.2);
            border: none;
            color: #ff3b3b;
            padding: 5px 12px;
            border-radius: 6px;
            font-size: 0.85rem;
            transition: all 0.3s ease;
        }

        .show-spoiler:hover {
            background: rgba(255, 59, 59, 0.3);
        }

        .spoiler-content {
            filter: blur(5px);
            transition: all 0.3s ease;
            padding: 12px;
            background: rgba(138, 43, 226, 0.05);
            border-radius: 8px;
            margin-top: 10px;
        }

        .spoiler-content.revealed {
            filter: none;
        }

        .like-review {
            padding: 5px 12px;
            font-size: 0.9rem;
            background: var(--glass-bg);
            border: 1px solid rgba(138, 43, 226, 0.2);
            transition: all 0.3s ease;
        }

        .like-review:hover {
            transform: translateY(-2px);
        }

        .like-review.active i {
            color: var(--accent-pink);
            text-shadow: var(--neon-pink);
        }

        .like-review span {
            margin-left: 5px;
            font-size: 0.85rem;
        }

        /* Load More Button */
        .load-more-reviews {
            margin: 20px auto;
            display: block;
            max-width: 200px;
            font-size: 0.9rem;
            padding: 8px 20px;
        }

        /* Textarea placeholder color */
        .review-form textarea::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        /* Review date color */
        .review-header small {
            color: rgba(255, 255, 255, 0.7) !important;
        }

        /* Favorite Button - Listeme Ekle (Yeşil) */
        .favorite-btn {
            background: rgba(34, 197, 94, 0.15) !important;
            border: 1px solid rgba(34, 197, 94, 0.3) !important;
            color: #22c55e !important;
        }

        .favorite-btn:hover {
            background: rgba(34, 197, 94, 0.25) !important;
            border: 1px solid rgba(34, 197, 94, 0.5) !important;
        }

        .favorite-btn[data-status="true"] {
            background: linear-gradient(135deg, #22c55e, #16a34a) !important;
            border: 1px solid #22c55e !important;
            color: white !important;
            box-shadow: 0 0 15px rgba(34, 197, 94, 0.4) !important;
        }

        .favorite-btn[data-status="true"]:hover {
            background: linear-gradient(135deg, #16a34a, #15803d) !important;
        }

        /* Watch Button - Bu Filmi İzledim (Mor) */
        .watch-btn {
            background: rgba(168, 85, 247, 0.15) !important;
            border: 1px solid rgba(168, 85, 247, 0.3) !important;
            color: #a855f7 !important;
        }

        .watch-btn:hover {
            background: rgba(168, 85, 247, 0.25) !important;
            border: 1px solid rgba(168, 85, 247, 0.5) !important;
        }

        .watch-btn[data-status="true"] {
            background: linear-gradient(135deg, #a855f7, #9333ea) !important;
            border: 1px solid #a855f7 !important;
            color: white !important;
            box-shadow: 0 0 15px rgba(168, 85, 247, 0.4) !important;
        }

        .watch-btn[data-status="true"]:hover {
            background: linear-gradient(135deg, #9333ea, #7c3aed) !important;
        }

        /* Special Collection Button - Favorilere Ekle (Kırmızı) */
        .special-collection-btn {
            background: rgba(239, 68, 68, 0.15) !important;
            border: 1px solid rgba(239, 68, 68, 0.3) !important;
            color: #ef4444 !important;
        }

        .special-collection-btn:hover {
            background: rgba(239, 68, 68, 0.25) !important;
            border: 1px solid rgba(239, 68, 68, 0.5) !important;
        }

        .special-collection-btn[data-status="true"] {
            background: linear-gradient(135deg, #ef4444, #dc2626) !important;
            border: 1px solid #ef4444 !important;
            color: white !important;
            box-shadow: 0 0 15px rgba(239, 68, 68, 0.4) !important;
        }

        .special-collection-btn[data-status="true"]:hover {
            background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
        }



        .neon-modal .btn-close {
            filter: invert(1) grayscale(100%) brightness(200%);
        }

        .overview-text {
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            max-height: 65px;
            transition: all 0.3s ease;
        }

        .overview-toggle {
            color: var(--accent-purple);
            cursor: pointer;
            margin-top: 5px;
            display: inline-block;
        }

        .overview-toggle:hover {
            text-decoration: underline;
        }

        .text-muted {
            color: rgba(255, 255, 255, 0.7) !important;
        }

        .original-title.text-muted {
            color: rgba(255, 255, 255, 0.7) !important;
        }

        .lazy-load {
            opacity: 0;
            transition: opacity 0.3s ease-in;
        }

        img[src]:not([src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"]) {
            opacity: 1;
        }
        .providers-section .neon-btn.btn-sm {
            padding: 0.25rem 0.5rem;
            font-size: 0.875rem;
            border-radius: 0.2rem;
        }

        @media screen and (max-width: 768px) {
            #weeklyMovieBanner {
                padding: 10px;
            }
            
            .banner-title {
                font-size: 1.5rem;
                margin-bottom: 15px;
            }
            
            .movieBannerSwiper {
                height: 300px;
            }
            
            .banner-backdrop {
                height: 300px;
                object-fit: cover;
            }
            
            .banner-content {
                padding: 10px;
                bottom: 0;
                background: linear-gradient(transparent, rgba(0,0,0,0.9));
            }
            
            .banner-content h2 {
                font-size: 1.2rem;
                margin-bottom: 5px;
            }
            
            .banner-content p {
                font-size: 0.9rem;
                -webkit-line-clamp: 2;
                display: -webkit-box;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }
            
            .banner-badges {
                top: 0px;
            }
            
            .banner-badges span {
                font-size: 0.7rem;
                padding: 4px 8px;
                margin-left: 5px;
            }
            
            .swiper-button-next,
            .swiper-button-prev {
                width: 30px;
                height: 30px;
            }
            
            .swiper-button-next:after,
            .swiper-button-prev:after {
                font-size: 20px;
            }
            
            .swiper-pagination-bullet {
                width: 6px;
                height: 6px;
            }
        }

        @media screen and (max-width: 480px) {
            .movieBannerSwiper {
                height: 250px;
            }
            
            .banner-backdrop {
                height: 250px;
            }
            
            .banner-content h2 {
                font-size: 1.1rem;
            }
            
            .banner-content p {
                font-size: 0.8rem;
                -webkit-line-clamp: 2;
            }
        }

        @media screen and (max-width: 768px) {
            #moviePreferences {
                margin-top: -15px;
            }
            
            #moviePreferences h5 {
                font-size: 1rem;
            }
            
            .form-select, 
            .form-control,
            .form-label {
                font-size: 0.85rem;
            }
        }

        @media screen and (max-width: 768px) {
            .col-md-4.col-lg-3 {
                width: 33.333% !important;
                flex: 0 0 33.333% !important;
                max-width: 33.333% !important;
                padding: 5px;
            }
            
            .neon-card {
                margin-bottom: 10px;
            }
            
            .neon-card .card-img {
                height: auto;
                aspect-ratio: 2/3;
                object-fit: cover;
                width: 100%;
            }
            
            .movie-info-overlay {
                padding: 8px;
            }
            
            .movie-title {
                font-size: 0.9rem;
                margin-bottom: 4px;
            }
            
            .movie-genres {
                font-size: 0.7rem;
                margin-bottom: 4px;
            }
            
            .overview-text {
                font-size: 0.75rem;
                -webkit-line-clamp: 3;
                display: -webkit-box;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }
            
            .vote-badge {
                font-size: 0.65rem;
                padding: 2px 6px;
                right: 4px;
                top: 4px;
            }
            
            .air-date {
                font-size: 0.65rem;
                padding: 2px 6px;
                left: 4px;
                top: 4px;
            }
        }

        @media screen and (max-width: 480px) {
            .col-md-4.col-lg-3 {
                width: 50% !important;
                flex: 0 0 50% !important;
                max-width: 50% !important;
                padding: 3px;
            }
            
            .movie-info-overlay {
                padding: 6px;
            }
            
            .overview-text {
                -webkit-line-clamp: 2;
            }
        }

        @media screen and (max-width: 768px) {
            /* Modal Genel Düzen */
            .neon-modal .modal-dialog {
                margin: 2.5rem auto;
                max-width: 92%;
                width: 92%;
            }

            .neon-modal .modal-content {
                max-height: 82vh;
                overflow-y: auto;
                margin: 0 auto;
                border-radius: 15px;
            }

            .modal-body {
                padding: 0 !important;
            }
            
            /* Üst Bilgi Bölümü */
            .movie-info-section .row {
                margin: 0;
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            
            .movie-info-section .col-md-4,
            .movie-info-section .col-md-8 {
                width: 100%;
                padding: 10px;
            }
            
            .movie-poster {
                max-width: 180px;
                margin: 0 auto 1rem;
            }
            
            .movie-poster img {
                width: 100%;
                border-radius: 8px;
            }
            
            /* Başlık ve Meta Bilgiler */
            .movie-title {
                font-size: 1.3rem;
                text-align: center;
                margin: 0.5rem 0;
            }
            
            .movie-meta {
                justify-content: center;
                gap: 0.5rem;
                padding: 0 0.5rem;
            }
            
            .movie-meta span {
                font-size: 0.8rem;
                padding: 0.3rem 0.8rem;
            }

            /* Director Info Box mobil optimizasyonu */
            .director-info-box {
                padding: 10px 14px;
                margin: 12px 0;
                font-size: 0.85rem;
            }
            
            /* Overview Bölümü */
            .overview-container {
                margin: 8px 0;
            }
            
            .overview-text {
                font-size: 0.85rem;
                line-height: 1.4;
            }
            
            /* Aksiyon Butonları - Mobil */
            .action-buttons {
                display: flex;
                gap: 4px;
                margin: 12px 0;
                justify-content: center;
                max-width: 100%;
            }
            
            .action-buttons .neon-btn {
                flex: 1;
                font-size: 0.7rem;
                padding: 8px 3px;
                min-height: 40px;
                gap: 3px;
            }
            
            /* Mobilde yazıları gizle, sadece ikonları göster */
            .btn-text {
                display: none;
            }
            
            .btn-text-mobile {
                display: inline;
                font-size: 0.65rem;
                font-weight: 600;
            }
            

            
            /* Platform Logoları */
            .providers-section {
                margin: 12px 0;
            }
            
            .providers-list {
                display: flex;
                gap: 8px;
                overflow-x: auto;
                padding: 5px 0;
                justify-content: center;
            }
            
            .provider-logo {
                width: 32px;
                height: 32px;
                border-radius: 6px;
            }
            
            /* Tab Sistemi */
            .movie-tabs {
                margin-top: 12px;
            }
            
            .nav-tabs {
                display: flex;
                justify-content: space-between;
                border-bottom: none;
                padding: 0;
                margin: 0;
                width: 100%;
            }
            
            .nav-tabs .nav-item {
                flex: 1;
                text-align: center;
                margin: 0;
            }
            
            .nav-tabs .nav-link {
                font-size: 0.75rem;
                padding: 8px 5px;
                margin: 0;
                border: none;
                border-radius: 0;
                white-space: nowrap;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 3px;
            }
            
            .nav-tabs .nav-link i {
                font-size: 0.9rem;
            }
            
            .nav-tabs .nav-link.active {
                border-bottom: 2px solid var(--neon-color, #0ff);
            }
            
            /* Fragman Bölümü */
            #fragman .ratio {
                --bs-aspect-ratio: 56.25%;
                max-height: 250px;
            }
            
            #fragman iframe {
                width: 100%;
                height: 100%;
                border: none;
            }
            
            /* Yorum Bölümü */
            .review-form {
                padding: 8px;
            }
            
            .decimal-rating {
                margin: 8px 0;
            }
            
            .rating-stars {
                font-size: 1.2rem;
                display: flex;
                gap: 4px;
                justify-content: center;
                padding: 4px 0;
            }
            
            .rating-star {
                cursor: pointer;
            }
            
            textarea.form-control {
                min-height: 80px;
                font-size: 0.85rem;
            }

            /* Tab İçerikleri */
            .tab-content {
                padding: 10px 8px;
            }

            .tab-pane {
                margin-top: 8px;
            }

            /* Yorum Kartları */
            .review-card {
                padding: 8px;
                margin-bottom: 8px;
                width: 100%;
                font-size: 0.8rem;
            }
            
            .review-header {
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 5px;
                margin-bottom: 5px;
            }
            
            .review-user-info {
                display: flex;
                align-items: center;
                gap: 6px;
            }
            
            .review-user-avatar {
                width: 28px;
                height: 28px;
                border-radius: 50%;
            }
            
            .review-username {
                font-size: 0.75rem;
                margin: 0;
            }
            
            .review-date {
                font-size: 0.65rem;
                opacity: 0.7;
            }
            
            .review-rating {
                font-size: 0.7rem;
                white-space: nowrap;
                display: flex;
                align-items: center;
                gap: 2px;
            }
            
            .review-rating i {
                font-size: 0.75rem;
            }
            
            .review-text {
                font-size: 0.75rem;
                line-height: 1.3;
                margin: 6px 0;
            }
            
            .review-actions {
                display: flex;
                gap: 10px;
                font-size: 0.7rem;
            }
            
            .review-action-btn {
                display: flex;
                align-items: center;
                gap: 3px;
            }
            
            .review-action-btn i {
                font-size: 0.7rem;
            }
            
            .review-likes-count {
                font-size: 0.65rem;
                min-width: 16px;
                text-align: center;
            }

            /* Spoiler Uyarısı */
            .spoiler-warning {
                font-size: 0.75rem;
                padding: 6px;
                margin: 5px 0;
            }

            .spoiler-warning i {
                font-size: 0.8rem;
            }
        }

        @media screen and (max-width: 480px) {
            .neon-modal .modal-dialog {
                margin: 2rem auto;
                max-width: 88%;
                width: 88%;
            }

            .neon-modal .modal-content {
                max-height: 85vh;
                overflow-y: auto;
                border-radius: 12px;
            }

            .movie-poster {
                max-width: 150px;
            }

            .movie-title {
                font-size: 1.1rem;
            }

            .movie-meta span {
                font-size: 0.75rem;
                padding: 0.25rem 0.6rem;
            }
        }

        /* Yeni Membership Prompt Styles */
        .membership-prompt {
            margin-top: 20px;
        }

        .feature-card {
            background: rgba(13, 17, 23, 0.8);
            border-left: 3px solid var(--neon-color, #0ff);
            padding: 15px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            background: rgba(13, 17, 23, 0.9);
            transform: translateX(5px);
        }

        .feature-content {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .feature-icon {
            color: var(--neon-color, #0ff);
            font-size: 1.5rem;
            opacity: 0.9;
        }

        .feature-text {
            flex: 1;
        }

        .feature-text p {
            color: #fff;
            font-size: 1rem;
            margin-bottom: 10px;
            font-weight: 500;
        }

        .feature-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .feature-list span {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .feature-list span i {
            color: var(--neon-color, #0ff);
            font-size: 0.8rem;
        }

        .cta-buttons {
            margin-top: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .neon-btn-small {
            padding: 6px 12px;
            font-size: 0.85rem;
            border-radius: 4px;
            background: var(--neon-color, #0ff);
            color: #000;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .neon-btn-small:hover {
            transform: translateY(-2px);
            box-shadow: 0 2px 8px rgba(0, 255, 255, 0.3);
        }

        .neon-btn-small.outline {
            background: transparent;
            border: 1px solid var(--neon-color, #0ff);
            color: var(--neon-color, #0ff);
        }

        .or-divider {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.8rem;
        }

        /* Mobil için Media Queries */
        @media (max-width: 768px) {
            .feature-content {
                flex-direction: column;
                gap: 10px;
            }

            .feature-icon {
                font-size: 1.2rem;
            }

            .feature-text p {
                font-size: 0.95rem;
            }

            .feature-list span {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 480px) {
            .feature-card {
                padding: 12px;
            }

            .cta-buttons {
                flex-wrap: wrap;
                justify-content: center;
            }

            .neon-btn-small {
                width: 100%;
                text-align: center;
            }

            .or-divider {
                width: 100%;
                text-align: center;
                margin: 5px 0;
            }
        }

        /* Autocomplete Stilleri */
        .autocomplete-container {
            position: relative;
        }

        .autocomplete-suggestions {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: rgba(23, 21, 32, 0.95);
            border: 1px solid rgba(var(--neon-color-rgb), 0.3);
            border-radius: 8px;
            backdrop-filter: blur(10px);
            z-index: 1000;
            max-height: 300px;
            overflow-y: auto;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
            display: none;
        }

        .suggestion-item {
            padding: 12px 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .suggestion-item:last-child {
            border-bottom: none;
        }

        .suggestion-item:hover {
            background: rgba(var(--neon-color-rgb), 0.2);
            border-left: 3px solid rgb(var(--neon-color-rgb));
        }

        .suggestion-item.active {
            background: rgba(var(--neon-color-rgb), 0.3);
            border-left: 3px solid rgb(var(--neon-color-rgb));
        }

        .suggestion-image {
            width: 35px;
            height: 35px;
            border-radius: 6px;
            object-fit: cover;
            flex-shrink: 0;
        }

        .suggestion-text {
            color: #fff;
            font-size: 0.95rem;
            flex: 1;
        }

        .suggestion-type {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.6);
            margin-left: auto;
            flex-shrink: 0;
        }

        .no-suggestions {
            padding: 15px;
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
            font-style: italic;
        }

        /* Loading spinner için */
        .suggestion-loading {
            padding: 15px;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }

        .suggestion-loading i {
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .search-type-selector .btn-group {
            width: 100%;
            display: flex;
            margin-bottom: 10px;
            gap: 3px;
        }
        
        .search-type-selector .btn {
            flex: 1;
            border-radius: 6px;
            font-size: 0.85rem;
            padding: 8px 6px;
            transition: all 0.3s ease;
            text-align: center;
            white-space: nowrap;
        }
        
        .search-type-selector .btn-check:checked + .btn {
            background: linear-gradient(135deg, rgba(var(--neon-color-rgb), 0.8), rgba(var(--neon-color-rgb), 0.6));
            box-shadow: 0 0 15px rgba(var(--neon-color-rgb), 0.8), inset 0 1px 3px rgba(255,255,255,0.2);
            border: 2px solid rgba(var(--neon-color-rgb), 0.9);
            color: #fff;
            font-weight: bold;
            transform: scale(1.02);
        }
        
        .search-type-selector .btn:hover:not(.btn-check:checked + .btn) {
            background-color: rgba(var(--neon-color-rgb), 0.25);
            border-color: rgba(var(--neon-color-rgb), 0.5);
            transform: scale(1.01);
        }
        
        .neon-btn-small {
            background: rgba(23, 21, 32, 0.9);
            border: 1px solid rgba(var(--neon-color-rgb), 0.4);
            color: rgba(255, 255, 255, 0.7);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .search-type-selector .btn:not(.btn-check:checked + .btn) {
            opacity: 0.7;
        }
        
        .search-type-selector .btn-check:checked + .btn:hover {
            transform: scale(1.02);
            box-shadow: 0 0 20px rgba(var(--neon-color-rgb), 0.9), inset 0 1px 3px rgba(255,255,255,0.3);
        }

/* ===========================================
   TABLET GÖRÜNÜMÜ (768px - 1024px)
   iPad, iPad Air, iPad Mini için optimizasyon
   =========================================== */

@media screen and (min-width: 768px) and (max-width: 1024px) {
    /* Ana Container Düzeni */
    .container {
        padding: 0 15px;
    }
    
    /* Sidebar ve İçerik Düzeni - Tablette yan yana ama daha dengeli */
    .col-md-4 {
        width: 35% !important;
        flex: 0 0 35% !important;
        max-width: 35% !important;
        padding-right: 10px;
    }
    
    .col-md-8 {
        width: 65% !important;
        flex: 0 0 65% !important;
        max-width: 65% !important;
        padding-left: 10px;
    }
    
    /* Search Form - Sidebar içindeki formlar */
    .search-form {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .search-form h5 {
        font-size: 1rem;
        margin-bottom: 12px !important;
    }
    
    .chat-container {
        max-height: 150px;
        padding: 10px;
    }
    
    .assistant-message,
    .user-message {
        font-size: 0.8rem;
        padding: 8px;
    }
    
    /* Form elemanları */
    .form-select,
    .form-control,
    .neon-select {
        font-size: 0.85rem;
        padding: 8px 10px;
    }
    
    .form-label {
        font-size: 0.8rem;
        margin-bottom: 4px;
    }
    
    /* Search Type Selector */
    .search-type-selector .btn {
        font-size: 0.75rem;
        padding: 6px 4px;
    }
    
    .search-type-selector .btn i {
        display: block;
        margin-bottom: 2px;
    }
    
    /* Banner Swiper */
    .movieBannerSwiper {
        height: 280px;
    }
    
    .banner-backdrop {
        height: 280px;
    }
    
    .banner-content {
        padding: 15px;
    }
    
    .banner-content h2 {
        font-size: 1.3rem;
    }
    
    .banner-content p {
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .banner-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    /* Film Kartları - Tablette 3 sütun */
    #movieResults .col-md-4.col-lg-3,
    .col-md-4.col-lg-3 {
        width: 33.333% !important;
        flex: 0 0 33.333% !important;
        max-width: 33.333% !important;
        padding: 6px;
    }
    
    .neon-card {
        margin-bottom: 12px;
        position: relative;
        overflow: hidden;
    }
    
    /* Kart içindeki görselin tam sığması için */
    .neon-card img,
    .neon-card .card-img {
        width: 100%;
        aspect-ratio: 2/3;
        object-fit: cover;
        display: block;
        vertical-align: top;
    }
    
    /* Kart içi bilgiler */
    .show-info-overlay {
        padding: 10px;
        min-height: 100px;
    }
    
    .show-title {
        font-size: 0.9rem;
        margin-bottom: 5px;
        -webkit-line-clamp: 2;
    }
    
    .show-genres {
        font-size: 0.75rem;
    }
    
    .vote-badge {
        font-size: 0.7rem;
        padding: 3px 6px;
    }
    
    .air-date {
        font-size: 0.7rem;
        padding: 3px 6px;
    }
    
    /* Modal - Tablet optimizasyonu */
    .neon-modal .modal-dialog {
        max-width: 90%;
        margin: 30px auto;
    }
    
    .neon-modal .modal-content {
        max-height: 85vh;
    }
    
    .movie-poster {
        max-width: 200px;
    }
    
    .movie-title {
        font-size: 1.4rem;
    }
    
    .movie-meta span {
        font-size: 0.8rem;
        padding: 4px 10px;
    }
    
    /* Tab sistemi */
    .nav-tabs .nav-link {
        font-size: 0.8rem;
        padding: 8px 12px;
        min-width: 100px;
    }
    
    /* Oyuncu listesi */
    .cast-member {
        flex: 0 0 100px;
        width: 100px;
    }
    
    .cast-member img {
        width: 85px;
        height: 125px;
    }
    
    .cast-member .actor-name {
        font-size: 0.75rem;
        width: 95px;
    }
    
    .cast-member .character-name {
        font-size: 0.65rem;
        width: 95px;
    }
    
    /* Action Buttons */
    .action-buttons {
        gap: 6px;
        max-width: 100%;
    }
    
    .action-buttons .neon-btn {
        padding: 8px 8px;
        font-size: 0.75rem;
        min-height: 42px;
    }
    
    .btn-text {
        display: none;
    }
    
    .btn-text-mobile {
        display: inline;
        font-size: 0.7rem;
    }
    
    /* Review section */
    .review-form {
        padding: 15px;
    }
    
    .rating-stars {
        font-size: 1.3rem;
    }
    
    .review-item {
        padding: 12px;
    }
    
    /* Providers */
    .provider-logo {
        width: 36px;
        height: 36px;
    }
}

/* iPad Pro ve büyük tabletler için (1024px - 1199px) */
@media screen and (min-width: 1024px) and (max-width: 1199px) {
    .col-md-4 {
        width: 30% !important;
        flex: 0 0 30% !important;
        max-width: 30% !important;
    }
    
    .col-md-8 {
        width: 70% !important;
        flex: 0 0 70% !important;
        max-width: 70% !important;
    }
    
    /* Film Kartları - 4 sütun */
    #movieResults .col-md-4.col-lg-3,
    .col-md-4.col-lg-3 {
        width: 25% !important;
        flex: 0 0 25% !important;
        max-width: 25% !important;
        padding: 8px;
    }
    
    /* Kart içindeki görselin tam sığması için */
    .neon-card {
        position: relative;
        overflow: hidden;
    }
    
    .neon-card img,
    .neon-card .card-img {
        width: 100%;
        aspect-ratio: 2/3;
        object-fit: cover;
        display: block;
        vertical-align: top;
    }
    
    .search-form {
        padding: 18px;
    }
    
    .movieBannerSwiper {
        height: 320px;
    }
    
    .banner-backdrop {
        height: 320px;
    }
}

/* Türk platformları için özel renkler */
.provider-logo[alt*="Gain"] {
  background: #FF6B35;
  padding: 5px;
}

.provider-logo[alt*="Exxen"] {
  background: #000;
  padding: 5px;
}

/* Yeni Platform Kategorileri */
.provider-category-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.provider-category-title small {
  font-size: 12px;
  font-weight: 400;
}

.provider-type-section {
  margin-bottom: 15px;
}

.provider-type-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #718096;
  margin-bottom: 8px;
}

.providers-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.provider-logo-text {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  padding: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-decoration: none;
}

.provider-logo-text:hover {
  transform: translateY(-5px);
}

.turkish-providers {
  border: 2px solid #e53e3e;
  border-radius: 12px;
  padding: 15px;
  background: rgba(229, 62, 62, 0.05);
}

.other-providers {
  border: 2px solid #ed8936;
  border-radius: 12px;
  padding: 15px;
  background: rgba(237, 137, 54, 0.05);
}

.no-providers {
  padding: 20px;
  text-align: center;
  border: 2px dashed #a0aec0;
  border-radius: 12px;
  background: rgba(160, 174, 192, 0.05);
}

/* VPN gerekebilir platformlar için opacity */
.other-providers .provider-logo {
  opacity: 0.75;
  filter: grayscale(0.3);
}

.other-providers .provider-logo:hover {
  opacity: 1;
  filter: grayscale(0);
}

/* Platform kategorileri için responsive tasarım */
@media (max-width: 768px) {
  .provider-category-title {
    font-size: 14px;
  }
  
  .provider-logo,
  .provider-logo-text {
    width: 40px;
    height: 40px;
  }
  
  .provider-logo-text {
    font-size: 8px;
  }
  
  .providers-list {
    gap: 8px;
  }
  
  .turkish-providers,
  .other-providers {
    padding: 12px;
  }
}

