/* =========================================================
   SK'S WATCH LIST
   PREMIUM CINEMATIC STREAMING LIBRARY
========================================================= */


/* =========================================================
   1. ROOT
========================================================= */

:root {

    --bg-main: #07070b;
    --bg-secondary: #0d0d13;
    --bg-card: #111119;

    --text-main: #f7f5ff;
    --text-secondary: #aaa6b8;
    --text-muted: #777382;

    --accent: #a855f7;
    --accent-light: #c084fc;
    --accent-dark: #6d28d9;

    --pink: #ec4899;

    --border:
        rgba(255, 255, 255, 0.08);

    --glass:
        rgba(15, 15, 23, 0.65);

    --header-height: 78px;

    --container-width: 1400px;

    --radius-small: 10px;
    --radius-medium: 18px;
    --radius-large: 28px;

    --transition:
        300ms cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}


/* =========================================================
   2. RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    background:

        radial-gradient(
            circle at 15% 10%,
            rgba(120, 40, 220, 0.12),
            transparent 28%
        ),

        radial-gradient(
            circle at 85% 25%,
            rgba(50, 100, 255, 0.07),
            transparent 25%
        ),

        var(--bg-main);

    color:
        var(--text-main);

    font-family:
        "Inter",
        Arial,
        sans-serif;

    line-height:
        1.5;

    min-height:
        100vh;

    overflow-x:
        hidden;
}


body.modal-open {
    overflow: hidden;
}


a {
    color: inherit;
    text-decoration: none;
}


button {
    font-family: inherit;
}


img {
    display: block;
    max-width: 100%;
}


/* =========================================================
   3. HEADER
========================================================= */

.site-header {

    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    height:
        var(--header-height);

    z-index: 100;

    background:

        linear-gradient(
            to bottom,
            rgba(7, 7, 11, 0.94),
            rgba(7, 7, 11, 0.68)
        );

    backdrop-filter:
        blur(20px);

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.05);
}


.header-container {

    width:
        min(
            var(--container-width),
            calc(100% - 48px)
        );

    height:
        100%;

    margin:
        auto;

    display:
        flex;

    align-items:
        center;

    gap:
        40px;
}


/* =========================================================
   LOGO
========================================================= */

.logo {

    display:
        flex;

    align-items:
        baseline;

    gap:
        8px;

    white-space:
        nowrap;
}


.logo-main {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        20px;

    font-weight:
        700;

    letter-spacing:
        -0.04em;
}


.logo-sub {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        11px;

    font-weight:
        600;

    letter-spacing:
        0.16em;

    color:
        var(--accent-light);
}


/* =========================================================
   NAVIGATION
========================================================= */

.main-nav {

    display:
        flex;

    align-items:
        center;

    gap:
        8px;

    margin-left:
        auto;
}


.nav-link {

    position:
        relative;

    padding:
        9px 14px;

    color:
        var(--text-secondary);

    font-size:
        13px;

    font-weight:
        600;

    transition:
        color var(--transition);
}


.nav-link:hover,
.nav-link.active {

    color:
        var(--text-main);
}


.nav-link::after {

    content:
        "";

    position:
        absolute;

    left:
        14px;

    right:
        14px;

    bottom:
        2px;

    height:
        2px;

    border-radius:
        10px;

    background:

        linear-gradient(
            90deg,
            var(--accent-dark),
            var(--accent-light)
        );

    transform:
        scaleX(0);

    transform-origin:
        center;

    transition:
        transform var(--transition);
}


.nav-link.active::after,
.nav-link:hover::after {

    transform:
        scaleX(1);
}


/* =========================================================
   4. HERO
========================================================= */

.hero {

    position:
        relative;

    min-height:
        min(860px, 92vh);

    margin-top:
        var(--header-height);

    display:
        flex;

    align-items:
        flex-end;

    overflow:
        hidden;
}


/* =========================================================
   HERO BACKGROUND
========================================================= */

.hero-background {

    position:
        absolute;

    inset:
        0;

    background-image:
        url("../assets/backgrounds/watchlist-hero.png");

    background-size:
        cover;

    background-position:
        center center;

    background-repeat:
        no-repeat;

    transform:
        scale(1.04);

    filter:
        saturate(1.12);
}


/* =========================================================
   HERO OVERLAY
========================================================= */

