:root {
    --primary: #e50914;
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --text-main: #ffffff;
    --text-dim: #8c8c8c;
    --accent-gold: #FFD700;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
}


/* ==================== NAVIGATION ==================== */
.navbar {
    position: sticky;
    top: 0;
    margin-bottom: -80px;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 20px 4%;
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Search Container */
.search-container {
    position: relative;
}

.search-form {
    display: flex;
    align-items: center;
    gap: 5px;
}

.search-input {
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: white;
    font-size: 14px;
    width: 200px;
    transition: all 0.3s;
}

.search-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary);
    width: 250px;
}

.search-btn {
    background: var(--primary);
    border: none;
    padding: 8px 12px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.search-btn:hover {
    background: #ff0a1a;
    transform: scale(1.1);
}

.search-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 12px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    font-size: 16px;
}

/* ==================== HERO SECTION ==================== */
.hero-backdrop {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.backdrop-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px);
    transform: scale(1.1);
}

.backdrop-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(10, 10, 10, 0.98) 0%,
        rgba(10, 10, 10, 0.95) 40%,
        rgba(10, 10, 10, 0.7) 70%,
        rgba(10, 10, 10, 0.9) 100%
    ),
    linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.3) 0%,
        rgba(10, 10, 10, 0.9) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 4%;
    width: 100%;
}

.movie-main-info {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.poster-float {
    flex-shrink: 0;
}

.poster-float img {
    width: 280px;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.title-section {
    flex: 1;
    padding-top: 20px;
}

.movie-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px, 5vw, 56px);
    margin-bottom: 20px;
    letter-spacing: 1px;
    line-height: 1.2;
}

.meta-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(10px);
}

.badge.rating {
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.3);
    color: var(--accent-gold);
}

.badge.year {
    background: rgba(229, 9, 20, 0.15);
    border-color: rgba(229, 9, 20, 0.3);
}

.badge.status-ongoing {
    background: rgba(46, 204, 113, 0.15);
    border-color: rgba(46, 204, 113, 0.3);
    color: #2ecc71;
}

.badge.status-completed {
    background: rgba(52, 152, 219, 0.15);
    border-color: rgba(52, 152, 219, 0.3);
    color: #3498db;
}

.genre-pills {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.genre-pill {
    background: rgba(229, 9, 20, 0.1);
    border: 1px solid rgba(229, 9, 20, 0.3);
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
}

.description-preview {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    max-width: 700px;
}

.primary-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ==================== BUTTONS ==================== */
.btn {
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
}

.btn-small {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: #ff0a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.delete-btn {
    background: rgba(220, 53, 69, 0.2) !important;
    border-color: rgba(220, 53, 69, 0.4) !important;
    color: #ff4d5e !important;
}

.delete-btn:hover {
    background: rgba(220, 53, 69, 0.3) !important;
}

/* ==================== MAIN CONTENT ==================== */
.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 4%;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    margin-bottom: 50px;
}

.main-column {
    width: 100%;
    min-width: 0;
}

.sidebar-column {
    width: 100%;
}

.content-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ==================== SEASON HEADERS ==================== */
.season-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255,255,255,0.1);
}

.season-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.season-count {
    font-size: 14px;
    opacity: 0.7;
    font-weight: 400;
}

.season-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    margin-top: 5px;
}

.season-description {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-top: 8px;
}

/* ==================== EPISODES GRID ==================== */
.episodes-grid {
    display: grid;
    gap: 15px;
}

.episode-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s;
}

.episode-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(229, 9, 20, 0.3);
    transform: translateX(5px);
}

.episode-header {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    align-items: flex-start;
}

.episode-number-badge {
    background: var(--primary);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    white-space: nowrap;
}

.episode-info {
    flex: 1;
    min-width: 0;
}

.episode-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: white;
    word-wrap: break-word;
}

.episode-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--text-dim);
    flex-wrap: wrap;
}

.episode-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 15px;
}

