.bg-blue {
    background-color: #081018 !important
}

.posterImage {
    width: 300px
}

.personImage {
    max-width: 120px !important
}

.photo-grid {
    img {
        object-fit: cover;
        width: 100%;
        height: 100%;
        border-radius: 8px;
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2)
    }

    .gallery-link {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: bold;
        font-size: 1.5rem;
        text-align: center;
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2)
    }

    .gallery-link img {
        filter: brightness(50%)
    }

    .gallery-link span {
        position: absolute;
        z-index: 1
    }

    .gallery-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: bold;
        font-size: 1.5rem;
        background: rgba(0, 0, 0, 0.5)
    }
}

.scrolling-wrapper::-webkit-scrollbar {
    height: 8px
}

.scrolling-wrapper::-webkit-scrollbar-thumb {
    background: #aaa;
    border-radius: 4px
}

.main-image {
    height: 500px;
    object-fit: contain;
    width: 100%
}

.thumbnail {
    height: 80px;
    object-fit: cover;
    cursor: pointer
}

.scrolling-wrapper {
    overflow-x: auto;
    white-space: nowrap
}

.scrolling-wrapper img {
    margin-right: 10px
}
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.25rem;
    width: 48px;
    height: 48px;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(4px);
}

.arrow:hover {
    background-color: rgba(0, 0, 0, 0.6);
    transform: translateY(-50%) scale(1.05);
}

.arrow.left {
    left: 16px;
}

.arrow.right {
    right: 16px;
}

.arrow a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}


.provider-section {
    margin-top: 1.5rem
}

.provider-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px
}

.provider-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center
}

.provider-item {
    position: relative;
    display: inline-block;
    transition: all 0.3s ease
}

.provider-logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    object-fit: contain;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px)
}

.provider-item:hover .provider-logo {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 1)
}

.provider-tooltip {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 10
}

.provider-tooltip::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 4px solid rgba(0, 0, 0, 0.9)
}

.provider-item:hover .provider-tooltip {
    opacity: 1;
    bottom: -30px
}

@media (max-width: 768px) {
    .provider-grid {
        gap: 8px
    }

    .provider-logo {
        width: 40px;
        height: 40px;
        padding: 6px
    }

    .provider-title {
        font-size: 0.8rem;
        margin-bottom: 0.5rem
    }
}

.crew-table {
    font-size: 0.85rem
}

.crew-table th {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 0.75rem
}

.crew-table td {
    padding: 0.4rem 0.75rem;
    vertical-align: top
}

.crew-link:hover {
    color: var(--bs-primary) !important;
    text-decoration: underline !important
}

@media (max-width: 767px) {
    .crew-table {
        font-size: 0.8rem
    }

    .crew-table th, .crew-table td {
        padding: 0.3rem 0.5rem
    }

    .crew-table th {
        font-size: 0.75rem
    }
}

.production-table {
    font-size: 0.85rem
}

.production-table th {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 0.75rem
}

.production-table td {
    padding: 0.6rem 0.75rem;
    vertical-align: middle
}

.production-logo {
    max-width: 50px;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    background: var(--white);
    padding: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1)
}

.production-info {
    line-height: 1.3
}

.production-name {
    display: block;
    margin-bottom: 2px
}

@media (max-width: 767px) {
    .production-table {
        font-size: 0.8rem
    }

    .production-table th, .production-table td {
        padding: 0.4rem 0.5rem
    }

    .production-table th {
        font-size: 0.75rem
    }

    .production-logo {
        max-width: 40px;
        max-height: 30px
    }
}

.languages-table {
    font-size: 0.85rem
}

.languages-table th {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 0.75rem
}

.languages-table td {
    padding: 0.4rem 0.75rem;
    vertical-align: middle
}

.language-name {
    display: block
}

@media (max-width: 767px) {
    .languages-table {
        font-size: 0.8rem
    }

    .languages-table th, .languages-table td {
        padding: 0.3rem 0.5rem
    }

    .languages-table th {
        font-size: 0.75rem
    }
}

.reviews-container {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2)
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e9ecef
}

.reviews-title-section {
    flex: 1
}

.reviews-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center
}

.reviews-count {
    background: linear-gradient(135deg, var(--bs-primary), var(--bs-info));
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
    margin-left: 0.5rem
}

.reviews-subtitle {
    color: #6c757d;
    margin: 0;
    font-size: 0.9rem
}