.hero-overlay {

    position:
        absolute;

    inset:
        0;

    background:

        linear-gradient(
            to right,
            rgba(7, 7, 11, 0.96) 0%,
            rgba(7, 7, 11, 0.78) 30%,
            rgba(7, 7, 11, 0.35) 66%,
            rgba(7, 7, 11, 0.78) 100%
        ),

        linear-gradient(
            to bottom,
            rgba(7, 7, 11, 0.12),
            transparent 45%,
            var(--bg-main) 100%
        );
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {

    position:
        relative;

    z-index:
        2;

    width:
        min(
            var(--container-width),
            calc(100% - 48px)
        );

    margin:
        0 auto 90px;

    max-width:
        1100px;
}


/* =========================================================
   PROFILE
========================================================= */

.hero-profile {

    margin-bottom:
        16px;
}


.hero-profile-ring {

    width:
        92px;

    height:
        92px;

    padding:
        3px;

    border-radius:
        50%;

    background:

        linear-gradient(
            135deg,
            #c084fc,
            #ec4899,
            #8b5cf6
        );

    box-shadow:

        0 0 25px
        rgba(168, 85, 247, 0.35),

        0 0 60px
        rgba(168, 85, 247, 0.16);
}


.hero-profile-ring img {

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    border-radius:
        50%;

    border:
        3px solid
        #09090d;
}


/* =========================================================
   HERO BRAND
========================================================= */

.hero-brand {

    margin-bottom:
        14px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        13px;

    font-weight:
        700;

    letter-spacing:
        0.26em;

    color:
        white;

    text-shadow:
        0 3px 20px
        rgba(0, 0, 0, 0.65);
}


.hero-label {

    display:
        inline-block;

    margin-bottom:
        14px;

    color:
        var(--accent-light);

    font-size:
        11px;

    font-weight:
        700;

    letter-spacing:
        0.22em;
}


/* =========================================================
   HERO TITLE
========================================================= */

.hero h1 {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(
            52px,
            7vw,
            92px
        );

    line-height:
        0.92;

    letter-spacing:
        -0.055em;

    font-weight:
        700;

    margin-bottom:
        28px;

    text-shadow:
        0 5px 35px
        rgba(0, 0, 0, 0.55);
}


.hero h1 span {

    background:

        linear-gradient(
            90deg,
            #ffffff,
            #d8b4fe,
            #f0abfc
        );

    -webkit-background-clip:
        text;

    -webkit-text-fill-color:
        transparent;
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.hero-description {

    max-width:
        620px;

    color:
        var(--text-secondary);

    font-size:
        16px;

    line-height:
        1.75;

    margin-bottom:
        32px;
}


/* =========================================================
   BUTTONS
========================================================= */

.hero-actions,
.modal-actions {

    display:
        flex;

    align-items:
        center;

    gap:
        12px;

    flex-wrap:
        wrap;
}


.hero-actions {

    margin-bottom:
        42px;
}


.button {

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        8px;

    min-height:
        46px;

    padding:
        0 20px;

    border-radius:
        12px;

    font-size:
        13px;

    font-weight:
        700;

    transition:
        all var(--transition);
}


.button-primary {

    background:

        linear-gradient(
            135deg,
            var(--accent-light),
            var(--accent)
        );

    color:
        white;

    box-shadow:

        0 10px 35px
        rgba(168, 85, 247, 0.22);
}


.button-primary:hover {

    transform:
        translateY(-3px);

    box-shadow:

        0 14px 42px
        rgba(168, 85, 247, 0.35);
}


.button-secondary {

    background:
        rgba(255, 255, 255, 0.06);

    border:
        1px solid
        rgba(255, 255, 255, 0.12);

    backdrop-filter:
        blur(12px);
}


.button-secondary:hover {

    background:
        rgba(255, 255, 255, 0.10);

    transform:
        translateY(-3px);
}

.button-third {

    background:

        linear-gradient(
            135deg,
            rgba(253, 2, 199, 0.22),
            rgba(248, 1, 195, 0.22)
        );

    color:
        white;

    box-shadow:

        0 10px 35px
        rgba(71, 5, 57, 0.22);
}


.button-third:hover {

    transform:
        translateY(-3px);

    box-shadow:

        0 14px 42px
        rgba(252, 46, 241, 0.35);
}


/* =========================================================
   5. HERO COLLECTION STATS
========================================================= */

.collection-stats {

    display:
        grid;

    grid-template-columns:
        repeat(3, 175px);

    gap:
        14px;
}


.stat-card {

    min-height:
        118px;

    padding:
        18px 16px;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        flex-start;

    justify-content:
        center;

    border:
        1px solid
        rgba(255, 255, 255, 0.10);

    border-radius:
        16px;

    background:

        linear-gradient(
            145deg,
            rgba(25, 16, 36, 0.78),
            rgba(10, 10, 16, 0.70)
        );

    backdrop-filter:
        blur(16px);

    box-shadow:

        0 18px 45px
        rgba(0, 0, 0, 0.28),

        inset 0 1px 0
        rgba(255, 255, 255, 0.05);

    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition);
}


.stat-card:hover {

    transform:
        translateY(-5px);

    border-color:
        rgba(192, 132, 252, 0.38);

    background:

        linear-gradient(
            145deg,
            rgba(43, 22, 60, 0.84),
            rgba(12, 10, 19, 0.78)
        );
}


.stat-number {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        30px;

    line-height:
        1;

    font-weight:
        700;

    background:

        linear-gradient(
            135deg,
            #ffffff,
            #c084fc
        );

    -webkit-background-clip:
        text;

    -webkit-text-fill-color:
        transparent;
}


.stat-label {

    margin-top:
        8px;

    color:
        var(--text-main);

    font-size:
        11px;

    font-weight:
        700;
}


.stat-description {

    margin-top:
        3px;

    color:
        var(--text-muted);

    font-size:
        9px;

    line-height:
        1.4;
}


/* =========================================================
   6. CONTENT SECTIONS
========================================================= */

.content-section {

    width:
        min(
            var(--container-width),
            calc(100% - 48px)
        );

    margin:
        0 auto;

    padding:
        100px 0;
}


.watchlist-section {

    padding-top:
        30px;

    padding-bottom:
        130px;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.section-header {

    display:
        flex;

    align-items:
        flex-end;

    justify-content:
        space-between;

    gap:
        20px;

    margin-bottom:
        55px;
}


.section-label {

    display:
        block;

    margin-bottom:
        8px;

    color:
        var(--accent-light);

    font-size:
        10px;

    font-weight:
        700;

    letter-spacing:
        0.20em;
}


.section-header h2 {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        38px;

    line-height:
        1;

    letter-spacing:
        -0.04em;
}


/* =========================================================
   7. PLATFORM SECTION
========================================================= */

.platform-section {

    position:
        relative;

    margin-bottom:
        78px;
}


.platform-section:last-child {

    margin-bottom:
        0;
}


/* =========================================================
   PLATFORM HEADER
========================================================= */

.platform-section-header {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        20px;

    margin-bottom:
        24px;

    padding-bottom:
        15px;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.07);
}


.platform-identity {

    display:
        flex;

    align-items:
        center;

    gap:
        14px;
}


.platform-icon-wrapper {

    width:
        44px;

    height:
        44px;

    display:
        grid;

    place-items:
        center;

    border-radius:
        13px;

    background:
        rgba(255, 255, 255, 0.045);

    border:
        1px solid
        rgba(255, 255, 255, 0.09);

    box-shadow:
        inset 0 1px 0
        rgba(255, 255, 255, 0.05);

    flex-shrink:
        0;
}


/* =========================================================
   PLATFORM ICON BASE
========================================================= */

.platform-icon {

    width:
        30px;

    height:
        30px;

    display:
        grid;

    place-items:
        center;

    border-radius:
        9px;

    font-family:
        "Space Grotesk",
        Arial,
        sans-serif;

    font-size:
        15px;

    font-weight:
        800;

    line-height:
        1;

    color:
        white;
    

}


/* =========================================================
   NETFLIX
========================================================= */

.platform-icon-netflix {

    background:

        linear-gradient(
            145deg,
            #e50914,
            #9d0008
        );

    box-shadow:
        0 5px 18px
        rgba(229, 9, 20, 0.25);
}


/* =========================================================
   PRIME VIDEO
========================================================= */

.platform-icon-prime {

    background:

        linear-gradient(
            145deg,
            #20a4f3,
            #075985
        );

    box-shadow:
        0 5px 18px
        rgba(32, 164, 243, 0.22);
}


/* =========================================================
   HOTSTAR
========================================================= */

.platform-icon-hotstar {

    background:

        linear-gradient(
            145deg,
            #5b21b6,
            #2563eb
        );

    box-shadow:
        0 5px 18px
        rgba(91, 33, 182, 0.25);
}


/* =========================================================
   APPLE TV+
========================================================= */

.platform-icon-apple {

    background:

        linear-gradient(
            145deg,
            #292929,
            #080808
        );

    border:
        1px solid
        rgba(255, 255, 255, 0.14);

    box-shadow:
        0 5px 18px
        rgba(0, 0, 0, 0.35);
}

.platform-icon-image {
    width: 30px;
    height: 30px;
    display: block;
    object-fit: contain;
}

.show-card-platform .platform-icon-image {
    width: 17px;
    height: 17px;
}

.show-platform .platform-icon-image {
    width: 25px;
    height: 25px;
}


/* =========================================================
   PLATFORM TEXT
========================================================= */

.platform-title-wrapper {

    display:
        flex;

    flex-direction:
        column;

    gap:
        1px;
}


.platform-eyebrow {

    color:
        var(--text-muted);

    font-size:
        8px;

    font-weight:
        700;

    letter-spacing:
        0.18em;
}


.platform-title {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        25px;

    line-height:
        1.1;

    letter-spacing:
        -0.035em;

    font-weight:
        700;
}


.platform-show-count {

    color:
        var(--text-muted);

    font-size:
        10px;

    font-weight:
        700;

    letter-spacing:
        0.12em;

    white-space:
        nowrap;
}


/* =========================================================
   PLATFORM SHOW GRID
========================================================= */

.platform-show-grid {

    display:
        grid;

    grid-template-columns:
        repeat(
            6,
            minmax(0, 1fr)
        );

    gap:
        20px;
}


/* =========================================================
   8. SHOW CARD
========================================================= */

.show-card {

    min-width:
        0;

    cursor:
        pointer;

    transition:
        transform var(--transition);
}


.show-card:hover {

    transform:
        translateY(-8px);
}


/* =========================================================
   POSTER
========================================================= */

.show-card-poster {

    position:
        relative;

    aspect-ratio:
        2 / 3;

    overflow:
        hidden;

    border-radius:
        var(--radius-medium);

    background:
        var(--bg-card);

    border:
        1px solid
        rgba(255, 255, 255, 0.07);

    box-shadow:

        0 20px 50px
        rgba(0, 0, 0, 0.30);

    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}


.show-card:hover
.show-card-poster {

    border-color:
        rgba(192, 132, 252, 0.25);

    box-shadow:

        0 25px 60px
        rgba(0, 0, 0, 0.42),

        0 0 25px
        rgba(168, 85, 247, 0.08);
}


.show-card-poster img {

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    transition:
        transform 600ms
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}


.show-card:hover
.show-card-poster img {

    transform:
        scale(1.07);
}


/* =========================================================
   MISSING POSTER
========================================================= */

.poster-missing {

    background:

        radial-gradient(
            circle at 50% 35%,
            rgba(168, 85, 247, 0.20),
            transparent 42%
        ),

        linear-gradient(
            145deg,
            #18121f,
            #0b0b10
        );
}


.poster-placeholder {

    position:
        absolute;

    inset:
        0;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    justify-content:
        center;

    padding:
        22px;

    text-align:
        center;

    background:

        radial-gradient(
            circle at 50% 30%,
            rgba(168, 85, 247, 0.15),
            transparent 40%
        );
}


.poster-placeholder-icon {

    margin-bottom:
        18px;

    transform:
        scale(1.15);
}


.poster-placeholder-title {

    max-width:
        90%;

    color:
        var(--text-main);

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        15px;

    font-weight:
        700;

    line-height:
        1.25;
}


.poster-placeholder-platform {

    margin-top:
        7px;

    color:
        var(--text-muted);

    font-size:
        9px;

    font-weight:
        600;

    letter-spacing:
        0.12em;

    text-transform:
        uppercase;
}


/* =========================================================
   CARD OVERLAY
========================================================= */

.show-card-overlay {

    position:
        absolute;

    inset:
        0;

    display:
        flex;

    align-items:
        flex-end;

    padding:
        18px;

    background:

        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.92),
            rgba(0, 0, 0, 0.05) 65%
        );

    opacity:
        0;

    transition:
        opacity var(--transition);
}


