
.fc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 4px;
}

/* Genre browse: always 2 columns (overrides wider breakpoints below) */
.fc-grid.fc-grid--genre {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 480px)  { .fc-grid.fc-grid--genre { grid-template-columns: repeat(2, 1fr) !important; gap: 16px; } }
@media (min-width: 600px)  { .fc-grid.fc-grid--genre { grid-template-columns: repeat(2, 1fr) !important; max-width: 820px; } }
@media (min-width: 900px)  { .fc-grid.fc-grid--genre { grid-template-columns: repeat(2, 1fr) !important; gap: 18px; } }
@media (min-width: 1200px) { .fc-grid.fc-grid--genre { grid-template-columns: repeat(2, 1fr) !important; max-width: 880px; } }

@media (min-width: 480px)  { .fc-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; } }
@media (min-width: 600px)  { .fc-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 900px)  { .fc-grid { grid-template-columns: repeat(5, 1fr); } }
@media (min-width: 1200px) { .fc-grid { grid-template-columns: repeat(6, 1fr); gap: 18px; } }

/* â”€â”€â”€ SINGLE-ROW FILTER BAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mv-filter-row {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    flex-wrap: wrap;
    padding: 14px 18px;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    margin-bottom: 22px;
}
.mv-filter-row-series {
    border-color: rgba(139,92,246,0.1);
    background: rgba(139,92,246,0.025);
}
.mf-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
    min-width: 110px;
    max-width: 200px;
}
.mf-label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: rgba(255,255,255,0.22);
}
.mf-label i { font-size: 9px; color: rgba(229,9,20,0.45); }
.mv-filter-row-series .mf-label i { color: rgba(139,92,246,0.55); }
.mf-select {
    padding: 8px 12px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    font-family: inherit;
    outline: none;
    width: 100%;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='rgba(255,255,255,0.3)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 30px;
}
.mf-select:focus {
    border-color: rgba(229,9,20,0.4);
    background-color: rgba(255,255,255,0.08);
}
.mv-filter-row-series .mf-select:focus {
    border-color: rgba(139,92,246,0.4);
}
.mf-select option { background: #1a1a2e; color: #fff; }
.mf-apply {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border-radius: 10px;
    background: linear-gradient(135deg, #e50914, #ec4899);
    border: none;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    align-self: flex-end;
    height: 36px;
    box-shadow: 0 4px 14px rgba(229,9,20,0.3);
}
.mf-apply:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(229,9,20,0.45); }
.mf-apply i { font-size: 11px; }
.mf-apply-series {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    box-shadow: 0 4px 14px rgba(139,92,246,0.3);
}
.mf-apply-series:hover { box-shadow: 0 6px 18px rgba(139,92,246,0.45); }
.mf-clear {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.35);
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s;
    align-self: flex-end;
    flex-shrink: 0;
}
.mf-clear:hover { color: #f87171; border-color: rgba(248,113,113,0.3); background: rgba(248,113,113,0.06); }
@media (max-width: 480px) {
    .mv-filter-row { gap: 8px; padding: 12px; }
    .mf-group { min-width: 90px; max-width: 100%; flex: 1 1 calc(50% - 8px); }
    .mf-apply { flex: 1 1 calc(50% - 8px); justify-content: center; }
}

/* â”€â”€â”€ HERO HEADER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mv-hero {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 24px;
    padding: 38px 32px 34px;
    background: linear-gradient(135deg,
        rgba(229,9,20,0.06) 0%,
        rgba(139,92,246,0.04) 50%,
        rgba(236,72,153,0.06) 100%);
    border: 1px solid rgba(255,255,255,0.07);
}
.mv-hero-series {
    background: linear-gradient(135deg,
        rgba(139,92,246,0.08) 0%,
        rgba(99,102,241,0.04) 50%,
        rgba(236,72,153,0.06) 100%);
}
.mv-hero-glow {
    position: absolute;
    top: -60px; right: -60px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229,9,20,0.12), transparent 70%);
    pointer-events: none;
}
.mv-hero-glow-purple {
    background: radial-gradient(circle, rgba(139,92,246,0.14), transparent 70%);
}
.mv-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.mv-hero-center {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 8px;
}
.mv-hero-icon {
    width: 64px; height: 64px;
    border-radius: 18px;
    background: rgba(229,9,20,0.12);
    border: 1px solid rgba(229,9,20,0.22);
    display: flex; align-items: center; justify-content: center;
    font-size: 30px;
    flex-shrink: 0;
}
.mv-hero-title {
    font-size: clamp(26px, 5vw, 44px);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin: 0 0 6px;
}
.mv-hero-title span {
    background: linear-gradient(135deg, #e50914, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.series-gradient {
    background: linear-gradient(135deg, #8b5cf6, #ec4899) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}
.mv-hero-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.32);
    font-weight: 500;
    margin: 0;
}

/* â”€â”€â”€ FILTER & SORT BAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mv-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    margin-bottom: 20px;
}
.mv-bar-left {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    align-items: center;
}
.mv-bar-right {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-shrink: 0;
}

.mv-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.42);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    white-space: nowrap;
}
.mv-pill i { font-size: 10px; }
.mv-pill:hover { background: rgba(255,255,255,0.09); color: #fff; border-color: rgba(255,255,255,0.14); }
.mv-pill.active {
    background: rgba(229,9,20,0.14);
    border-color: rgba(229,9,20,0.4);
    color: #fff;
    box-shadow: 0 0 16px rgba(229,9,20,0.18);
}
.mv-pill-filter {
    position: relative;
    border-color: rgba(139,92,246,0.25);
    color: rgba(139,92,246,0.75);
}
.mv-pill-filter:hover {
    background: rgba(139,92,246,0.1);
    border-color: rgba(139,92,246,0.4);
    color: #a78bfa;
}
.filter-dot {
    width: 6px; height: 6px;
    background: #e50914;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    right: 3px;
}
.mv-sort {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 13px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.38);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}
.mv-sort i { font-size: 9px; }
.mv-sort:hover { background: rgba(255,255,255,0.09); color: #fff; }
.mv-sort.active {
    background: linear-gradient(135deg, #e50914, #ec4899);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 14px rgba(229,9,20,0.32);
}

/* â”€â”€â”€ PAGINATION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mv-pagination {
    display: flex; justify-content: center; align-items: center;
    gap: 6px; margin-top: 44px; flex-wrap: wrap;
    list-style: none; padding: 0;
}
.pg-btn {
    min-width: 40px; height: 40px; padding: 0 8px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 11px; font-size: 13px; font-weight: 700;
    text-decoration: none;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.45);
    transition: all 0.2s;
}
.pg-btn:hover { background: rgba(255,255,255,0.11); color: #fff; border-color: rgba(255,255,255,0.14); }
.pg-btn.active {
    background: linear-gradient(135deg, #e50914, #ec4899);
    border-color: transparent; color: #fff;
    box-shadow: 0 4px 16px rgba(229,9,20,0.35);
}
.pg-btn.disabled { opacity: 0.25; pointer-events: none; }
.pg-ellipsis { pointer-events: none; cursor: default; }
.pg-btn.pg-nav { min-width: 44px; background: rgba(255,255,255,0.07); }

/* â”€â”€â”€ EMPTY STATE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mv-empty {
    text-align: center;
    padding: 90px 20px;
}
.mv-empty-icon {
    width: 88px; height: 88px;
    border-radius: 50%;
    background: rgba(229,9,20,0.06);
    border: 1px solid rgba(229,9,20,0.12);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 22px;
    font-size: 32px;
    color: rgba(229,9,20,0.4);
}
.mv-empty-icon-series {
    background: rgba(139,92,246,0.06);
    border-color: rgba(139,92,246,0.12);
    color: rgba(139,92,246,0.4);
}
.mv-empty-title { font-size: 20px; font-weight: 900; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
.mv-empty-sub { font-size: 13px; color: rgba(255,255,255,0.28); margin-bottom: 24px; }
.mv-empty-btn {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 10px 22px; border-radius: 11px;
    background: rgba(229,9,20,0.1);
    border: 1px solid rgba(229,9,20,0.25);
    color: #f87171; font-size: 13px; font-weight: 700;
    text-decoration: none; transition: all 0.2s;
}
.mv-empty-btn:hover { background: rgba(229,9,20,0.18); border-color: rgba(229,9,20,0.4); color: #fff; }
.mv-empty-btn-series {
    background: rgba(139,92,246,0.1);
    border-color: rgba(139,92,246,0.25);
    color: #a78bfa;
}
.mv-empty-btn-series:hover { background: rgba(139,92,246,0.18); border-color: rgba(139,92,246,0.4); color: #fff; }

/* â”€â”€â”€ MOBILE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 480px) {
    .mv-hero { padding: 28px 20px 24px; border-radius: 14px; }
    .mv-hero-title { font-size: 26px; }
    .mv-filter-row { gap: 8px; padding: 12px; }
    .mf-group { min-width: 90px; max-width: 100%; flex: 1 1 calc(50% - 8px); }
    .mf-apply { flex: 1 1 calc(50% - 8px); justify-content: center; }
    .pg-btn { min-width: 34px; height: 34px; font-size: 12px; border-radius: 9px; }
    .fc-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
}