.filter-btn {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 0.5rem 1rem;
    font-weight: 500;
    color: #495057;
    transition: all 0.3s ease
}

.filter-btn:hover {
    border-color: var(--bs-primary);
    color: var(--bs-primary);
    background: rgba(var(--bs-primary-rgb), 0.05)
}

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 0.5rem
}

.dropdown-item {
    border-radius: 8px;
    padding: 0.6rem 1rem;
    transition: all 0.2s ease
}

.dropdown-item:hover, .dropdown-item.active {
    background: linear-gradient(135deg, var(--bs-primary), var(--bs-info));
    color: white
}

.reviews-stats {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    color: white
}

.stat-item {
    text-align: center
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.3rem
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 500
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.review-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f3f4;
    transition: all 0.3s ease;
    position: relative
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12)
}

.review-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem
}

.review-author-section {
    display: flex;
    align-items: center;
    flex: 1
}

.author-avatar {
    position: relative;
    margin-right: 1rem
}

.author-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15)
}

.author-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    background: #28a745;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    border: 2px solid white
}

.author-info {
    flex: 1
}

.author-name {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.3rem;
    font-size: 1rem
}

.author-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #6c757d
}

.rating-display {
    text-align: right
}

.rating-percentage {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    line-height: 1
}

.rating-stars {
    color: #ffc107;
    font-size: 0.9rem;
    margin-top: 0.2rem
}

.review-content {
    margin-bottom: 1rem
}

.review-text {
    line-height: 1.6;
    color: #374151
}

.review-excerpt {
    margin-bottom: 0.5rem
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--bs-primary);
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    font-size: 0.9rem
}

.review-tags {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem
}

.review-tag {
    background: #e3f2fd;
    color: #1976d2;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f1f3f4
}

.review-interactions {
    display: flex;
    align-items: center;
    gap: 1rem
}

.interaction-label {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500
}

.interaction-buttons {
    display: flex;
    gap: 0.5rem
}

.interaction-btn {
    background: none;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem
}

.interaction-btn:hover {
    background: #f8f9fa;
    border-color: #dee2e6
}

.interaction-btn.helpful:hover {
    background: #d4edda;
    border-color: #28a745;
    color: #28a745
}

.interaction-btn.not-helpful:hover {
    background: #f8d7da;
    border-color: #dc3545;
    color: #dc3545
}

.spoiler-warning {
    background: #fff3cd;
    color: #856404;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem
}

.review-replies {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f1f3f4
}

.reply-form textarea {
    border-radius: 8px;
    border: 1px solid #e9ecef;
    margin-bottom: 0.5rem
}

.reply-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end
}

.load-more-section {
    text-align: center;
    margin-top: 2rem
}

.load-more-btn {
    background: linear-gradient(135deg, var(--bs-primary), var(--bs-info));
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--bs-primary-rgb), 0.3)
}

@media (max-width: 768px) {
    .reviews-header {
        flex-direction: column;
        gap: 1rem
    }

    .reviews-stats {
        grid-template-columns:repeat(2, 1fr)
    }

    .review-main {
        flex-direction: column;
        gap: 1rem
    }

    .rating-display {
        text-align: left
    }

    .review-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start
    }

    .interaction-buttons {
        flex-wrap: wrap
    }
}

#ratingValue {
    color: var(--primary-purple)
}

.rating-slider-container {
    position: relative;
    margin-bottom: 1rem
}

.rating-slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(to right, #dc3545 0%, #ffc107 50%, #28a745 100%);
    outline: none;
    -webkit-appearance: none;
    appearance: none
}

.rating-slider::-webkit-slider-thumb {
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--bs-primary);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease
}

.rating-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3)
}

.rating-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--bs-primary);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2)
}

.rating-display {
    text-align: center;
    margin-top: 1rem
}

.rating-percentage {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-purple);
    display: block
}

.rating-label {
    font-size: 0.9rem;
    color: var(--bs-secondary);
    font-weight: 500
}

.rating-indicators {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: var(--bs-secondary)
}

.category-ratings {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem
}

.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem
}

.category-item:last-child {
    margin-bottom: 0
}

.category-label {
    font-weight: 500;
    color: var(--bs-dark)
}

.star-rating {
    display: flex;
    gap: 4px
}

.star-rating i {
    font-size: 1.2rem;
    color: #ddd;
    cursor: pointer;
    transition: all 0.2s ease
}