.episode-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.quality-option {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.quality-option:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.quality-option.recommended {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    color: var(--accent-gold);
}

.quality-option.primary {
    background: var(--primary);
    border-color: var(--primary);
}

/* ==================== RATING CARD ==================== */
.rating-card {
    text-align: center;
}

.rating-display {
    padding: 20px;
    margin-bottom: 25px;
}

.rating-score {
    font-size: 64px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.rating-stars {
    font-size: 32px;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.rating-stars .star {
    margin: 0 2px;
    opacity: 0.3;
}

.rating-stars .star.filled {
    opacity: 1;
}

.rating-count {
    font-size: 14px;
    color: var(--text-dim);
}

.rate-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.rate-title {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.star-btn {
    font-size: 32px;
    color: rgba(255, 215, 0, 0.3);
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.star-btn:hover,
.star-btn.active {
    color: var(--accent-gold);
    transform: scale(1.2);
}

/* ==================== COMMENTS SECTION ==================== */
.comments-section {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
}

.comment-form {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 15px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 15px;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s;
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comment {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
}

.comment-header {
    margin-bottom: 12px;
}

.comment-author {
    display: flex;
    gap: 12px;
    align-items: center;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: rgba(229, 9, 20, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.author-name {
    font-weight: 600;
    font-size: 15px;
}

.comment-date {
    font-size: 13px;
    color: var(--text-dim);
}

.comment-text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    word-wrap: break-word;
}

.no-comments {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-dim);
}

/* ==================== FOOTER ==================== */
.footer {
    background: linear-gradient(to bottom, var(--bg-dark), #000);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 60px 4% 30px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.footer-text {
    color: var(--text-dim);
    font-size: 14px;
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-dim);
    font-size: 13px;
}

/* ==================== RESPONSIVE - MOBILE FIRST ==================== */

@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .poster-float img {
        width: 220px;
        height: 330px;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-links {
        gap: 15px;
    }

    .search-input {
        display: none;
        position: absolute;
        right: 0;
        top: 45px;
        width: 250px;
        z-index: 100;
    }

    .search-input.active {
        display: block;
    }

    .search-btn {
        display: none;
    }

    .search-btn.active {
        display: block;
        position: absolute;
        right: 10px;
        top: 53px;
        z-index: 101;
    }

    .search-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Hero Section */
    .hero-backdrop {
        min-height: auto;
    }

    .hero-content {
        padding: 40px 4%;
    }

    .movie-main-info {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }

    .poster-float {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .poster-float img {
        width: 200px;
        height: 300px;
    }

    .title-section {
        padding-top: 0;
        width: 100%;
    }

    .movie-title {
        font-size: 28px;
        text-align: center;
    }

    .meta-badges {
        justify-content: center;
    }

    .genre-pills {
        justify-content: center;
    }

    .description-preview {
        text-align: center;
    }

    .primary-actions {
        justify-content: center;
        width: 100%;
    }

    .btn {
        flex: 1;
        min-width: 150px;
        justify-content: center;
    }

    /* Content Grid */
    .content-wrapper {
        padding: 30px 4%;
    }

    .content-card {
        padding: 20px;
    }

    .section-title {
        font-size: 20px;
    }

    /* Episodes */
    .episode-header {
        flex-direction: column;
        gap: 10px;
    }

    .episode-number-badge {
        width: fit-content;
    }

    .episode-title {
        font-size: 15px;
    }

    .episode-actions {
        gap: 6px;
    }

    .quality-option {
        font-size: 12px;
        padding: 6px 12px;
        flex: 1;
        min-width: 80px;
        justify-content: center;
    }

    /* Comments */
    .comments-section {
        padding: 20px;
    }

    .comment {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    /* Navigation */
    .logo {
        font-size: 24px;
    }

    .navbar {
        padding: 15px 4%;
    }

    /* Hero */
    .hero-content {
        padding: 30px 4%;
    }

    .poster-float img {
        width: 160px;
        height: 240px;
    }

    .movie-title {
        font-size: 24px;
    }

    .badge {
        font-size: 12px;
        padding: 6px 12px;
    }

    .genre-pill {
        font-size: 11px;
        padding: 4px 10px;
    }

    .description-preview {
        font-size: 14px;
    }

    /* Content */
    .content-wrapper {
        padding: 20px 4%;
    }

    .content-card {
        padding: 15px;
    }

    .section-title {
        font-size: 18px;
    }

    /* Episodes */
    .episode-card {
        padding: 15px;
    }

    .episode-number-badge {
        font-size: 11px;
        padding: 6px 10px;
    }

    .episode-title {
        font-size: 14px;
    }

    .episode-meta {
        font-size: 11px;
        gap: 10px;
    }

    .episode-description {
        font-size: 13px;
    }

    .quality-option {
        font-size: 11px;
        padding: 5px 8px;
        min-width: 70px;
    }

    /* Rating */
    .rating-score {
        font-size: 48px;
    }

    .rating-stars {
        font-size: 24px;
    }

    .star-btn {
        font-size: 24px;
    }

    /* Buttons */
    .btn {
        font-size: 14px;
        padding: 12px 20px;
    }

    .btn-small {
        font-size: 12px;
        padding: 8px 15px;
    }

    /* Footer */
    .footer {
        padding: 40px 4% 20px;
    }

    .footer-logo {
        font-size: 28px;
    }

    .footer-links {
        gap: 15px;
    }
}

/* ==================== ANIMATIONS ==================== */
@keyframes slideDown {
    from {
        opacity: 0.5;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Smooth transitions */
* {
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

a, button {
    transition: all 0.3s ease;
}

    margin: 0 !important;
    padding: 0 !important;
}


/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   YOUTUBE TRAILER
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */

.trailer-card {
  background: var(--bg-card);
  overflow: hidden;
}

.trailer-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #000;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.trailer-wrapper iframe {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: none;
  border-radius: 10px;
}

@media (max-width: 480px) {
  .trailer-wrapper { border-radius: 8px; }
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   SCREENSHOT COLLAGE
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */

.screenshot-collage-card {
  background: var(--bg-card);
}

.collage-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: #111;
}

.collage-wrapper:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 35px rgba(229, 9, 20, 0.3);
}

.collage-img {
  width: 100%;
  display: block;
  border-radius: 8px;
  transition: transform 0.45s ease;
}

.collage-wrapper:hover .collage-img {
  transform: scale(1.025);
}

.collage-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
}

.collage-wrapper:hover .collage-overlay { opacity: 1; }

.collage-zoom-icon {
  background: rgba(229, 9, 20, 0.85);
  color: white;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 25px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease;
}

.collage-wrapper:hover .collage-zoom-icon { transform: scale(1.05); }

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ Lightbox Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */

.collage-lb {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.96);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 20px;
}

.collage-lb.active {
  display: flex;
  animation: collageFadeIn 0.22s ease;
}

@keyframes collageFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.collage-lb-inner {
  max-width: 95vw;
  max-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collage-lb-inner img {
  max-width: 95vw;
  max-height: 92vh;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.9);
  animation: collageZoomIn 0.28s ease;
}

@keyframes collageZoomIn {
  from { transform: scale(0.88); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

.collage-lb-close {
  position: fixed;
  top: 18px;
  right: 22px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(229, 9, 20, 0.85);
  border: 2px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  z-index: 100001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s;
  font-family: 'Outfit', sans-serif;
}

.collage-lb-close:hover {
  background: var(--primary);
  transform: rotate(90deg) scale(1.1);
}

@media (max-width: 480px) {
  .collage-zoom-icon { font-size: 13px; padding: 8px 18px; }
  .collage-lb-close { width: 36px; height: 36px; font-size: 17px; top: 12px; right: 12px; }
  .collage-lb-inner img { border-radius: 8px; }
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   SIMILAR WEB SERIES SECTION
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */

.similar-series-card {
  background: var(--bg-card);
}

.similar-series-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 16px;
}

/* Each card */
.similar-series-item {
  text-decoration: none;
  color: var(--text-main);
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.similar-series-item:hover {
  transform: translateY(-6px);
}

/* Poster */
.similar-series-thumb {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 8px;
  background: #1a1a1a;
  flex-shrink: 0;
}

.similar-series-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.similar-series-item:hover .similar-series-thumb img {
  transform: scale(1.07);
}

/* Hover overlay */
.similar-series-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
}

.similar-series-item:hover .similar-series-overlay {
  opacity: 1;
}

.similar-play-btn {
  font-size: 34px;
  color: #fff;
  filter: drop-shadow(0 0 12px rgba(229, 9, 20, 0.9));
  line-height: 1;
}

/* Rating badge Ã¢â‚¬â€ top right */
.similar-rating-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  background: rgba(0, 0, 0, 0.72);
  color: var(--accent-gold);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  line-height: 1.4;
}

/* Pinned badge Ã¢â‚¬â€ top left */
.similar-pinned-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  font-size: 13px;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.7));
}

/* Status badge Ã¢â‚¬â€ bottom left */
.similar-status-badge {
  position: absolute;
  bottom: 6px;
  left: 6px;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 4px;
  letter-spacing: 0.3px;
  backdrop-filter: blur(4px);
}

.similar-status-badge.ongoing {
  background: rgba(46, 204, 113, 0.85);
  color: #fff;
}

.similar-status-badge.completed {
  background: rgba(52, 152, 219, 0.85);
  color: #fff;
}

/* Text info */
.similar-series-info {
  padding: 0 3px 4px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.similar-series-title {
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-main);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.similar-series-meta {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  align-items: center;
}

.similar-meta-year,
.similar-meta-genre {
  font-size: 10.5px;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 7px;
  border-radius: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 80px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ Responsive Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
@media (max-width: 1024px) {
  .similar-series-grid {
    grid-template-columns: repeat(auto-fill, minmax(115px, 1fr));
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .similar-series-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
  }
  .similar-play-btn { font-size: 26px; }
  .similar-series-title { font-size: 11.5px; }
}

@media (max-width: 480px) {
  .similar-series-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .similar-series-title { font-size: 11px; }
  .similar-meta-year,
  .similar-meta-genre { font-size: 10px; padding: 2px 5px; max-width: 60px; }
  .similar-rating-badge { font-size: 9px; padding: 2px 5px; }
  .similar-status-badge { font-size: 8px; padding: 2px 5px; }
}

@media (max-width: 360px) {
  .similar-series-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
}