        .detail-hero {
            background-size: cover;
            background-position: center;
            height: 400px;
            display: flex;
            align-items: flex-end;
            position: relative;
            margin-bottom: 2rem;
        }

        .detail-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(26, 26, 26, 0.8) 50%, rgba(26, 26, 26, 1) 100%);
        }

        .detail-hero-content {
            position: relative;
            z-index: 2;
            width: 100%;
            padding: 2rem;
            display: flex;
            gap: 2rem;
            align-items: flex-end;
        }

        .detail-poster {
            width: 200px;
            height: 300px;
            border-radius: 10px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
            border: 3px solid #FFD700;
            flex-shrink: 0;
        }

        .detail-title-section h1 {
            font-size: 2.5rem;
            color: #FFD700;
            margin-bottom: 0.5rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        .detail-title-section p {
            color: #cccccc;
            font-size: 1rem;
        }

        .detail-rating {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: 1rem;
        }

        .detail-rating-value {
            background-color: #FFD700;
            color: #1a1a1a;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .detail-rating-text {
            color: #cccccc;
        }

        .detail-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .detail-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .detail-left {
            background-color: rgba(42, 42, 42, 0.5);
            padding: 2rem;
            border-radius: 10px;
            border-left: 4px solid #FFD700;
        }

        .detail-left h2 {
            color: #FFD700;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        .detail-left p {
            color: #cccccc;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .detail-info-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .info-box {
            background-color: rgba(255, 215, 0, 0.1);
            padding: 1rem;
            border-radius: 5px;
            border: 1px solid rgba(255, 215, 0, 0.3);
        }

        .info-box label {
            color: #FFD700;
            font-weight: bold;
            display: block;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
        }

        .info-box value {
            color: #ffffff;
            display: block;
        }

        .detail-right {
            background-color: rgba(42, 42, 42, 0.5);
            padding: 2rem;
            border-radius: 10px;
            border-left: 4px solid #FFD700;
            height: fit-content;
        }

        .detail-right h2 {
            color: #FFD700;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        .action-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .detail-btn {
            padding: 1rem;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
            font-size: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .detail-btn.primary {
            background-color: #FFD700;
            color: #1a1a1a;
        }

        .detail-btn.primary:hover {
            background-color: #FFA500;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
        }

        .detail-btn.secondary {
            background-color: transparent;
            border: 2px solid #FFD700;
            color: #FFD700;
        }

        .detail-btn.secondary:hover {
            background-color: rgba(255, 215, 0, 0.1);
            transform: translateY(-2px);
        }

        .collection-status {
            background-color: rgba(255, 215, 0, 0.1);
            padding: 1rem;
            border-radius: 5px;
            border-left: 4px solid #FFD700;
            margin-top: 1.5rem;
        }

        .collection-status p {
            color: #FFD700;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .status-badge {
            display: inline-block;
            background-color: #FFD700;
            color: #1a1a1a;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: bold;
        }

        .genres-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .genre-badge {
            background-color: rgba(255, 165, 0, 0.2);
            border: 1px solid #FFA500;
            color: #FFA500;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
        }

        .cast-section {
            background-color: rgba(42, 42, 42, 0.5);
            padding: 2rem;
            border-radius: 10px;
            border-left: 4px solid #FFD700;
            margin: 3rem 0;
        }

        .cast-section h2 {
            color: #FFD700;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        .cast-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 1.5rem;
        }

        .cast-card {
            background-color: rgba(255, 215, 0, 0.05);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .cast-card:hover {
            border-color: #FFD700;
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
        }

        .cast-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            background-color: #333;
        }

        .cast-info {
            padding: 1rem;
            text-align: center;
        }

        .cast-name {
            color: #FFD700;
            font-weight: bold;
            margin-bottom: 0.3rem;
            word-break: break-word;
        }

        .cast-role {
            color: #cccccc;
            font-size: 0.85rem;
            word-break: break-word;
        }

        .crew-section {
            background-color: rgba(42, 42, 42, 0.5);
            padding: 2rem;
            border-radius: 10px;
            border-left: 4px solid #FFA500;
            margin: 3rem 0;
        }

        .crew-section h2 {
            color: #FFA500;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        .crew-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
        }

        .crew-item {
            background-color: rgba(255, 165, 0, 0.05);
            border: 1px solid rgba(255, 165, 0, 0.2);
            padding: 1rem;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .crew-item:hover {
            border-color: #FFA500;
            box-shadow: 0 5px 15px rgba(255, 165, 0, 0.2);
        }

        .crew-name {
            color: #FFA500;
            font-weight: bold;
            margin-bottom: 0.3rem;
        }

        .crew-job {
            color: #cccccc;
            font-size: 0.85rem;
        }

        .loading {
            text-align: center;
            padding: 3rem;
            color: #FFD700;
        }

        .loading i {
            font-size: 3rem;
            animation: spin 2s linear infinite;
        }

        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .back-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: #FFD700;
            text-decoration: none;
            margin-bottom: 1rem;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .back-button:hover {
            color: #FFA500;
            transform: translateX(-5px);
        }

        /* Watch Providers Section */
        .watch-providers-section {
            background-color: rgba(42, 42, 42, 0.5);
            padding: 2rem;
            border-radius: 10px;
            border-left: 4px solid #FFD700;
            margin: 3rem 0;
        }

        .watch-providers-section h2 {
            color: #FFD700;
            margin-bottom: 2rem;
            font-size: 1.5rem;
        }

        .providers-container {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .provider-category {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .provider-category h3 {
            color: #FFA500;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .providers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
            gap: 1.5rem;
        }

        .provider-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem;
            background-color: rgba(255, 215, 0, 0.05);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 10px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .provider-item:hover {
            border-color: #FFD700;
            background-color: rgba(255, 215, 0, 0.1);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
        }

        .provider-logo {
            width: 92px;
            height: 92px;
            object-fit: contain;
            border-radius: 8px;
            background-color: rgba(255, 255, 255, 0.05);
        }

        .provider-name {
            color: #cccccc;
            font-size: 0.85rem;
            text-align: center;
            font-weight: 500;
        }

        /* Trailer Section */
        .trailer-section {
            background-color: rgba(42, 42, 42, 0.5);
            padding: 2rem;
            border-radius: 10px;
            border-left: 4px solid #FFD700;
            margin: 3rem 0;
        }

        .trailer-section h2 {
            color: #FFD700;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .trailer-wrapper {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 0;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
            background: #000;
        }

        .trailer-iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 10px;
        }

        .trailer-unavailable {
            text-align: center;
            padding: 3rem;
            color: var(--text-secondary);
        }

        .trailer-unavailable i {
            font-size: 3rem;
            color: var(--text-secondary);
            opacity: 0.5;
            margin-bottom: 1rem;
        }

        /* Online Watch Section */
        .online-watch-section {
            background-color: rgba(42, 42, 42, 0.5);
            padding: 2rem;
            border-radius: 10px;
            border-left: 4px solid #FFD700;
            margin: 3rem 0;
        }

        .online-watch-section h2 {
            color: #FFD700;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .online-watch-description {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .watch-search-buttons {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .watch-search-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            padding: 1rem 1.5rem;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 165, 0, 0.15) 100%);
            border: 2px solid rgba(255, 215, 0, 0.3);
            border-radius: 8px;
            color: var(--secondary-color);
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .watch-search-btn:hover {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.25) 0%, rgba(255, 165, 0, 0.25) 100%);
            border-color: var(--secondary-color);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
        }

        .watch-search-btn.hd-film-cehennemi {
            background: linear-gradient(135deg, rgba(255, 69, 0, 0.2) 0%, rgba(255, 140, 0, 0.2) 100%);
            border-color: rgba(255, 69, 0, 0.5);
            color: #ff4500;
        }

        .watch-search-btn.hd-film-cehennemi:hover {
            background: linear-gradient(135deg, rgba(255, 69, 0, 0.3) 0%, rgba(255, 140, 0, 0.3) 100%);
            border-color: #ff4500;
            box-shadow: 0 5px 15px rgba(255, 69, 0, 0.4);
        }

        .watch-search-btn.hd-film-cehennemi i {
            color: #ff4500;
        }

        .watch-search-btn i {
            font-size: 1.2rem;
        }

        .watch-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }

        .watch-link-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background-color: rgba(255, 215, 0, 0.05);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .watch-link-item:hover {
            border-color: var(--secondary-color);
            background-color: rgba(255, 215, 0, 0.1);
            transform: translateX(5px);
        }

        .watch-link-item a {
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex: 1;
        }

        .watch-link-item a:hover {
            color: var(--accent-color);
        }

        .watch-link-item i {
            font-size: 1.1rem;
        }

        @media (max-width: 768px) {
            .watch-search-buttons {
                grid-template-columns: 1fr;
            }

            .watch-links-container {
                grid-template-columns: 1fr;
            }
        }

        /* Similar Movies Section */
        .similar-movies-section {
            background-color: rgba(42, 42, 42, 0.5);
            padding: 2rem;
            border-radius: 10px;
            border-left: 4px solid #FFD700;
            margin: 3rem 0;
        }

        .similar-movies-section h2 {
            color: #FFD700;
            margin-bottom: 2rem;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .similar-movies-section .movies-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 2rem;
        }

        @media (max-width: 768px) {
            .detail-hero-content {
                flex-direction: column;
                align-items: center;
            }

            .detail-poster {
                width: 150px;
                height: 225px;
            }

            .detail-title-section h1 {
                font-size: 1.8rem;
                text-align: center;
            }

            .detail-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .detail-info-grid {
                grid-template-columns: 1fr;
            }

            .detail-right {
                height: auto;
            }

            .providers-grid {
                grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
                gap: 1rem;
            }

            .provider-logo {
                width: 70px;
                height: 70px;
            }

            .provider-name {
                font-size: 0.75rem;
            }

            .trailer-wrapper {
                padding-bottom: 56.25%;
            }

            .similar-movies-section .movies-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
                gap: 1.5rem;
            }
        }