.star-rating i:hover, .star-rating i.active {
    color: #ffc107;
    transform: scale(1.1)
}

.textarea-container {
    position: relative
}

.modern-textarea {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: all 0.3s ease;
    resize: vertical;
    min-height: 120px
}

.modern-textarea:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.2rem rgba(var(--bs-primary-rgb), 0.25)
}

.character-count {
    position: absolute;
    bottom: 8px;
    right: 12px;
    font-size: 0.75rem;
    color: var(--bs-secondary);
    background: rgba(255, 255, 255, 0.9);
    padding: 2px 6px;
    border-radius: 4px
}

.spoiler-section {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1rem
}

.form-check-input:checked {
    background-color: #f39c12;
    border-color: #f39c12
}

.submit-btn {
    position: relative;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-primary) 100%);
    border: none;
    transition: all 0.3s ease
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--bs-primary-rgb), 0.3)
}

.submit-btn:active {
    transform: translateY(0)
}

@media (max-width: 576px) {
    .category-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem
    }

    .rating-percentage {
        font-size: 1.5rem
    }
}

.movie-hero {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 3rem
}

.movie-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(3px);
    transform: scale(1.1);
    opacity: 0.3
}

.movie-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    opacity: 0.9
}

.movie-poster {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease
}

.movie-poster:hover {
    transform: scale(1.02)
}

.provider-logo {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--white);
    padding: 6px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease
}

.provider-logo:hover {
    transform: scale(1.1)
}

.movie-rating {
    display: flex;
    align-items: center;
    gap: 16px
}

.rating-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 2px solid rgba(255, 255, 255, 0.2)
}

.rating-number {
    font-size: 26px;
    font-weight: bold;
    line-height: 1;
    color: var(--white)
}

.rating-max {
    opacity: 0.8;
    color: var(--white)
}

.movie-meta {
    display: flex;
    gap: 24px;
    font-size: 1rem;
    opacity: 0.95;
    color: var(--white)
}

.genre-badge {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease
}

.genre-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px)
}

.trailer-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--light-purple), var(--secondary-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    color: var(--white);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg)
}

.trailer-trigger:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background: linear-gradient(135deg, var(--secondary-purple), var(--primary-purple))
}

.media-card-b {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light-gray), var(--white));
    border-radius: 16px;
    padding: 32px;
    text-decoration: none;
    color: var(--primary-purple);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid var(--medium-gray)
}

.media-card-b i {
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--secondary-purple)
}

.media-count {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-purple)
}

.media-text {
    font-size: 16px;
    opacity: 0.8;
    color: var(--dark-gray)
}

.media-card-b:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--light-purple);
    background: linear-gradient(135deg, var(--white), var(--light-gray))
}

.content-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--medium-gray);
    transition: all 0.3s ease
}

.content-card:hover {
    box-shadow: var(--shadow-lg)
}

.section-title {
    color: var(--primary-purple);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid var(--light-purple);
    padding-bottom: 0.5rem
}

.view-all-link {
    color: var(--secondary-purple);
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease
}

.view-all-link:hover {
    color: var(--primary-purple)
}

.movie-card, .person-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--medium-gray)
}

.movie-card:hover, .person-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg)
}

.card-img, .person-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease
}

.movie-card:hover .card-img, .person-card:hover .person-image {
    transform: scale(1.05)
}

.card-content, .person-content {
    padding: 1rem
}

.card-title, .person-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-purple);
    margin-bottom: 0.5rem
}

.card-title a, .person-name a {
    color: var(--primary-purple)
}

.card-title a:hover, .person-name a:hover {
    color: var(--secondary-purple)
}

.card-year, .person-character {
    font-size: 0.8rem;
    color: var(--dark-gray);
    margin: 0
}

.image-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--medium-gray)
}

.tab-link {
    padding: 0.75rem 1.5rem;
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease
}

.tab-link:hover {
    color: var(--secondary-purple);
    border-bottom-color: var(--light-purple)
}

.tab-link.active {
    color: var(--primary-purple);
    border-bottom-color: var(--primary-purple)
}

.tab-link.disabled {
    opacity: 0.5;
    pointer-events: none
}

.photo-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem
}

.photo-item {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease
}

.photo-item:hover {
    transform: scale(1.02)
}