.show-card:hover
.show-card-overlay {

    opacity:
        1;
}


.show-card-button {

    border:
        1px solid
        rgba(255, 255, 255, 0.16);

    background:
        rgba(255, 255, 255, 0.10);

    backdrop-filter:
        blur(15px);

    color:
        white;

    border-radius:
        10px;

    padding:
        10px 13px;

    font-size:
        11px;

    font-weight:
        700;

    cursor:
        pointer;

    transition:
        all var(--transition);
}


.show-card-button span {

    margin-left:
        4px;

    color:
        var(--accent-light);
}


.show-card-button:hover {

    background:
        rgba(168, 85, 247, 0.25);

    transform:
        translateY(-2px);
}


/* =========================================================
   CARD INFORMATION
========================================================= */

.show-card-info {

    padding:
        14px 3px 0;
}


.show-card-info h3 {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        16px;

    line-height:
        1.2;

    font-weight:
        600;

    white-space:
        nowrap;

    overflow:
        hidden;

    text-overflow:
        ellipsis;
}


/* =========================================================
   CARD PLATFORM
========================================================= */

.show-card-platform {

    display:
        flex;

    align-items:
        center;

    gap:
        6px;

    margin-top:
        7px;

    color:
        var(--text-muted);

    font-size:
        10px;

    font-weight:
        500;
}


.show-card-platform
.platform-icon {

    width:
        17px;

    height:
        17px;

    border-radius:
        5px;

    font-size:
        8px;

    flex-shrink:
        0;
}


/* =========================================================
   EMPTY STATE
========================================================= */

.empty-message {

    width:
        100%;

    padding:
        60px 20px;

    text-align:
        center;

    color:
        var(--text-muted);

    border:
        1px dashed
        rgba(255, 255, 255, 0.10);

    border-radius:
        var(--radius-medium);
}


/* =========================================================
   9. SHOW MODAL
========================================================= */

