
    body {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        background-color: #040d18;
        color: #f0f6fc;
        line-height: 1.6;
    }
    
    .search-container{
        background: #111924 !important;
    }

    .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 20px;
        overflow-x: hidden;
    }

    /* Breadcrumb */
    .breadcrumb {
        margin-bottom: 10px;
    }

    .breadcrumb-list {
        display: flex;
        list-style: none;
        align-items: center;
        font-size: 14px;
        color: #8a96aa;
        margin: 0;
        padding: 0;
        flex-wrap: wrap;
        gap: 8px;
    }

    .breadcrumb-list li {
        display: flex;
        align-items: center;
        white-space: nowrap;
    }

    .breadcrumb-list li:not(:last-child)::after {
        content: '›';
        margin-left: 8px;
        color: #8a96aa;
    }

    .breadcrumb-link {
        color: #8a96aa;
        text-decoration: none;
        transition: color 0.2s;
    }

    .breadcrumb-link:hover {
        color: #f0f6fc;
    }

    .breadcrumb-current {
        color: #00d4ff !important;
        font-weight: 500;
    }

    /* Movie Summary Card */
    .movie-summary-card {
        border-radius: 16px;
        margin-top: 0;
        padding: 30px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    }

    .movie-summary-card .row {
        align-items: flex-start;
    }

    .movie-media {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .poster-container {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    }

    .movie-poster {
        width: 100%;
        height: auto;
        display: block;
        aspect-ratio: 2/3;
        object-fit: cover;
        max-height: 280px;
    }

    .trailer-btn-container {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }

    .watch-trailer-btn {
        background: #dc3545 !important;
        color: white !important;
        border: none !important;
        padding: 12px 24px !important;
        border-radius: 8px !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        cursor: pointer !important;
        transition: transform 0.2s, box-shadow 0.2s !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        justify-content: center !important;
        width: 100% !important;
    }

    .watch-trailer-btn:hover {
        background: #c82333 !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 24px rgba(220, 53, 69, 0.3) !important;
        color: white !important;
    }

    .watch-trailer-btn:focus {
        background: #c82333 !important;
        color: white !important;
        box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
    }

    /* OTT Platforms */
    .ott-platforms {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
        align-items: flex-start;
        flex-shrink: 0;
    }

    .ott-platform {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 50% !important;
        text-decoration: none;
        transition: background 0.2s, transform 0.2s;
        border: 2px solid rgba(255, 255, 255, 0.1);
    }

    .ott-platform:hover {
        background: rgba(255, 255, 255, 0.12);
        transform: translateY(-2px);
        border-color: rgba(255, 255, 255, 0.2);
    }

    .ott-platform img {
        height: 20px;
        width: auto;
        max-width: 25px;
        object-fit: contain;
    }

    /* Movie Details */
    .movie-details {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .movie-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 20px;
    }

    .movie-title-section {
        flex: 1;
    }

    .movie-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #f0f6fc;
        margin: 0;
    }

    .movie-subline {
        color: #8a96aa;
        font-size: 12px;
        margin: 0;
    }

    .genres {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .genre-badge {
        background: rgba(255, 255, 255, 0.08);
        color: #00d4ff;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 500;
        border: 1px solid rgba(0, 212, 255, 0.2);
    }

    .rating-section {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .imdb-rating {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 16px;
    }

    .rating-label {
        color: #8a96aa;
    }

    .rating-value {
        color: #f0f6fc;
        font-weight: 600;
    }

    .rating-icon {
        color: #f5c518;
        font-size: 18px;
    }

    .cinema-review {
        background: rgba(255, 255, 255, 0.03);
        padding: 20px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        display: inline-block;
        width: fit-content;
    }

    .review-label {
        color: #8a96aa;
        font-size: 22px !important;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 12px;
        font-weight: 600;
    }

    .rating-display {
        display: flex;
        align-items: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .rating-score {
        font-size: 2.5rem;
        font-weight: 700;
        color: #f0f6fc;
        line-height: 1;
    }

    .stars {
        display: flex;
        gap: 2px;
        padding-top: 10px;
    }

    .stars i {
        font-size: 20px;
    }

    .stars .filled {
        color: #ffd700;
    }

    .stars .half {
        color: #ffd700;
    }

    .stars .empty {
        color: rgba(255, 255, 255, 0.2);
    }

    .qualitative-tag {
        padding: 6px 12px;
        border-radius: 6px;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .qualitative-tag.must-watch {
        background: #51A687;
        color: white;
    }

    .qualitative-tag.good {
        background: #2ed33c;
        color: white;
    }

    .qualitative-tag.watchable {
        background: #422dce;
        color: white;
    }

    .qualitative-tag.average {
        background: #ddbb30;
        color: white;
    }

    .qualitative-tag.poor {
        background: #ff0000;
        color: white;
    }

    .qualitative-tag.skip {
        background: #a30000;
        color: white;
    }

    /* Review Card */
    .review-card {
        border-radius: 16px;
        margin-top: 30px;
    }

    .review-header {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 20px;
        color: #00d4ff;
    }

    .review-content {
        color: #f0f6fc !important;
        line-height: 1.8;
    }

    .review-content p, li {
        margin-bottom: 16px;
        font-size: 16px;
        color: #f0f6fc !important;
    }

    .review-content p:last-child {
        margin-bottom: 0;
    }

    /* YouTuber Reviews Card */
    .youtuber-reviews-card {
        border-radius: 16px;
        margin-top: 30px;
    }

    .video-preview {
        background: rgba(0, 0, 0, 0.3);
        border-radius: 12px;
        height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

    .preview-placeholder {
        text-align: center;
        color: #8a96aa;
    }

    .preview-placeholder i {
        font-size: 4rem;
        margin-bottom: 16px;
        color: #8a96aa;
    }

    .video-player {
        width: 100%;
        height: 100%;
    }

    .video-player iframe {
        width: 100%;
        height: 100%;
        border-radius: 12px;
    }

    .reviews-list {
        height: 400px;
        overflow-y: auto;
    }

    .reviews-header {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 20px;
        color: #00d4ff;
    }

    .review-items {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .review-item {
        display: flex;
        gap: 12px;
        padding: 0px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.05);
        cursor: pointer;
        transition: background 0.2s;
    }

    .review-item:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .review-item.active {
        background: rgba(59, 130, 246, 0.2);
        border: 1px solid rgba(59, 130, 246, 0.5);
    }

    .thumbnail-container {
        position: relative;
        flex-shrink: 0;
    }

    .review-thumbnail {
        width: 120px;
        height: 90px;
        border-radius: 8px;
        object-fit: cover;
    }

    .play-overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 32px;
        height: 32px;
        background: rgba(0, 0, 0, 0.7);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 12px;
    }

    .review-info {
        flex: 1;
        min-width: 0;
        padding-top: 3%;
    }

    .review-title {
        font-size: 14px;
        font-weight: 600;
        color: #f0f6fc;
        margin: 0 0 4px 0;
    }

    .review-channel {
        font-size: 12px;
        color: #8a96aa;
        margin: 0;
    }

    /* Movie Details Block */
    .movie-details-block {
        border-radius: 16px;
        margin-top: 30px;
    }

    .details-header {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 24px;
        color: #00d4ff;
    }

    .detail-item {
        display: flex;
        flex-direction: column;
        gap: 4px;
        margin-bottom: 20px;
    }

    .detail-label {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: #8a96aa;
        font-weight: 600;
    }

    .detail-value {
        font-size: 16px;
        color: #f0f6fc;
        line-height: 1.4;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .container {
            padding: 16px;
            overflow-x: hidden;
        }
        
        .row {
            margin-left: 0;
            margin-right: 0;
        }
        
        .col-lg-9, .col-lg-3, .col-md-12, .col-sm-12 {
            padding-left: 0;
            padding-right: 0;
        }
        
        .movie-summary-card,
        .review-card,
        .movie-details-block {
            padding: 20px;
        }
        
        .movie-summary-card .row {
            gap: 15px;
            margin: 0;
        }
        
        .movie-summary-card .col-lg-3,
        .movie-summary-card .col-lg-9,
        .movie-summary-card .col-md-5,
        .movie-summary-card .col-md-7,
        .movie-summary-card .col-sm-12 {
            padding-left: 0;
            padding-right: 0;
        }
        
        .movie-title {
            font-size: 2rem;
        }
        
        .movie-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
        }
        
        .ott-platforms {
            justify-content: flex-start;
            align-self: flex-end;
        }
        
        .rating-display {
            flex-direction: column;
            align-items: flex-start;
            gap: 12px;
        }
        
        .breadcrumb-list {
            font-size: 12px;
        }
        
        .breadcrumb-list li:not(:last-child)::after {
            margin: 0 6px;
        }
        
        .poster-container {
            max-width: 160px;
            width: 100%;
            margin: 0 auto;
        }
        
        .movie-poster {
            max-height: 220px;
        }
        
        .trailer-btn-container {
            max-width: 160px;
        }
        
        /* Mobile YouTuber Reviews */
        .youtuber-reviews-card {
            padding: 20px;
        }
        
        .youtuber-reviews-card .row {
            flex-direction: column;
        }
        
        .video-preview {
            height: 250px;
            margin-bottom: 20px;
        }
        
        .reviews-list {
            height: 300px;
        }
        
        .review-item {
            padding: 8px;
        }
        
        .review-thumbnail {
            width: 80px;
            height: 60px;
        }
        
        .review-title {
            font-size: 12px;
        }
        
        .review-channel {
            font-size: 10px;
        }
    }

    @media (max-width: 480px) {
        .container {
            padding: 12px;
            overflow-x: hidden;
        }
        
        .row {
            margin-left: 0;
            margin-right: 0;
        }
        
        .col-lg-9, .col-lg-3, .col-md-12, .col-sm-12 {
            padding-left: 0;
            padding-right: 0;
        }
        
        .movie-summary-card,
        .review-card,
        .movie-details-block {
            padding: 16px;
        }
        
        .movie-summary-card .row {
            gap: 12px;
        }
        
        .movie-title {
            font-size: 1.75rem;
        }
        
        .movie-header {
            gap: 12px;
        }
        
        .ott-platform {
            width: 35px;
            height: 35px;
        }
        
        .ott-platform img {
            height: 18px;
            max-width: 22px;
        }
        
        .rating-score {
            font-size: 1.5rem;
        }
        
        .stars i {
            font-size: 16px;
        }
        
        /* Mobile Cinema Review - Full Width */
        .cinema-review {
            display: block;
            width: 100%;
        }
        
        .rating-display {
            flex-direction: row;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }
        
        .rating-score {
            font-size: 1.5rem;
        }
        
        .stars {
            gap: 1px;
        }
        
        .stars i {
            font-size: 16px;
        }
        

        
        .qualitative-tag {
            font-size: 12px;
            padding: 4px 8px;
        }
        
        .poster-container {
            max-width: 100%;
            width: 100%;
            margin: 0 auto;
        }
        
        .movie-poster {
            width: 100%;
            height: auto;
            max-height: 300px;
            object-fit: cover;
            border-radius: 12px;
        }
        
        .movie-poster {
            width: 100%;
            height: auto;
            max-height: 300px;
            object-fit: cover;
        }
        
        .trailer-btn-container {
            display: none;
        }
        
        /* Mobile YouTuber Reviews - Small Screens */
        .youtuber-reviews-card {
            padding: 16px;
        }
        
        .video-preview {
            height: 200px;
        }
        
        .reviews-list {
            height: 250px;
        }
        
        .review-thumbnail {
            width: 60px;
            height: 45px;
        }
        
        .review-title {
            font-size: 11px;
        }
        
        .review-channel {
            font-size: 9px;
        }
    }

    /* Focus States for Accessibility */
    button:focus,
    a:focus {
        outline: 2px solid #3b82f6;
        outline-offset: 2px;
    }

    /* Smooth Transitions */
    * {
        transition: color 0.2s, background-color 0.2s, transform 0.2s, box-shadow 0.2s;
    }
    
    .tmdb-user-reviews-card {
  padding: 2rem;
  background: #121212;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}

.tmdb-user-reviews-card .section-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #fff;
  border-left: 4px solid #e50914;
  padding-left: .75rem;
}

.review-card {
  background: #132235;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .2s ease, box-shadow .2s ease;
}

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

.review-author {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.author-avatar img,
.author-avatar .default-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  color: #666;
  font-size: 36px;
}

.author-name {
  font-weight: 600;
  font-size: .95rem;
  color: #fff;
}

.author-rating {
  font-size: .9rem;
  font-weight: 600;
  color: #f5c518;
}

.review-body {
  font-size: .9rem;
  line-height: 1.5;
  color: #ddd;
  flex-grow: 1;
}

.review-footer {
  margin-top: 1rem;
}

.review-footer .read-more {
  font-size: .85rem;
  color: #47a7f5;
  text-decoration: none;
  transition: color .2s;
}

.review-footer .read-more:hover {
  color: #1e90ff;
}
.review-scroll {
  max-height: 600px;   /* limit section height */
  overflow-y: auto;    /* enable vertical scroll */
  padding-right: 8px;  /* prevent scrollbar overlay */
}

/* Custom scrollbar */
.review-scroll-horizontal {
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0.5rem;
    scroll-behavior: smooth;
}

/* Horizontal scrollbar styling */
.review-scroll-horizontal::-webkit-scrollbar {
    height: 4px;
}
.review-scroll-horizontal::-webkit-scrollbar-track {
    background: #0a1628;
    border-radius: 10px;
}
.review-scroll-horizontal::-webkit-scrollbar-thumb {
    background: #e50914; /* red accent */
    border-radius: 10px;
}
.review-scroll-horizontal::-webkit-scrollbar-thumb:hover {
    background: #b00710;
}


.card-header h3 {
  font-size: 1.4rem;
  font-weight: 600;
}

.review-card p {
  line-height: 1.5;
}

.btn-minimal{
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 30px;
    border-radius: 15px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: fit-content;
}
.btn-glass:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-1px);
            color: white;
        }