.photo-link {
    display: block;
    text-decoration: none;
    position: relative
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(76, 29, 149, 0.8);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold
}

.sidebar-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--medium-gray)
}

.sidebar-title {
    color: var(--primary-purple);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem
}

.provider-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(60px, 1fr));
    gap: 0.75rem
}

.provider-item img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease
}

.provider-item:hover img {
    transform: scale(1.1)
}

.production-list {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.production-item {
    border-bottom: 1px solid var(--medium-gray);
    padding-bottom: 1rem
}

.production-item:last-child {
    border-bottom: none;
    padding-bottom: 0
}

.production-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--primary-purple);
    transition: color 0.3s ease
}

.production-link:hover {
    color: var(--secondary-purple)
}

.production-link img {
    max-width: 80px;
    max-height: 40px;
    object-fit: contain
}

.production-name {
    margin-bottom: 0.25rem;
    font-weight: 600
}

.production-country {
    color: var(--dark-gray)
}

.language-tags, .keyword-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem
}

.language-tag, .keyword-tag {
    background: linear-gradient(135deg, var(--light-purple), var(--secondary-purple));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease
}

.keyword-tag:hover {
    background: linear-gradient(135deg, var(--secondary-purple), var(--primary-purple));
    transform: translateY(-2px);
    color: var(--white)
}

.review-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow)
}

.review-content {
    flex: 1
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem
}

.review-author {
    color: var(--primary-purple);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem
}

.review-date {
    color: var(--dark-gray);
    font-size: 0.85rem
}

.review-rating i {
    color: #FFD700;
    font-size: 0.9rem
}

.review-text {
    color: var(--dark-purple);
    line-height: 1.6;
    margin-bottom: 1rem
}

.review-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--dark-gray)
}

.review-divider {
    border-color: var(--medium-gray);
    margin: 2rem 0
}

.rating-card {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: var(--white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-lg)
}

.rating-display {
    display: flex;
    flex-direction: column;
    align-items: center
}

.rating-score {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--white)
}

.rating-count {
    opacity: 0.9
}

.rating-stars i {
    color: #FFD700;
    font-size: 1.2rem;
    margin: 0 0.1rem
}

.review-form-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--medium-gray)
}

.modern-btn {
    background: linear-gradient(135deg, var(--light-purple), var(--secondary-purple));
    border: none;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    color: var(--white)
}

.modern-btn:hover {
    background: linear-gradient(135deg, var(--secondary-purple), var(--primary-purple));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white)
}

.modern-select, .modern-textarea {
    border: 2px solid var(--medium-gray);
    border-radius: 12px;
    padding: 0.75rem;
    transition: all 0.3s ease
}

.modern-select:focus, .modern-textarea:focus {
    border-color: var(--light-purple);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
    outline: none
}

@media (max-width: 768px) {
    .content-card {
        padding: 1.5rem
    }

    .section-title {
        font-size: 1.3rem
    }

    .photo-grid {
        grid-template-columns:repeat(auto-fit, minmax(150px, 1fr))
    }

    .review-item {
        flex-direction: column;
        align-items: flex-start
    }

    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem
    }
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    color: var(--white);
    margin: -2rem -15px 3rem -15px
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem
}

.hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 400
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem
    }

    .hero-subtitle {
        font-size: 1rem
    }
}

.content-section {
    margin-bottom: 4rem
}

.section-header {
    text-align: center;
    margin-bottom: 2rem
}

.section-title {
    color: var(--primary-purple);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem
}

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--light-purple), var(--secondary-purple));
    margin: 0 auto;
    border-radius: 2px
}

.media-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
    padding: 1rem 0;
}

@media (max-width: 768px) {
    .media-grid {
        grid-template-columns:repeat(auto-fill, minmax(140px, 1fr));
        gap: 1rem
    }
}

.media-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative
}

.media-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg)
}

.media-link {
    text-decoration: none;
    color: inherit;
    display: block
}

.media-poster {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden
}

.media-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease
}

.media-card:hover .media-poster img {
    transform: scale(1.05)
}

.media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 1rem
}

.media-card:hover .media-overlay {
    opacity: 1
}

.media-rating {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-purple);
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem
}

.media-rating i {
    color: #FFD700
}

.media-info {
    padding: 1rem
}

.media-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.media-year {
    font-size: 0.8rem;
    color: var(--dark-gray);
    margin: 0
}