.show-modal {

    position:
        fixed;

    inset:
        0;

    z-index:
        500;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    padding:
        30px;

    visibility:
        hidden;

    opacity:
        0;

    transition:
        opacity 300ms ease,
        visibility 300ms ease;
}


.show-modal.active {

    visibility:
        visible;

    opacity:
        1;
}


/* =========================================================
   MODAL BACKDROP
========================================================= */

.modal-backdrop {

    position:
        absolute;

    inset:
        0;

    background:
        rgba(0, 0, 0, 0.78);

    backdrop-filter:
        blur(18px);
}


/* =========================================================
   MODAL CONTENT
========================================================= */

.show-modal-content {

    position:
        relative;

    z-index:
        2;

    width:
        min(
            1050px,
            100%
        );

    max-height:
        88vh;

    overflow:
        hidden;

    border:
        1px solid
        rgba(255, 255, 255, 0.10);

    border-radius:
        var(--radius-large);

    background:
        #0d0d13;

    box-shadow:

        0 40px 120px
        rgba(0, 0, 0, 0.65);

    transform:
        translateY(25px)
        scale(0.97);

    transition:
        transform 450ms
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}


.show-modal.active
.show-modal-content {

    transform:
        translateY(0)
        scale(1);
}


/* =========================================================
   MODAL BACKGROUND
========================================================= */

.modal-background {

    position:
        absolute;

    inset:
        0;

    background-position:
        center;

    background-size:
        cover;

    filter:
        blur(25px);

    transform:
        scale(1.12);

    opacity:
        0.25;
}


.modal-overlay {

    position:
        absolute;

    inset:
        0;

    background:

        linear-gradient(
            90deg,
            rgba(10, 10, 15, 0.98),
            rgba(10, 10, 15, 0.90)
        ),

        linear-gradient(
            to top,
            rgba(10, 10, 15, 1),
            transparent
        );
}


/* =========================================================
   MODAL INNER CONTENT
========================================================= */

.modal-content {

    position:
        relative;

    z-index:
        3;

    display:
        grid;

    grid-template-columns:
        270px 1fr;

    gap:
        45px;

    padding:
        55px;

    max-height:
        88vh;

    overflow-y:
        auto;
}


/* =========================================================
   MODAL POSTER
========================================================= */

.modal-poster-wrapper {

    align-self:
        start;

    border-radius:
        16px;

    overflow:
        hidden;

    box-shadow:

        0 25px 70px
        rgba(0, 0, 0, 0.45);
}


.modal-poster {

    width:
        100%;

    aspect-ratio:
        2 / 3;

    object-fit:
        cover;
}


/* =========================================================
   MODAL DETAILS
========================================================= */

.modal-details {

    align-self:
        center;
}


.show-platform {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        8px;

    margin-bottom:
        12px;

    color:
        var(--accent-light);

    font-size:
        11px;

    font-weight:
        700;

    letter-spacing:
        0.15em;

    text-transform:
        uppercase;
}


.modal-details h2 {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(
            40px,
            5vw,
            68px
        );

    line-height:
        0.95;

    letter-spacing:
        -0.055em;

    margin-bottom:
        20px;
}


/* =========================================================
   MODAL PLATFORM ICON
========================================================= */

.show-platform
.platform-icon {

    width:
        25px;

    height:
        25px;

    border-radius:
        7px;

    font-size:
        11px;
}


/* =========================================================
   META
========================================================= */

.show-meta {

    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        7px;

    margin-bottom:
        24px;
}


.meta-tag {

    padding:
        6px 10px;

    border-radius:
        999px;

    background:
        rgba(255, 255, 255, 0.06);

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    color:
        var(--text-secondary);

    font-size:
        10px;

    font-weight:
        600;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.show-description {

    max-width:
        650px;

    color:
        var(--text-secondary);

    font-size:
        14px;

    line-height:
        1.8;

    margin-bottom:
        28px;
}


/* =========================================================
   RATING
========================================================= */

.show-rating {

    display:
        flex;

    align-items:
        center;

    gap:
        14px;

    margin-bottom:
        28px;

    padding:
        14px 16px;

    width:
        fit-content;

    border-radius:
        12px;

    background:
        rgba(255, 255, 255, 0.04);

    border:
        1px solid
        rgba(255, 255, 255, 0.07);
}


.rating-label,
.review-label {

    display:
        block;

    color:
        var(--text-muted);

    font-size:
        9px;

    font-weight:
        700;

    letter-spacing:
        0.16em;

    text-transform:
        uppercase;
}


.rating-value {

    color:
        var(--accent-light);

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        20px;

    font-weight:
        700;
}


/* =========================================================
   REVIEW
========================================================= */

.show-review {

    max-width:
        650px;

    margin-bottom:
        30px;
}


.review-label {

    margin-bottom:
        10px;
}


.show-review p {

    color:
        var(--text-main);

    font-size:
        14px;

    line-height:
        1.8;
}


/* =========================================================
   STATUS BADGE
========================================================= */

.status-badge {

    display:
        inline-flex;

    align-items:
        center;

    min-height:
        46px;

    padding:
        0 15px;

    border-radius:
        12px;

    background:
        rgba(168, 85, 247, 0.12);

    border:
        1px solid
        rgba(168, 85, 247, 0.25);

    color:
        var(--accent-light);

    font-size:
        11px;

    font-weight:
        700;
}


/* =========================================================
   MODAL CLOSE
========================================================= */

.modal-close {

    position:
        absolute;

    top:
        20px;

    right:
        20px;

    z-index:
        10;

    width:
        38px;

    height:
        38px;

    display:
        grid;

    place-items:
        center;

    border-radius:
        50%;

    border:
        1px solid
        rgba(255, 255, 255, 0.10);

    background:
        rgba(0, 0, 0, 0.35);

    backdrop-filter:
        blur(10px);

    color:
        white;

    font-size:
        24px;

    line-height:
        1;

    cursor:
        pointer;

    transition:
        all var(--transition);
}


.modal-close:hover {

    background:
        rgba(168, 85, 247, 0.25);

    transform:
        rotate(90deg);
}


/* =========================================================
   10. FOOTER
========================================================= */

.site-footer {

    border-top:
        1px solid
        rgba(255, 255, 255, 0.06);

    padding:
        35px 0;
}


.footer-container {

    width:
        min(
            var(--container-width),
            calc(100% - 48px)
        );

    margin:
        auto;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        20px;
}


.footer-brand {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        12px;

    font-weight:
        700;

    letter-spacing:
        0.12em;
}


.footer-container p {

    color:
        var(--text-muted);

    font-size:
        11px;
}


/* =========================================================
   11. RESPONSIVE
========================================================= */


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1200px) {

    .platform-show-grid {

        grid-template-columns:
            repeat(
                5,
                minmax(0, 1fr)
            );
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    :root {

        --header-height:
            70px;
    }


    .header-container {

        width:
            calc(100% - 32px);

        gap:
            15px;
    }


    .main-nav {

        gap:
            0;
    }


    .nav-link {

        padding:
            8px 9px;

        font-size:
            11px;
    }


    .platform-show-grid {

        grid-template-columns:
            repeat(
                4,
                minmax(0, 1fr)
            );
    }


    .modal-content {

        grid-template-columns:
            200px 1fr;

        gap:
            28px;

        padding:
            40px;
    }


    .hero {

        min-height:
            780px;
    }


    .hero-content {

        width:
            calc(100% - 40px);

        margin-bottom:
            80px;
    }


    .collection-stats {

        grid-template-columns:
            repeat(
                3,
                minmax(0, 175px)
            );
    }

}


/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 750px) {

    .platform-show-grid {

        grid-template-columns:
            repeat(
                3,
                minmax(0, 1fr)
            );

        gap:
            16px;
    }


    .platform-section {

        margin-bottom:
            60px;
    }


    .platform-title {

        font-size:
            22px;
    }


    .section-header h2 {

        font-size:
            32px;
    }


    .collection-stats {

        grid-template-columns:
            repeat(
                3,
                minmax(0, 1fr)
            );

        width:
            100%;

        max-width:
            560px;
    }


    .stat-card {

        min-height:
            105px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .header-container {

        width:
            calc(100% - 24px);
    }


    .logo {

        gap:
            5px;
    }


    .logo-main {

        font-size:
            17px;
    }


    .logo-sub {

        font-size:
            8px;
    }


    .main-nav {

        display:
            none;
    }


    .hero {

        min-height:
            800px;
    }


    .hero-content {

        width:
            calc(100% - 32px);

        margin-bottom:
            55px;

        text-align:
            center;
    }


    .hero-profile {

        display:
            flex;

        justify-content:
            center;
    }


    .hero-profile-ring {

        width:
            78px;

        height:
            78px;
    }


    .hero-brand {

        font-size:
            10px;

        letter-spacing:
            0.20em;
    }


    .hero-label {

        font-size:
            9px;
    }


    .hero h1 {

        font-size:
            46px;
    }


    .hero-description {

        font-size:
            13px;

        margin-left:
            auto;

        margin-right:
            auto;
    }


    .hero-actions {

        justify-content:
            center;

        margin-bottom:
            35px;
    }


    .collection-stats {

        width:
            100%;

        grid-template-columns:
            repeat(
                3,
                minmax(0, 1fr)
            );

        gap:
            8px;
    }


    .stat-card {

        min-height:
            100px;

        padding:
            12px 8px;

        align-items:
            center;

        border-radius:
            13px;
    }


    .stat-number {

        font-size:
            24px;
    }


    .stat-label {

        font-size:
            9px;

        text-align:
            center;
    }


    .stat-description {

        display:
            none;
    }


    .content-section {

        width:
            calc(100% - 32px);

        padding:
            70px 0;
    }


    .watchlist-section {

        padding-top:
            10px;
    }


    .section-header {

        margin-bottom:
            38px;
    }


    .section-header h2 {

        font-size:
            28px;
    }


    .platform-section {

        margin-bottom:
            52px;
    }


    .platform-section-header {

        margin-bottom:
            18px;
    }


    .platform-icon-wrapper {

        width:
            38px;

        height:
            38px;

        border-radius:
            11px;
    }


    .platform-icon {

        width:
            27px;

        height:
            27px;
    }


    .platform-title {

        font-size:
            20px;
    }


    .platform-eyebrow {

        font-size:
            7px;
    }


    .platform-show-count {

        font-size:
            8px;
    }


    .platform-show-grid {

        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );

        gap:
            16px;
    }


    .show-card-info h3 {

        font-size:
            14px;
    }


    .show-card-platform {

        font-size:
            9px;
    }


    .show-card-overlay {

        display:
            none;
    }


    .show-modal {

        padding:
            12px;
    }


    .show-modal-content {

        max-height:
            94vh;

        border-radius:
            20px;
    }


    .modal-content {

        grid-template-columns:
            1fr;

        gap:
            25px;

        padding:
            55px 25px 30px;
    }


    .modal-poster-wrapper {

        width:
            150px;

        margin:
            0 auto;
    }


    .modal-details {

        text-align:
            center;
    }


    .show-meta,
    .modal-actions {

        justify-content:
            center;
    }


    .show-rating {

        margin-left:
            auto;

        margin-right:
            auto;
    }


    .show-description,
    .show-review {

        margin-left:
            auto;

        margin-right:
            auto;
    }


    .footer-container {

        width:
            calc(100% - 32px);

        flex-direction:
            column;

        text-align:
            center;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .hero h1 {

        font-size:
            40px;
    }


    .collection-stats {

        gap:
            6px;
    }


    .stat-card {

        min-height:
            90px;

        padding:
            10px 5px;
    }


    .stat-number {

        font-size:
            21px;
    }


    .platform-show-grid {

        gap:
            12px;
    }


    .show-card-info {

        padding-top:
            10px;
    }


    .show-card-info h3 {

        font-size:
            13px;
    }

}
/* =========================================================
   12. PREMIUM HERO REDESIGN
   Added for the current SK'S WATCH LIST layout.
========================================================= */

.hero {
    min-height: min(820px, 88vh);
    align-items: stretch;
}

.hero-background {
    background-image: url("../assets/backgrounds/watchlist-hero.jpg");
    background-position: center center;
    transform: scale(1.03);
}

.hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(7, 7, 11, 0.96) 0%,
            rgba(7, 7, 11, 0.82) 24%,
            rgba(7, 7, 11, 0.48) 50%,
            rgba(7, 7, 11, 0.30) 72%,
            rgba(7, 7, 11, 0.78) 100%
        ),
        linear-gradient(
            180deg,
            rgba(7, 7, 11, 0.10) 0%,
            rgba(7, 7, 11, 0.12) 55%,
            var(--bg-main) 100%
        );
}