.media-providers {
    padding: 0.75rem 1rem;
    border-top: 1px solid var(--medium-gray);
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    min-height: 52px;
    align-items: center
}

.provider-logo {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease
}

.provider-logo:hover {
    transform: scale(1.1)
}

@media (max-width: 768px) {
    .media-poster {
        height: 200px
    }

    .media-title {
        font-size: 0.85rem
    }

    .media-year {
        font-size: 0.75rem
    }

    .provider-logo {
        width: 28px;
        height: 28px
    }
}

:root {
    --primary-purple: #4C1D95;
    --secondary-purple: #6B46C1;
    --light-purple: #8B5CF6;
    --dark-purple: #3C1361;
    --white: #FFFFFF;
    --light-gray: #F8FAFC;
    --medium-gray: #E2E8F0;
    --dark-gray: #64748B;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1)
}

* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif
}

body {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    min-height: 100vh;
    color: var(--dark-purple)
}

.modern-header {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 0;
    z-index: 1000
}

.logo-container {
    transition: transform 0.3s ease;
    transform-origin: center center
}

.logo-container:hover {
    transform: scale(1.05)
}

.modern-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    padding: 0.75rem 1.5rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative
}

.modern-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px)
}

.search-container {
    position: relative;
    min-width: 400px;
    max-width: 600px
}

.modern-search {
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 12px 20px;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    font-size: 14px
}

.modern-search:focus {
    border-color: var(--light-purple);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
    outline: none
}

.search-results {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--medium-gray);
    max-height: 400px;
    max-width: 600px;
    width: 100%;
    overflow-y: auto
}

.search-result {
    padding: 12px 16px;
    border-bottom: 1px solid var(--medium-gray);
    transition: background 0.2s ease
}

.search-result:hover {
    background: var(--light-gray)
}

.search-result:last-child {
    border-bottom: none
}

.search-result a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--dark-purple);
    gap: 12px
}

.search-result img {
    border-radius: 6px;
    object-fit: cover
}

.main-content {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    margin: 2rem 0;
    overflow: hidden
}

.flash {
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border: none;
    font-weight: 500
}

.flash.success {
    background: linear-gradient(135deg, #10B981, #059669);
    color: white
}

.flash.error {
    background: linear-gradient(135deg, #EF4444, #DC2626);
    color: white
}

.flash.info {
    background: linear-gradient(135deg, var(--light-purple), var(--secondary-purple));
    color: white
}

.modern-footer {
    background: linear-gradient(135deg, var(--dark-purple) 0%, var(--primary-purple) 100%);
    color: var(--white);
    margin-top: 4rem
}

.footer-section h5 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1.5rem
}

.footer-link {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    padding: 0.25rem 0;
    transition: all 0.3s ease;
    display: inline-block
}

.footer-link:hover {
    color: var(--white) !important;
    transform: translateX(4px)
}

.newsletter-form {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem
}

.newsletter-input {
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 12px 16px;
    background: var(--white);
    color: var(--dark-purple)
}

.newsletter-input:focus {
    border-color: var(--light-purple);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
    outline: none
}

.btn-newsletter {
    background: linear-gradient(135deg, var(--light-purple), var(--secondary-purple));
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease
}

.btn-newsletter:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow)
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease
}

.social-links a:hover {
    background: var(--white);
    color: var(--primary-purple) !important;
    transform: translateY(-2px)
}

@media (max-width: 768px) {
    .modern-nav {
        text-align: center;
        margin: 1rem 0
    }

    .search-container {
        min-width: 300px;
        margin-top: 1rem
    }

    .footer-section {
        text-align: center;
        margin-bottom: 2rem
    }

    .modern-nav .nav-link {
        padding: 0.3rem 0.8rem !important
    }
}
.nav-tabs .nav-link, .color-primary-purple{
    color: var(--primary-purple);
}
.video-item {
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.video-item:hover {
    background-color: #f8f9fa;
    text-decoration: none;
}

.video-item.active {
    background-color: #0d6efd;
    color: #fff !important;
    box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.25);
}

.video-item.active .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}
.modal-content {
    border-radius: 1rem;
}

.modal-header img {
    border: 2px solid #fff;
}
.bg-primary {
    background-color: var(--primary-purple) !important;
}
.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
    text-transform: lowercase;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    transition: all 0.3s ease;
}

.logo-container:hover .logo-text {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
}