.hero-content {
    width: min(var(--container-width), calc(100% - 64px));
    max-width: none;
    margin: 0 auto;
    padding: 110px 0 82px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(350px, 440px);
    align-items: center;
    gap: clamp(55px, 8vw, 140px);
}

.hero-main {
    min-width: 0;
    max-width: 820px;
}

.hero-profile {
    margin-bottom: 18px;
}

.hero-profile-ring {
    width: 82px;
    height: 82px;
}

.hero-brand {
    margin-bottom: 12px;
    font-size: 12px;
}

.hero-label {
    margin-bottom: 16px;
}

.hero h1 {
    max-width: 820px;
    font-size: clamp(56px, 6.6vw, 94px);
    margin-bottom: 24px;
}

.hero-description {
    max-width: 610px;
    margin-bottom: 30px;
    font-size: 15px;
}

.hero-actions {
    margin-bottom: 0;
}

/* =========================================================
   HERO STATS PANEL
========================================================= */

.hero-stats-panel {
    position: relative;
    width: 100%;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 24px;
    background:
        linear-gradient(
            145deg,
            rgba(25, 18, 35, 0.78),
            rgba(8, 8, 13, 0.68)
        );
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.40),
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 0 70px rgba(168, 85, 247, 0.08);
}

.hero-stats-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(192, 132, 252, 0.16),
            transparent 35%
        );
}

.hero-stats-heading {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.20em;
}

.hero-stats-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.09);
}

.hero-stats-panel .collection-stats {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.hero-stats-panel .stat-card {
    min-height: 92px;
    padding: 18px 20px;
    display: grid;
    grid-template-columns: 82px 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    align-items: center;
}

.hero-stats-panel .stat-number {
    grid-row: 1 / 3;
    font-size: 38px;
}

.hero-stats-panel .stat-label {
    margin-top: 0;
    font-size: 12px;
}

.hero-stats-panel .stat-description {
    margin-top: 4px;
    font-size: 9px;
}

.hero-stats-footer {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--text-muted);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.hero-stats-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-light);
    box-shadow: 0 0 12px rgba(192, 132, 252, 0.75);
}

/* =========================================================
   REAL PLATFORM LOGOS
========================================================= */

.platform-icon-image {
    width: 30px;
    height: 30px;
    display: block;
    object-fit: contain;
}

.show-card-platform .platform-icon-image {
    width: 17px;
    height: 17px;
}

.show-platform .platform-icon-image {
    width: 25px;
    height: 25px;
}

/* =========================================================
   HERO RESPONSIVE OVERRIDES
========================================================= */

@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: minmax(0, 1fr) 360px;
        gap: 50px;
    }

    .hero h1 {
        font-size: clamp(52px, 6.8vw, 78px);
    }
}

@media (max-width: 950px) {
    .hero {
        min-height: 900px;
    }

    .hero-content {
        width: calc(100% - 40px);
        padding: 95px 0 70px;
        grid-template-columns: 1fr;
        align-content: center;
        gap: 40px;
    }

    .hero-main {
        max-width: 760px;
    }

    .hero-stats-panel {
        max-width: 620px;
    }

    .hero-stats-panel .collection-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-stats-panel .stat-card {
        min-height: 108px;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        text-align: center;
        justify-items: center;
    }

    .hero-stats-panel .stat-number {
        grid-row: auto;
    }
}

@media (max-width: 600px) {
    .hero {
        min-height: 900px;
    }

    .hero-content {
        width: calc(100% - 32px);
        padding: 90px 0 55px;
        gap: 30px;
        text-align: center;
    }

    .hero-profile {
        display: flex;
        justify-content: center;
    }

    .hero-main {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 46px;
        line-height: 0.95;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats-panel {
        padding: 20px;
        border-radius: 20px;
        max-width: 100%;
        text-align: left;
    }

    .hero-stats-panel .collection-stats {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .hero-stats-panel .stat-card {
        min-height: 76px;
        padding: 13px 14px;
        display: grid;
        grid-template-columns: 58px 1fr;
        grid-template-rows: auto auto;
        justify-items: start;
        text-align: left;
    }

    .hero-stats-panel .stat-number {
        grid-row: 1 / 3;
        font-size: 30px;
    }

    .hero-stats-panel .stat-label {
        font-size: 10px;
    }

    .hero-stats-panel .stat-description {
        display: block;
        font-size: 8px;
    }

    .hero-stats-footer {
        justify-content: center;
    }
}

@media (max-width: 400px) {
    .hero {
        min-height: 880px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-content {
        padding-top: 82px;
    }
}

/* =========================================================
   13. SHOW TRAILER / GLIMPSE
========================================================= */

.modal-trailer {
    width: 100%;
    margin-top: 28px;
    margin-bottom: 8px;
    animation: trailerFadeIn 450ms ease both;
}

.modal-trailer-label {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 12px;

    color: var(--text-secondary);

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.trailer-label-dot {
    width: 7px;
    height: 7px;

    flex-shrink: 0;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--accent-light),
            var(--pink)
        );

    box-shadow:
        0 0 12px
        rgba(192, 132, 252, 0.65);
}


/* =========================================================
   TRAILER FRAME
========================================================= */

.modal-trailer-frame {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    border-radius: 18px;

    border:
        1px solid
        rgba(255, 255, 255, 0.10);

    background:
        #050507;

    box-shadow:
        0 25px 70px
        rgba(0, 0, 0, 0.45),

        inset 0 1px 0
        rgba(255, 255, 255, 0.05);
}


/* =========================================================
   YOUTUBE IFRAME
========================================================= */

.modal-trailer-frame iframe {
    display: block;

    width: 100%;
    height: 100%;

    border: 0;

    background:
        #050507;
}


/* =========================================================
   LOCAL VIDEO
========================================================= */

.modal-trailer-frame video {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    background:
        #050507;
}


/* =========================================================
   TRAILER HOVER
========================================================= */

.modal-trailer-frame::after {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    border-radius: inherit;

    box-shadow:
        inset 0 0 0 1px
        rgba(255, 255, 255, 0.035);
}


/* =========================================================
   TRAILER ANIMATION
========================================================= */

@keyframes trailerFadeIn {

    from {
        opacity: 0;
        transform:
            translateY(10px);
    }

    to {
        opacity: 1;
        transform:
            translateY(0);
    }

}


/* =========================================================
   DESKTOP MODAL TRAILER
========================================================= */

@media (min-width: 901px) {

    .modal-trailer {

        grid-column:
            1 / -1;

        margin-top:
            4px;

    }

}


/* =========================================================
   MOBILE TRAILER
========================================================= */

@media (max-width: 900px) {

    .modal-trailer {

        margin-top:
            8px;

    }

    .modal-trailer-frame {

        border-radius:
            14px;

    }

}


/* =========================================================
   SMALL MOBILE TRAILER
========================================================= */

@media (max-width: 500px) {

    .modal-trailer {

        margin-top:
            4px;

        margin-bottom:
            0;

    }

    .modal-trailer-label {

        font-size:
            8px;

        letter-spacing:
            0.15em;

    }

    .trailer-label-dot {

        width:
            6px;

        height:
            6px;

    }

    .modal-trailer-frame {

        border-radius:
            12px;

    }

}

/* =========================================================
   TRAILER SOUND CONTROL
========================================================= */

.trailer-sound-button {
    position: absolute;

    right: 16px;
    bottom: 16px;

    z-index: 10;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 38px;

    padding: 0 14px;

    border: 1px solid
        rgba(255, 255, 255, 0.16);

    border-radius: 999px;

    background:
        rgba(8, 8, 12, 0.78);

    backdrop-filter:
        blur(14px);

    -webkit-backdrop-filter:
        blur(14px);

    color:
        #ffffff;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.04em;

    cursor: pointer;

    opacity: 0.9;

    box-shadow:
        0 8px 25px
        rgba(0, 0, 0, 0.35);

    transition:
        transform 180ms ease,
        background 180ms ease,
        border-color 180ms ease,
        opacity 180ms ease;
}


.trailer-sound-button:hover {

    transform:
        translateY(-2px);

    background:
        rgba(25, 18, 35, 0.92);

    border-color:
        rgba(192, 132, 252, 0.45);

    opacity: 1;

    box-shadow:
        0 10px 30px
        rgba(0, 0, 0, 0.45),

        0 0 20px
        rgba(192, 132, 252, 0.12);

}


.trailer-sound-button:active {

    transform:
        translateY(0);

}


.trailer-sound-icon {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 18px;
    height: 18px;

    font-size: 14px;

    line-height: 1;

}


.trailer-sound-text {

    white-space: nowrap;

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .trailer-sound-button {

        right: 10px;
        bottom: 10px;

        min-height: 34px;

        padding:
            0 11px;

        font-size: 10px;

    }

}

/* =========================================================
   MODAL CONTENT WIDTH FIX
   Keeps description + SK's Take wide and readable
========================================================= */

.show-modal-content {
    width: min(
        1180px,
        calc(100vw - 48px)
    );
}

.modal-content {
    width: 100%;
    box-sizing: border-box;
}

.modal-details {
    min-width: 0;
    width: 100%;
}

.show-description,
.show-review {
    width: 100%;
    max-width: 760px;
}


/* =========================================================
   TRAILER SHOULD USE FULL MODAL WIDTH
========================================================= */

.modal-trailer {
    width: 100%;
    max-width: 100%;
}


/* =========================================================
   BETTER DESKTOP MODAL
========================================================= */

@media (min-width: 951px) {

    .modal-content {
        grid-template-columns:
            270px minmax(0, 1fr);

        gap:
            45px;
    }

    .modal-details {
        width:
            100%;
    }

    .show-description,
    .show-review {
        max-width:
            760px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) and (min-width: 601px) {

    .show-modal-content {
        width:
            calc(100vw - 32px);
    }

    .modal-content {
        grid-template-columns:
            200px minmax(0, 1fr);

        gap:
            28px;
    }

    .show-description,
    .show-review {
        max-width:
            100%;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .show-modal-content {
        width:
            calc(100vw - 24px);
    }

    .modal-content {
        grid-template-columns:
            1fr;
    }

    .modal-details {
        width:
            100%;
    }

    .show-description,
    .show-review {
        width:
            100%;

        max-width:
            100%;
    }

}



/* =========================================================
   FINAL SHOW MODAL LAYOUT
   TRAILER TOP + POSTER / DETAILS BELOW
========================================================= */

@media (min-width: 951px) {

    /* -----------------------------------------------------
       MAIN MODAL GRID
    ----------------------------------------------------- */

    .modal-content {
        display: grid !important;

        grid-template-columns:
            270px minmax(0, 1fr) !important;

        grid-template-rows:
            auto auto !important;

        column-gap:
            45px !important;

        row-gap:
            40px !important;

        align-items:
            start !important;

        width:
            100% !important;

        box-sizing:
            border-box !important;
    }


    /* -----------------------------------------------------
       TRAILER — FULL WIDTH AT TOP
    ----------------------------------------------------- */

    .modal-trailer {
        grid-column:
            1 / -1 !important;

        grid-row:
            1 !important;

        width:
            100% !important;

        max-width:
            none !important;

        margin:
            0 !important;

        box-sizing:
            border-box !important;
    }


    .modal-trailer iframe {
        display:
            block !important;

        width:
            100% !important;

        max-width:
            none !important;

        aspect-ratio:
            16 / 9 !important;

        border:
            0 !important;

        border-radius:
            16px !important;
    }


    /* -----------------------------------------------------
       POSTER — BELOW TRAILER
    ----------------------------------------------------- */

    .modal-poster-wrapper {
        grid-column:
            1 !important;

        grid-row:
            2 !important;

        width:
            270px !important;

        max-width:
            270px !important;

        margin:
            0 !important;

        align-self:
            start !important;
    }


    /* -----------------------------------------------------
       DETAILS — BELOW TRAILER
    ----------------------------------------------------- */

    .modal-details {
        grid-column:
            2 !important;

        grid-row:
            2 !important;

        width:
            100% !important;

        max-width:
            none !important;

        min-width:
            0 !important;

        margin:
            0 !important;

        align-self:
            start !important;

        box-sizing:
            border-box !important;
    }


    /* -----------------------------------------------------
       DESCRIPTION
    ----------------------------------------------------- */

    .show-description {
        width:
            100% !important;

        max-width:
            none !important;

        line-height:
            1.75 !important;

        box-sizing:
            border-box !important;
    }


    /* -----------------------------------------------------
       SK'S TAKE / REVIEW
    ----------------------------------------------------- */

    .show-review {
        width:
            100% !important;

        max-width:
            none !important;

        line-height:
            1.75 !important;

        box-sizing:
            border-box !important;
    }


    .show-review p {
        width:
            100% !important;

        max-width:
            none !important;
    }


    /* -----------------------------------------------------
       ACTIONS
    ----------------------------------------------------- */

    .modal-actions {
        width:
            100% !important;

        box-sizing:
            border-box !important;
    }

}

/* =========================================================
   VIEW ON PLATFORM — UNDER POSTER
========================================================= */

@media (min-width: 951px) {

    /* Make the details column the positioning reference */
    .modal-details {
        position: relative !important;
        overflow: visible !important;
    }

    .modal-actions {
        position: absolute !important;

        /*
         * Details starts after the 270px poster
         * plus the 45px grid gap.
         *
         * Move the button back to the poster column.
         */
        left: -315px !important;

        /*
         * Poster is 270px tall-ish.
         * Place button just below it.
         */
        top: 425px !important;

        width: 270px !important;

        margin: 0 !important;

        display: flex !important;

        justify-content: center !important;

        box-sizing: border-box !important;
    }

    .modal-actions .platform-button {
        width: auto !important;
    }
}

/* =========================================================
   HIDE MODAL SCROLLBAR
   Keeps scrolling functional without showing the scrollbar
========================================================= */

.modal-content {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.modal-content::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

/* =========================================================
   SERIES INFORMATION
========================================================= */

.series-info-line {
    width: 100%;

    margin-top: 14px;

    color: var(--text-secondary);

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 0.2px;
}


/* =========================================================
   SERIES RELEASE STATUS
========================================================= */

.series-release-status {
    display: inline-flex;

    margin-top: 10px;

    padding: 6px 11px;

    border-radius: 999px;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1px;

    border: 1px solid
        rgba(255, 255, 255, 0.08);

    background:
        rgba(255, 255, 255, 0.04);
}


/* ENDED */

.series-release-status.ended {
    color: #a7f3d0;

    background:
        rgba(16, 185, 129, 0.10);

    border-color:
        rgba(16, 185, 129, 0.20);
}


/* ONGOING */

.series-release-status.ongoing {
    color: var(--accent-light);

    background:
        rgba(168, 85, 247, 0.10);

    border-color:
        rgba(168, 85, 247, 0.20);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to right,
            rgba(7, 7, 11, 0.65) 0%,
            rgba(7, 7, 11, 0.45) 35%,
            rgba(7, 7, 11, 0.20) 70%,
            rgba(7, 7, 11, 0.55) 100%
        ),
        linear-gradient(
            to bottom,
            rgba(7, 7, 11, 0.10),
            transparent 55%,
            var(--bg-main) 100%
        );
}

.hero-background {
    position: absolute;
    inset: 0;

    background-image: url("../assets/backgrounds/watchlist-hero.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    transform: scale(1.04);

    filter:
        saturate(1.15)
        brightness(0.85);
}

/* =========================================================
   SMART LIBRARY SEARCH
========================================================= */

.library-search-hero {

    width: 100%;

    max-width: 760px;

    margin-top: 28px;

    margin-bottom: 30px;

}


.library-search-box {

    position: relative;

    width: 100%;

    display: flex;

    align-items: center;

    min-height: 54px;

    border-radius: 14px;

    border: 1px solid
        rgba(255, 255, 255, 0.10);

    background:
        rgba(10, 8, 18, 0.72);

    box-shadow:

        0 10px 35px
        rgba(0, 0, 0, 0.20),

        inset 0 1px 0
        rgba(255, 255, 255, 0.04);

    backdrop-filter:
        blur(14px);

    -webkit-backdrop-filter:
        blur(14px);

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;

}


.library-search-box:focus-within {

    border-color:
        rgba(192, 132, 252, 0.55);

    background:
        rgba(12, 9, 22, 0.86);

    box-shadow:

        0 0 0 3px
        rgba(168, 85, 247, 0.10),

        0 12px 40px
        rgba(0, 0, 0, 0.28);

}


.library-search-icon {

    flex:
        0 0 auto;

    width:
        52px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    color:
        var(--accent-light);

    font-size:
        25px;

    line-height:
        1;

    opacity:
        0.9;

    pointer-events:
        none;

}


.library-search-box input {

    width:
        100%;

    min-width:
        0;

    height:
        54px;

    padding:
        0 48px 0 0;

    border:
        0;

    outline:
        none;

    background:
        transparent;

    color:
        #ffffff;

    font-family:
        inherit;

    font-size:
        14px;

    font-weight:
        600;

}


.library-search-box input::placeholder {

    color:
        rgba(255, 255, 255, 0.42);

    font-weight:
        500;

}


.library-search-box input::-webkit-search-cancel-button {

    display:
        none;

}


.library-search-clear {

    position:
        absolute;

    right:
        14px;

    top:
        50%;

    transform:
        translateY(-50%);

    width:
        30px;

    height:
        30px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border:
        0;

    border-radius:
        50%;

    background:
        rgba(255, 255, 255, 0.07);

    color:
        rgba(255, 255, 255, 0.70);

    font-size:
        19px;

    line-height:
        1;

    cursor:
        pointer;

    transition:
        all 0.2s ease;

}


.library-search-clear:hover {

    background:
        rgba(255, 255, 255, 0.14);

    color:
        #ffffff;

    transform:
        translateY(-50%)
        scale(1.06);

}


.library-search-meta {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        16px;

    margin-top:
        10px;

    padding:
        0 4px;

    color:
        rgba(255, 255, 255, 0.40);

    font-size:
        9px;

    font-weight:
        700;

    letter-spacing:
        0.12em;

    text-transform:
        uppercase;

}


#library-results-count {

    flex:
        0 0 auto;

    color:
        var(--accent-light);

    white-space:
        nowrap;

}


/* =========================================================
   SEARCHED / HIDDEN CARDS
========================================================= */

.show-card.search-hidden {

    display:
        none !important;

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .library-search-hero {

        max-width:
            100%;

        margin-top:
            -10px;

        margin-bottom:
            25px;

    }


    .library-search-box {

        min-height:
            50px;

        border-radius:
            12px;

    }


    .library-search-icon {

        width:
            46px;

        font-size:
            22px;

    }


    .library-search-box input {

        height:
            50px;

        padding-right:
            42px;

        font-size:
            13px;

    }


    .library-search-meta {

        font-size:
            8px;

        margin-top:
            9px;

    }

}