:root {
    --flz-bg: #040814;
    --flz-bg-soft: #081127;
    --flz-surface: rgba(10, 17, 34, 0.72);
    --flz-surface-2: rgba(15, 25, 48, 0.82);
    --flz-border: rgba(255, 255, 255, 0.12);
    --flz-border-soft: rgba(255, 255, 255, 0.06);
    --flz-text: rgba(235, 240, 255, 0.95);
    --flz-text-soft: rgba(198, 210, 232, 0.8);
    --flz-accent-blue: #2083ff;
    --flz-accent-cyan: #3ed6ff;
    --flz-accent-red: #ff2d75;
    --flz-accent-orange: #ff8e2b;
    --flz-btn-ash-start: #707882;
    --flz-btn-ash-mid: #555c66;
    --flz-btn-ash-end: #343a43;
    --flz-btn-ash-shadow: 0 18px 40px rgba(7, 9, 12, 0.5);
    --flz-card-shadow: 0 18px 55px rgba(0, 0, 0, 0.45);
    --flz-card-shadow-hover: 0 26px 68px rgba(0, 0, 0, 0.62);
    --flz-radius-xl: 30px;
    --flz-radius-lg: 22px;
    --flz-radius-md: 16px;
    --flz-radius-sm: 12px;
    --flz-focus-ring: 0 0 0 3px rgba(56, 150, 255, 0.34);
}

html,
body {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    color: var(--flz-text);
    background:
        radial-gradient(circle at 16% 16%, rgba(255, 43, 114, 0.2), transparent 36%),
        radial-gradient(circle at 82% 12%, rgba(36, 142, 255, 0.22), transparent 34%),
        radial-gradient(circle at 70% 78%, rgba(255, 129, 43, 0.13), transparent 35%),
        linear-gradient(180deg, #09142a 0%, #050a17 42%, #030610 100%);
    min-height: 100vh;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 0;
    box-shadow: var(--flz-focus-ring);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.24;
    z-index: -1;
}

h1,
h2,
h3,
h4,
h5,
h6,
.main-menu>li>a,
.flz-brand-title,
.section-title {
    font-family: "Sora", sans-serif;
    letter-spacing: -0.02em;
}

a,
button,
input,
textarea,
select {
    transition: all 0.25s ease;
}

.page-wrapper {
    background: transparent;
}

.container-fluid {
    max-width: 1540px;
}

.section-header {
    margin-bottom: 28px;
}

.section-header.flex-between {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.section-header .seciton-title__left {
    min-width: 0;
    flex: 1 1 520px;
}

.section-header .seciton-title__right {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    flex: 0 0 auto;
    margin-left: auto;
    padding-left: 20px;
}

.seciton-title__left p {
    color: var(--flz-text-soft);
    margin-top: 8px;
}

.seciton-title__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--flz-accent-cyan);
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
}

.seciton-title__link:hover {
    color: #fff;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1050;
    isolation: isolate;
}

.header__bottom {
    padding: 14px 22px;
    border-bottom: 1px solid transparent;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(2, 8, 22, 0.92), rgba(2, 8, 22, 0.7));
    backdrop-filter: blur(10px);
}

.header.menu-fixed .header__bottom,
.header.flz-scrolled .header__bottom {
    border-bottom-color: var(--flz-border-soft);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(14px);
}

.flz-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-right: 20px;
}

.flz-brand img {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 12px 28px rgba(23, 130, 255, 0.32);
}

.flz-brand-copy {
    display: grid;
    line-height: 1.05;
}

.flz-brand-title {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #fff;
}

.flz-brand-tag {
    margin-top: 3px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(215, 228, 255, 0.64);
}

.main-menu {
    gap: 2px;
}

.main-menu::-webkit-scrollbar {
    height: 0;
    width: 0;
}

.main-menu>li>a {
    color: rgba(234, 240, 255, 0.82);
    font-size: 14px;
    line-height: 1;
    padding: 12px 14px;
    border-radius: 12px;
    position: relative;
}

.main-menu>li>a::after {
    content: none;
}

.main-menu>li>a:hover,
.main-menu>li.active>a,
.main-menu>li.flz-active>a {
    color: #fff;
    background: transparent;
    font-weight: 600;
    text-shadow: 0 0 12px rgba(69, 140, 255, 0.3);
}

.main-menu>li>a:hover::after,
.main-menu>li.active>a::after,
.main-menu>li.flz-active>a::after {
    transform: none;
}

.main-menu li .sub-menu {
    margin-top: 15px;
    border: 1px solid var(--flz-border);
    background: rgba(5, 12, 26, 0.96);
    border-radius: 14px;
    box-shadow: var(--flz-card-shadow);
    backdrop-filter: blur(14px);
}

.main-menu li .sub-menu li a {
    font-size: 13px;
    color: rgba(234, 240, 255, 0.82);
}

.main-menu li .sub-menu li a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.main-menu li .sub-menu .flz-submenu-divider {
    height: 1px;
    margin: 8px 12px;
    padding: 0;
    border: 0;
    background: rgba(255, 255, 255, 0.16);
    pointer-events: none;
}

.main-menu li.menu_has_children>span {
    color: rgba(220, 232, 255, 0.7);
}

[id^="home-"] {
    scroll-margin-top: 120px;
}

.nav-right {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-right__search-btn,
.flz-nav-icon,
.flz-account-btn,
.flz-nav-pill,
.language-wrapper {
    border-radius: 999px;
    border: 1px solid var(--flz-border);
    background: rgba(11, 19, 38, 0.75);
    color: rgba(233, 241, 255, 0.9);
}

.header .nav-right__search-btn,
.header .flz-nav-icon,
.header .flz-account-btn,
.header .flz-subscribe-btn,
.header .flz-nav-pill,
.header .language-wrapper {
    background: transparent;
    background-image: none;
    border-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
    color: #fff;
}

.header .nav-right__search-btn:hover,
.header .flz-nav-icon:hover,
.header .flz-account-btn:hover,
.header .flz-subscribe-btn:hover,
.header .flz-nav-pill:hover,
.header .language-wrapper:hover,
.header .nav-right__search-btn:focus,
.header .flz-nav-icon:focus,
.header .flz-account-btn:focus,
.header .flz-subscribe-btn:focus,
.header .flz-nav-pill:focus,
.header .language-wrapper:focus {
    background: transparent;
    background-image: none;
    border-color: transparent;
    box-shadow: none;
    color: #fff;
}

.nav-right__search-btn,
.flz-nav-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    font-size: 18px;
}

.flz-nav-icon:hover,
.nav-right__search-btn:hover,
.flz-account-btn:hover,
.flz-nav-pill:hover,
.language-wrapper:hover {
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
    transform: translateY(-1px);
}

.flz-nav-pill,
.flz-account-btn,
.flz-subscribe-btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 16px;
    font-size: 13px;
    font-weight: 700;
}

.flz-nav-pill i,
.flz-account-btn i {
    font-size: 17px;
}

.flz-nav-pill.is-primary {
    border-color: transparent;
    background-image: linear-gradient(130deg, var(--flz-btn-ash-start) 0%, var(--flz-btn-ash-mid) 55%, var(--flz-btn-ash-end) 100%);
    color: #fff;
    box-shadow: var(--flz-btn-ash-shadow);
}

.flz-nav-pill--premium {
    min-height: auto;
    padding: 0 6px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: none;
}

.flz-nav-pill--premium:hover,
.flz-nav-pill--premium:focus {
    border: 0;
    background: transparent;
    color: #fff;
    transform: none;
    opacity: 0.88;
    box-shadow: none;
}

.flz-subscribe-btn {
    border-radius: 999px;
    border: 1px solid rgba(134, 177, 255, 0.38);
    background: linear-gradient(165deg, rgba(13, 21, 41, 0.92), rgba(9, 15, 31, 0.9));
    color: #eef5ff;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.flz-subscribe-btn::before {
    display: none;
}

.flz-subscribe-btn .icon {
    width: 15px;
    height: 15px;
    border-radius: 999px;
    display: inline-grid;
    place-content: center;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.flz-subscribe-btn i {
    font-size: 13px;
    color: #8ec0ff;
}

.flz-subscribe-btn:hover {
    border-color: rgba(159, 201, 255, 0.74);
    background: linear-gradient(165deg, rgba(17, 28, 53, 0.95), rgba(11, 20, 39, 0.95));
    color: #fff;
    transform: translateY(-1px);
    box-shadow: inset 0 0 0 1px rgba(165, 206, 255, 0.14);
}

.flz-subscribe-btn--signin {
    min-height: 54px;
    padding: 0 28px;
    border: 0;
    border-radius: 2px;
    background: #fff;
    color: #000;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-shadow: none;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.flz-subscribe-btn--signin:hover,
.flz-subscribe-btn--signin:focus {
    border: 0;
    background: #fff;
    color: #000;
    transform: translateY(-1px);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.2);
}

.flz-account-btn span {
    max-width: 114px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (min-width: 1200px) {
    .header .navbar,
    .header .navbar-collapse {
        flex-wrap: nowrap;
    }

    .header .navbar {
        gap: 8px;
    }

    .header .navbar-collapse {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        min-width: 0;
    }

    .main-menu {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        white-space: nowrap;
        flex: 1 1 auto;
        margin-right: 8px !important;
        min-width: 0;
        overflow: visible;
        scrollbar-width: none;
        padding-bottom: 0;
    }

    .main-menu>li,
    .main-menu>li>a {
        white-space: nowrap;
        flex: 0 0 auto;
    }

    .main-menu li.menu_has_children {
        display: inline-flex;
        align-items: center;
    }

    .main-menu li.menu_has_children>a {
        display: inline-flex;
        align-items: center;
        padding-right: 6px;
    }

    .main-menu li.menu_has_children>span {
        position: static;
        display: inline-flex;
        align-items: center;
        margin-left: 2px;
        transform: none;
    }

    .nav-right {
        display: inline-flex;
        align-items: center;
        flex-wrap: nowrap !important;
        white-space: nowrap;
        gap: 6px !important;
        flex: 0 0 auto;
    }

    .header .nav-right a+a {
        margin-left: 0;
    }

    .main-menu>li>a {
        padding: 10px 10px;
        font-size: 12px;
        letter-spacing: 0.06em;
    }

    .nav-right__search-btn,
    .flz-nav-icon {
        width: 40px;
        height: 40px;
    }

    .flz-nav-pill,
    .flz-subscribe-btn,
    .flz-account-btn {
        min-height: 40px;
        padding: 0 11px;
        font-size: 11px;
    }

    .flz-nav-pill--premium {
        min-height: auto;
        padding: 0 6px;
        font-size: 11px;
    }

    .flz-subscribe-btn--signin {
        min-height: 46px;
        padding: 0 20px;
        font-size: 12px;
    }

    .flz-brand {
        margin-right: 10px;
    }
}

.dropdown-menu {
    border-radius: 14px;
    border: 1px solid var(--flz-border);
    background: rgba(8, 15, 31, 0.95);
    box-shadow: var(--flz-card-shadow);
    overflow: hidden;
}

.dropdown-menu__item {
    color: rgba(222, 233, 255, 0.86);
}

.dropdown-menu__item:hover {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
}

.language-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    min-height: 42px;
}

.language_text_select {
    font-size: 12px;
    font-weight: 700;
    color: rgba(232, 241, 255, 0.88);
}

.language_flag img {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    object-fit: cover;
}

.langList_dropdow {
    min-width: 170px;
}

.language-list {
    padding: 10px 12px;
    border-radius: 10px;
}

.language-list:hover {
    background: rgba(255, 255, 255, 0.08);
}

.header-search-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    border-top: 0;
    background: rgba(3, 9, 23, 0.94);
    backdrop-filter: blur(14px);
    transform: scale(1, 0);
    transform-origin: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s ease;
}

.header-search-area.active {
    transform: scale(1, 1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.body-overlay {
    pointer-events: none;
}

.body-overlay.show {
    pointer-events: auto;
}

.header-search-close {
    position: absolute;
    top: 14px;
    right: 22px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--flz-border);
    background: rgba(11, 19, 38, 0.6);
    color: rgba(233, 241, 255, 0.9);
    display: grid;
    place-content: center;
    font-size: 20px;
    z-index: 2;
}

.header-search-close:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

.header-search-form {
    margin-top: 26px;
    margin-bottom: 14px;
}

.header-search-form input {
    border-radius: 999px;
    border: 1px solid var(--flz-border);
    background: rgba(9, 17, 35, 0.92);
    color: #fff;
    min-height: 58px;
    padding-left: 56px;
    font-size: 17px;
}

.header-search-form button {
    left: 18px;
    font-size: 19px;
    color: var(--flz-accent-cyan);
}

.flz-search-hints {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-bottom: 24px;
}

.flz-search-hints a {
    border: 1px solid var(--flz-border);
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--flz-text-soft);
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.02);
}

.flz-search-hints a:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.flz-home-hero {
    position: relative;
}

.flz-premiere-shell {
    position: relative;
    border-radius: 28px;
    padding: clamp(18px, 2.4vw, 32px);
    background:
        radial-gradient(circle at 10% 0%, rgba(255, 40, 110, 0.18), transparent 42%),
        radial-gradient(circle at 80% 30%, rgba(255, 120, 60, 0.12), transparent 50%),
        linear-gradient(160deg, rgba(8, 10, 20, 0.98), rgba(6, 8, 16, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
}

.flz-premiere-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 18px;
    align-items: start;
}

.flz-premiere-hero {
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 12, 22, 0.9);
    box-shadow: 0 24px 50px rgba(4, 8, 18, 0.6);
}

.flz-premiere-media {
    position: relative;
    min-height: clamp(360px, 48vw, 560px);
    background:
        linear-gradient(130deg, rgba(160, 26, 48, 0.78), rgba(10, 12, 24, 0.95)),
        var(--premiere-image) center / cover no-repeat;
}

.flz-premiere-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 20%, rgba(255, 56, 114, 0.45), transparent 45%),
        linear-gradient(90deg, rgba(6, 10, 22, 0.98) 0%, rgba(6, 10, 22, 0.7) 48%, rgba(6, 10, 22, 0.2) 100%);
}

.flz-premiere-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 42, 92, 0.2) 0.5px, transparent 0.5px);
    background-size: 14px 14px;
    opacity: 0.25;
    pointer-events: none;
}

.flz-premiere-content {
    position: relative;
    padding: clamp(24px, 3vw, 42px);
    max-width: 560px;
    display: grid;
    gap: 14px;
}

.flz-premiere-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(233, 242, 255, 0.9);
}

.flz-premiere-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 12px;
    color: rgba(226, 235, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.flz-premiere-content h2 {
    font-size: clamp(28px, 3.6vw, 46px);
    color: #f8fbff;
    margin: 0;
}

.flz-premiere-content p {
    color: rgba(229, 238, 255, 0.78);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.flz-premiere-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 16px;
    background: linear-gradient(120deg, var(--flz-btn-ash-start), var(--flz-btn-ash-end));
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: var(--flz-btn-ash-shadow);
}

.flz-premiere-subrow {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.flz-premiere-chip {
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(233, 242, 255, 0.86);
    font-size: 12px;
}

.flz-premiere-btn:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 20px 44px rgba(7, 9, 12, 0.6);
}

.flz-premiere-chapters {
    display: grid;
    gap: 16px;
}

.flz-premiere-chapters::before,
.flz-premiere-chapters::after {
    content: "";
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 40, 100, 0), rgba(255, 40, 100, 0.9), rgba(255, 112, 70, 0));
    box-shadow: 0 0 18px rgba(255, 60, 110, 0.4);
}

.flz-chapter-card {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 16px;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 12, 22, 0.92);
    position: relative;
    box-shadow: 0 20px 40px rgba(3, 7, 18, 0.55);
}

.flz-chapter-card::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 44, 110, 0), rgba(255, 44, 110, 0.8), rgba(255, 130, 60, 0));
    opacity: 0.6;
}

.flz-chapter-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 58, 120, 0.18);
    pointer-events: none;
    opacity: 0.45;
}

.flz-chapter-meta {
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.flz-chapter-meta strong {
    font-size: 26px;
    color: #fff;
}

.flz-chapter-body h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #fff;
}

.flz-chapter-body h3 small {
    display: block;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 80, 120, 0.75);
    margin-top: 4px;
}

.flz-chapter-body p {
    color: rgba(221, 232, 255, 0.7);
    font-size: 14px;
    line-height: 1.55;
}

.flz-chapter-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.flz-chapter-actions a {
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(233, 242, 255, 0.86);
    font-size: 12px;
}

.flz-chapter-actions a.is-active {
    border-color: rgba(255, 80, 120, 0.5);
    color: #fff;
    box-shadow: inset 0 0 12px rgba(255, 80, 120, 0.25);
}

.flz-chapter-actions a:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

.flz-chapter-poster {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(12, 18, 34, 0.9);
    height: 140px;
}

.flz-chapter-poster img {
    width: 100%;
    display: block;
    height: 100%;
    object-fit: cover;
}

.flz-chapter-poster--side {
    grid-column: 3 / 4;
    align-self: center;
}

.flz-chapter-play {
    position: absolute;
    right: 16px;
    bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(6, 12, 24, 0.75);
    color: #fff;
    font-size: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.flz-premiere-divider {
    height: 2px;
    border-radius: 999px;
    margin: 18px auto;
    width: min(220px, 60%);
    background: linear-gradient(90deg, rgba(255, 40, 100, 0), rgba(255, 40, 100, 0.85), rgba(255, 112, 70, 0));
    box-shadow: 0 0 18px rgba(255, 60, 110, 0.35);
}

.flz-premiere-more {
    margin-top: 22px;
    display: grid;
    gap: 12px;
}

.flz-premiere-more h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(231, 240, 255, 0.7);
}

.flz-premiere-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
}

.flz-premiere-strip img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.flz-hero-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
    gap: 24px;
}

.flz-hero-copy {
    border-radius: var(--flz-radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(14, 22, 40, 0.86), rgba(8, 12, 24, 0.92));
    padding: clamp(22px, 2.2vw, 38px);
    box-shadow:
        0 26px 60px rgba(5, 10, 22, 0.6),
        0 12px 28px rgba(20, 44, 96, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(18px) saturate(140%);
}

.flz-hero-copy::before {
    content: "";
    position: absolute;
    top: 0;
    left: 12%;
    right: 12%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 54, 120, 0), rgba(255, 54, 120, 0.7), rgba(66, 132, 255, 0.7), rgba(66, 132, 255, 0));
    opacity: 0.7;
    pointer-events: none;
}

.flz-hero-copy::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 0 24px rgba(74, 122, 255, 0.08);
}

.flz-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    padding: 5px 12px;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(220, 232, 255, 0.84);
    margin-bottom: 18px;
}

.flz-hero-copy h1 {
    font-size: clamp(34px, 4.4vw, 62px);
    line-height: 1;
    margin-bottom: 18px;
    color: #f8fbff;
    text-wrap: balance;
}

.flz-hero-copy p {
    max-width: 680px;
    color: var(--flz-text-soft);
    font-size: clamp(15px, 1.45vw, 18px);
    line-height: 1.55;
}

.flz-pill-row {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.flz-pill {
    border-radius: 999px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.07);
    color: rgba(233, 242, 255, 0.92);
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.flz-hero-actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.flz-primary-btn,
.flz-secondary-btn,
.flz-step-actions .cmn-btn,
.flz-step-actions .flz-secondary-btn {
    border-radius: 14px;
    padding: 12px 24px;
    min-height: 48px;
    font-weight: 700;
    letter-spacing: 0.01em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cmn-btn.flz-primary-btn,
.flz-step-actions .cmn-btn {
    border: 0;
    color: #fff;
    background-image: linear-gradient(120deg, #ff246f 0%, #2a7cff 55%, #ff9c2e 100%);
    box-shadow: 0 16px 36px rgba(37, 106, 250, 0.32);
}

.cmn-btn.flz-primary-btn:hover,
.flz-step-actions .cmn-btn:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 20px 40px rgba(37, 106, 250, 0.42);
}

.flz-secondary-btn,
.flz-step-actions .flz-secondary-btn {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(231, 240, 255, 0.92);
    background: rgba(255, 255, 255, 0.04);
}

.flz-secondary-btn:hover,
.flz-step-actions .flz-secondary-btn:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.34);
    transform: translateY(-2px);
}

.flz-channel-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.flz-channel-card {
    border-radius: 14px;
    border: 1px solid var(--flz-border);
    padding: 13px 12px;
    display: grid;
    gap: 2px;
    background: rgba(7, 14, 29, 0.64);
    color: rgba(233, 241, 255, 0.94);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.flz-channel-card .icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: inline-grid;
    place-content: center;
    background: linear-gradient(145deg, rgba(37, 141, 255, 0.28), rgba(255, 67, 120, 0.28));
    font-size: 16px;
}

.flz-channel-card strong {
    font-size: 14px;
    color: #fff;
    line-height: 1.2;
}

.flz-channel-card small {
    font-size: 12px;
    color: var(--flz-text-soft);
}

.flz-channel-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.flz-hero-mosaic {
    border-radius: var(--flz-radius-xl);
    border: 1px solid var(--flz-border);
    background: linear-gradient(150deg, rgba(11, 20, 38, 0.92), rgba(7, 12, 25, 0.92));
    box-shadow: var(--flz-card-shadow);
    padding: clamp(14px, 1.6vw, 20px);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-height: 100%;
}

.flz-mosaic-card {
    position: relative;
    border-radius: 14px;
    min-height: 170px;
    overflow: hidden;
    border: 1px solid var(--flz-border-soft);
    display: block;
}

.flz-mosaic-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 0.45s ease;
}

.flz-mosaic-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px;
    display: grid;
    background: linear-gradient(180deg, rgba(6, 10, 18, 0.08), rgba(6, 10, 18, 0.9));
}

.flz-mosaic-overlay strong {
    color: #fff;
    font-size: 13px;
    line-height: 1.2;
}

.flz-mosaic-overlay small {
    color: rgba(218, 230, 255, 0.78);
    font-size: 11px;
    margin-top: 2px;
}

.flz-mosaic-card:hover img {
    transform: scale(1.12);
}

.flz-mood-strip {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.flz-mood-pill {
    border-radius: 999px;
    border: 1px solid var(--flz-border);
    background: rgba(9, 16, 32, 0.7);
    color: rgba(225, 236, 255, 0.88);
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.flz-mood-pill:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.36);
    transform: translateY(-1px);
}

.flz-cinematic-strip,
.flz-featured-grid,
.flz-library-hero,
.flz-auth-shell {
    position: relative;
}

.flz-cinematic-slider .movie-slide {
    border-radius: var(--flz-radius-xl);
    overflow: hidden;
    border: 1px solid var(--flz-border);
    min-height: clamp(440px, 52vw, 620px);
    box-shadow: var(--flz-card-shadow);
}

.flz-slide-content {
    width: min(640px, 100%);
    background: linear-gradient(90deg, rgba(2, 9, 20, 0.92), rgba(2, 9, 20, 0.18));
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: clamp(20px, 2vw, 30px);
    backdrop-filter: blur(6px);
}

.flz-slide-content .movie-name {
    font-size: clamp(30px, 3.2vw, 48px);
    margin-bottom: 14px;
}

.flz-slide-content p {
    color: rgba(234, 242, 255, 0.86);
}

.flz-cinematic-slider .slick-dots {
    bottom: 20px;
}

.flz-cinematic-slider .slick-dots li button {
    width: 14px;
    height: 14px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.24);
}

.flz-cinematic-slider .slick-dots li.slick-active button {
    background: linear-gradient(120deg, var(--flz-accent-red), var(--flz-accent-blue));
}

.movie-card {
    border-radius: 16px;
    border: 1px solid var(--flz-border-soft);
    background: linear-gradient(180deg, rgba(10, 17, 33, 0.9), rgba(6, 11, 22, 0.92));
    box-shadow: var(--flz-card-shadow);
    overflow: hidden;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.24);
    box-shadow: var(--flz-card-shadow-hover);
}

.movie-card__thumb {
    border-radius: 0;
}

.movie-card__thumb img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
}

.movie-card .icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(8, 14, 27, 0.72);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.movie-card .icon:hover {
    background: linear-gradient(145deg, rgba(43, 137, 255, 0.94), rgba(255, 118, 32, 0.95));
    color: #fff;
}

.movie-card__content {
    padding: 14px 14px 16px;
}

.movie-card__content h6 {
    margin-bottom: 8px;
}

.movie-card__content h6 a {
    color: #fff;
    font-size: 15px;
}

.movie-card__content h6 a:hover {
    color: var(--flz-accent-cyan);
}

.movie-card__meta li {
    color: var(--flz-text-soft);
    font-size: 12px;
}

.movie-slider-one .next,
.movie-slider-one .prev,
.Short-slider-arrow .slider-prev,
.Short-slider-arrow .slider-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(7, 14, 28, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.movie-slider-one .owl-nav,
.Short-slider-arrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.movie-slider-one .next:hover,
.movie-slider-one .prev:hover,
.Short-slider-arrow .slider-prev:hover,
.Short-slider-arrow .slider-next:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(22, 34, 64, 0.9);
}

.shorts-items {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--flz-card-shadow);
    display: block;
    position: relative;
}

.shorts-items .plyr--video,
.shorts-items video,
.shorts-items .video-container {
    height: 100%;
}

.shorts-items video {
    min-height: 300px;
    object-fit: cover;
}

.flz-reel-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 11px 12px;
    display: grid;
    gap: 3px;
    background: linear-gradient(180deg, rgba(3, 8, 17, 0.15), rgba(3, 8, 17, 0.9));
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.flz-reel-caption strong {
    color: #fff;
    font-size: 13px;
    line-height: 1.2;
}

.flz-reel-caption span {
    color: var(--flz-text-soft);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.recent-match-section {
    margin-bottom: 82px;
}

.recent-match {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--flz-border-soft);
    box-shadow: var(--flz-card-shadow);
    display: block;
    position: relative;
}

.recent-match img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.recent-match:hover img {
    transform: scale(1.06);
}

.recent-match__tag {
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(7, 14, 29, 0.7);
    color: #fff;
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 11px;
    padding: 4px 10px;
    z-index: 1;
}

.inner-hero {
    border-bottom: 1px solid var(--flz-border-soft);
}

.inner-hero::before {
    background: linear-gradient(180deg, rgba(2, 8, 20, 0.52), rgba(2, 8, 20, 0.88));
}

.inner-hero h2 {
    font-size: clamp(34px, 4vw, 56px);
    margin-bottom: 8px;
}

.page-breadcrumb {
    gap: 8px;
}

.page-breadcrumb li {
    color: rgba(218, 230, 255, 0.78);
}

.page-breadcrumb li a {
    color: #fff;
}

.flz-library-hero {
    margin-top: 95px;
}

.flz-library-head {
    border-radius: var(--flz-radius-lg);
    border: 1px solid var(--flz-border);
    padding: 20px;
    background: linear-gradient(145deg, rgba(13, 22, 43, 0.85), rgba(8, 13, 26, 0.92));
    box-shadow: var(--flz-card-shadow);
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
}

.flz-library-head h1 {
    font-size: clamp(30px, 3.5vw, 48px);
    margin-bottom: 6px;
}

.flz-library-head p {
    margin-bottom: 0;
    color: var(--flz-text-soft);
}

.flz-inline-search {
    width: min(460px, 100%);
    position: relative;
}

.flz-inline-search input {
    min-height: 52px;
    border-radius: 14px;
    border: 1px solid var(--flz-border);
    background: rgba(7, 13, 27, 0.88);
    color: #fff;
    width: 100%;
    padding: 0 50px 0 16px;
}

.flz-inline-search button {
    border: 0;
    background: transparent;
    color: var(--flz-accent-cyan);
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 17px;
}

.flz-auth-shell {
    margin-top: 110px;
    width: 100%;
}

.flz-auth-card {
    border-radius: var(--flz-radius-xl);
    overflow: hidden;
    border: 1px solid var(--flz-border);
    background:
        radial-gradient(circle at 16% 18%, rgba(120, 132, 150, 0.18), transparent 46%),
        linear-gradient(180deg, rgba(11, 16, 26, 0.96), rgba(7, 10, 18, 0.98));
    box-shadow: var(--flz-card-shadow);
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: stretch;
    gap: clamp(20px, 4vw, 46px);
    width: 100%;
}

.flz-auth-visual {
    padding: clamp(26px, 4vw, 40px);
    border-right: 0;
    background: transparent;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.flz-auth-card > .left,
.flz-auth-card > .right,
.flz-auth-card .flz-auth-visual,
.flz-auth-card .flz-auth-form-wrap {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.flz-auth-visual img {
    width: 72px;
    height: 72px;
    border-radius: 0;
    box-shadow: 0 14px 36px rgba(43, 120, 250, 0.35);
    margin-bottom: 0;
}

.flz-auth-kicker {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(222, 232, 255, 0.72);
    margin-bottom: 12px;
}

.flz-auth-visual h2,
.flz-auth-heading {
    font-size: clamp(18px, 2vw, 30px);
    line-height: 1.2;
    margin-bottom: 6px;
    max-width: 720px;
    letter-spacing: -0.01em;
}

.flz-auth-heading {
    max-width: none;
    width: 100%;
}

.flz-auth-visual p {
    color: var(--flz-text-soft);
    line-height: 1.6;
    max-width: 720px;
}

.flz-auth-badges {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.flz-auth-badges span {
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(229, 238, 255, 0.86);
    background: rgba(255, 255, 255, 0.05);
}

.flz-auth-form-wrap {
    padding: clamp(24px, 4vw, 40px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.flz-auth-form-wrap h3 {
    font-size: clamp(28px, 3vw, 38px);
    margin-bottom: 4px;
}

.flz-auth-subtitle {
    color: var(--flz-text-soft);
    margin-bottom: 18px;
}

.social-auth-list {
    margin-bottom: 4px;
}

.social-login-btn {
    min-height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(230, 239, 255, 0.9);
    font-size: 13px;
    font-weight: 700;
}

.social-login-btn:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.08);
}

.auth-devide {
    margin-block: 18px;
}

.auth-devide span {
    background: #0b1225;
    color: rgba(225, 236, 255, 0.72);
}

.account-from .form-group {
    margin-bottom: 14px;
}

.account-from .form-group label {
    color: rgba(227, 236, 255, 0.92);
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 13px;
}

.account-from .form-control,
.account-from .form--control,
.select2-container--default .select2-selection--single {
    border-radius: 12px;
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(8, 14, 28, 0.92);
    color: #fff;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #fff;
    line-height: 46px;
    padding-left: 12px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 46px;
}

.account-from .form-control:focus,
.account-from .form--control:focus,
.select2-container--default.select2-container--focus .select2-selection--single {
    border-color: rgba(68, 167, 255, 0.9);
    box-shadow: 0 0 0 3px rgba(44, 148, 255, 0.16);
    background: rgba(10, 17, 35, 0.98);
}

.flz-step-indicator {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.flz-step-indicator span {
    border-radius: 999px;
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(221, 233, 255, 0.74);
    font-size: 12px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.03);
}

.flz-step-indicator span.is-active {
    border-color: transparent;
    color: #fff;
    background: linear-gradient(120deg, rgba(38, 126, 255, 0.86), rgba(255, 128, 34, 0.84));
}

.flz-step-actions {
    display: flex;
    gap: 10px;
}

.flz-step-actions .cmn-btn,
.flz-step-actions .flz-secondary-btn {
    flex: 1;
}

.flz-footer {
    margin-top: 80px;
    background: linear-gradient(180deg, rgba(5, 12, 25, 0.92), rgba(4, 8, 18, 0.98));
    border-top: 1px solid var(--flz-border-soft);
}

.flz-footer .footer__top {
    padding-top: 52px;
    padding-bottom: 34px;
}

.flz-footer-brand img {
    width: 50px;
    height: 50px;
    border-radius: 14px;
}

.flz-footer-brand-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.flz-footer-brand-title {
    font-family: "Sora", sans-serif;
    letter-spacing: 0.04em;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
}

.flz-footer .footer-widget__title {
    font-family: "Sora", sans-serif;
    font-size: 17px;
    margin-bottom: 16px;
    color: #fff;
}

.flz-footer p,
.flz-footer .link-list li a,
.flz-footer .links li a {
    color: var(--flz-text-soft);
}

.flz-footer .link-list li a:hover,
.flz-footer .links li a:hover {
    color: #fff;
}

.flz-footer .subscribe-form {
    position: relative;
}

.flz-footer .subscribe-form input {
    border-radius: 12px;
    border: 1px solid var(--flz-border);
    background: rgba(9, 16, 31, 0.9);
    color: #fff;
    min-height: 48px;
    padding-right: 50px;
}

.flz-footer .subscribe-form button {
    border: 0;
    background: transparent;
    color: var(--flz-accent-cyan);
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
}

.download-links {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.download-links__item {
    border-radius: 12px;
    border: 1px solid var(--flz-border);
    padding: 8px;
    background: rgba(255, 255, 255, 0.03);
}

.download-links__item img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-links li a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-content: center;
    border: 1px solid var(--flz-border);
    color: rgba(233, 241, 255, 0.9);
    background: rgba(255, 255, 255, 0.03);
}

.social-links li a:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.28);
    transform: translateY(-2px);
}

.flz-footer .footer__bottom {
    border-top: 1px solid var(--flz-border-soft);
    padding: 18px 0;
}

.flz-footer .footer__bottom p {
    margin-bottom: 0;
}

.cookies-card {
    border: 1px solid var(--flz-border);
    border-radius: 16px;
    background: rgba(8, 13, 28, 0.92);
    box-shadow: var(--flz-card-shadow);
}

.notify-content,
.modal-content {
    border-radius: 16px;
    border: 1px solid var(--flz-border);
    background: rgba(10, 16, 31, 0.95);
    color: #fff;
}

.flz-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.42s ease, transform 0.42s ease;
}

.flz-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Premium Standards Layer: make quality upgrades visible across app pages */
.section.mt-80.mb-80 .container-fluid,
.flz-cinematic-strip .container-fluid,
.recent-match-section .container-fluid {
    border: 1px solid var(--flz-border-soft);
    border-radius: 24px;
    padding: clamp(16px, 2vw, 24px);
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
        linear-gradient(170deg, rgba(7, 13, 27, 0.9), rgba(5, 10, 21, 0.92));
    box-shadow: var(--flz-card-shadow);
}

.section.mt-80.mb-80 .section-header,
.flz-cinematic-strip .section-header,
.recent-match-section .section-header {
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--flz-border-soft);
}

.section-title {
    font-size: clamp(26px, 3.4vw, 42px);
    letter-spacing: -0.025em;
    color: #fff;
}

.movie-card {
    border-radius: 18px;
    border: 1px solid var(--flz-border);
    background:
        linear-gradient(180deg, rgba(12, 20, 38, 0.94), rgba(8, 14, 27, 0.94)),
        radial-gradient(circle at 85% 8%, rgba(49, 137, 255, 0.22), transparent 45%);
    box-shadow: var(--flz-card-shadow);
    overflow: hidden;
}

.movie-card::after {
    top: 10px;
    left: 10px;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    background: linear-gradient(120deg, rgba(255, 45, 117, 0.9), rgba(46, 135, 255, 0.88)) !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
    animation: none;
}

.movie-card__content {
    position: relative;
    padding: 15px 14px 16px;
}

.movie-card__content::before {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.06));
}

.movie-card__thumb .icon {
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(8, 14, 27, 0.72);
    backdrop-filter: blur(8px);
}

.movie-card__thumb .icon:hover {
    background: linear-gradient(145deg, rgba(44, 139, 255, 0.96), rgba(255, 123, 48, 0.94));
}

.cmn-btn,
.btn--base,
.btn--sm {
    border-radius: 14px !important;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.cmn-btn:hover,
.btn--base:hover,
.btn--sm:hover {
    transform: translateY(-2px);
}

.short-reel-wrapper {
    border-radius: 18px;
    border: 1px solid var(--flz-border-soft);
    background: linear-gradient(160deg, rgba(8, 14, 28, 0.88), rgba(7, 12, 24, 0.9));
    box-shadow: var(--flz-card-shadow);
    overflow: hidden;
}

.reel-action-icon {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(10, 16, 32, 0.78);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.32);
}

.reel-action-icon:hover,
.reel-action-icon.active {
    border-color: rgba(255, 255, 255, 0.3);
    background: linear-gradient(130deg, rgba(255, 45, 117, 0.86), rgba(47, 128, 255, 0.82));
    color: #fff;
}

/* Hero Theme Expansion: carry the browse hero language across the site while preserving mobile accents */
:root {
    --flz-bg: #06080d;
    --flz-bg-soft: #0f141d;
    --flz-surface: rgba(20, 26, 36, 0.78);
    --flz-surface-2: rgba(28, 35, 47, 0.88);
    --flz-border: rgba(225, 234, 245, 0.16);
    --flz-border-soft: rgba(225, 234, 245, 0.08);
    --flz-text: #f5f7fb;
    --flz-text-soft: rgba(165, 177, 196, 0.88);
    --flz-accent-blue: #5e7eff;
    --flz-accent-cyan: #62b7ff;
    --flz-accent-red: #ff3d5a;
    --flz-accent-orange: #8d7cff;
    --flz-card-shadow: 0 28px 64px rgba(0, 0, 0, 0.44);
    --flz-card-shadow-hover: 0 36px 84px rgba(0, 0, 0, 0.58);
    --flz-focus-ring: 0 0 0 3px rgba(98, 183, 255, 0.26);
}

body {
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.16), transparent 22%),
        radial-gradient(circle at 14% 18%, rgba(98, 183, 255, 0.14), transparent 28%),
        radial-gradient(circle at 84% 24%, rgba(255, 61, 90, 0.12), transparent 24%),
        linear-gradient(180deg, #727881 0%, #4f5560 16%, #252b35 34%, #0f141d 58%, #06080d 100%);
}

body::before {
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: 0.18;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.12), transparent 30%),
        linear-gradient(180deg, rgba(6, 8, 13, 0) 0%, rgba(6, 8, 13, 0.52) 56%, rgba(6, 8, 13, 0.84) 100%);
    z-index: -1;
}

.header__bottom {
    border-bottom: 1px solid var(--flz-border-soft);
    border-radius: 0 0 24px 24px;
    background:
        linear-gradient(180deg, rgba(109, 116, 126, 0.16), rgba(15, 20, 29, 0.72)),
        linear-gradient(180deg, rgba(11, 15, 22, 0.92), rgba(11, 15, 22, 0.66));
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(18px) saturate(135%);
}

.header.menu-fixed .header__bottom,
.header.flz-scrolled .header__bottom {
    border-bottom-color: var(--flz-border);
    background:
        linear-gradient(180deg, rgba(97, 105, 116, 0.24), rgba(10, 14, 21, 0.88)),
        linear-gradient(180deg, rgba(10, 14, 21, 0.94), rgba(10, 14, 21, 0.78));
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.36);
}

.main-menu>li>a {
    color: rgba(245, 247, 251, 0.8);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.main-menu>li>a:hover,
.main-menu>li.active>a,
.main-menu>li.flz-active>a {
    color: #fff;
    text-shadow: 0 0 16px rgba(98, 183, 255, 0.22);
}

.main-menu li .sub-menu,
.dropdown-menu,
.nav-right__search-btn,
.flz-nav-icon,
.flz-account-btn,
.flz-nav-pill,
.language-wrapper,
.header-search-area,
.notify-content,
.modal-content,
.cookies-card,
.select2-dropdown {
    border-color: var(--flz-border);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
        linear-gradient(180deg, rgba(58, 64, 75, 0.18), rgba(11, 15, 22, 0.96) 30%, rgba(11, 15, 22, 0.98) 100%);
    box-shadow: var(--flz-card-shadow);
    backdrop-filter: blur(16px) saturate(135%);
}

.dropdown-menu__item:hover,
.main-menu li .sub-menu li a:hover,
.language-list:hover {
    background: rgba(255, 255, 255, 0.06);
}

.flz-nav-pill.is-primary,
.cmn-btn,
.btn--base,
.cmn-btn.flz-primary-btn,
.flz-step-actions .cmn-btn {
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    background-image: linear-gradient(135deg, var(--flz-btn-ash-start) 0%, var(--flz-btn-ash-mid) 50%, var(--flz-btn-ash-end) 100%) !important;
    box-shadow:
        0 18px 40px rgba(7, 9, 12, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.flz-nav-pill.is-primary:hover,
.cmn-btn:hover,
.btn--base:hover,
.cmn-btn.flz-primary-btn:hover,
.flz-step-actions .cmn-btn:hover {
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow:
        0 22px 44px rgba(7, 9, 12, 0.62),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.btn--dark,
.btn-outline--light,
.btn-outline--dark {
    border: 1px solid var(--flz-border) !important;
    color: rgba(236, 242, 251, 0.92) !important;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
        rgba(11, 15, 22, 0.78) !important;
}

.btn--dark:hover,
.btn-outline--light:hover,
.btn-outline--dark:hover,
.btn--dark:focus,
.btn-outline--light:focus,
.btn-outline--dark:focus {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.26) !important;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
        rgba(19, 25, 36, 0.92) !important;
}

.btn--light,
.btn-outline--base,
.flz-secondary-btn,
.flz-step-actions .flz-secondary-btn {
    border: 1px solid var(--flz-border) !important;
    color: rgba(236, 242, 251, 0.92) !important;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
        rgba(15, 20, 29, 0.62) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.btn--light:hover,
.btn-outline--base:hover,
.flz-secondary-btn:hover,
.flz-step-actions .flz-secondary-btn:hover,
.btn--light:focus,
.btn-outline--base:focus,
.flz-secondary-btn:focus,
.flz-step-actions .flz-secondary-btn:focus {
    color: #fff !important;
    border-color: rgba(98, 183, 255, 0.34) !important;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
        rgba(19, 25, 36, 0.88) !important;
}

.btn--danger {
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    background-image: linear-gradient(135deg, #ff3d5a, #8d1d34) !important;
}

.table,
.card,
.custom--card,
.card-deposit,
.package-card,
.sidebar .widget,
.widget-box .widget-item,
.wishlist-card,
.tv-sidebar-list,
.card-custom,
.flz-footer,
.flz-library-head,
.flz-auth-card,
.flz-premiere-shell,
.flz-premiere-hero,
.flz-hero-copy,
.flz-hero-mosaic,
.flz-channel-card,
.short-reel-wrapper,
.recent-match {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--flz-border-soft);
    background:
        radial-gradient(circle at 50% -22%, rgba(255, 255, 255, 0.16), transparent 34%),
        radial-gradient(circle at 12% 20%, rgba(98, 183, 255, 0.12), transparent 28%),
        radial-gradient(circle at 90% 18%, rgba(255, 61, 90, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(94, 102, 113, 0.22) 0%, rgba(26, 32, 43, 0.92) 28%, rgba(10, 14, 21, 0.97) 100%);
    box-shadow: var(--flz-card-shadow);
}

.table::before,
.card::before,
.custom--card::before,
.card-deposit::before,
.package-card::before,
.sidebar .widget::before,
.widget-box .widget-item::before,
.wishlist-card::before,
.tv-sidebar-list::before,
.card-custom::before,
.flz-footer::before,
.flz-library-head::before,
.flz-auth-card::before,
.flz-premiere-shell::before,
.flz-premiere-hero::before,
.flz-hero-copy::before,
.flz-hero-mosaic::before,
.flz-channel-card::before,
.short-reel-wrapper::before,
.recent-match::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
}

.card-header,
.card-header-bg,
.section.mt-80.mb-80 .section-header,
.flz-cinematic-strip .section-header,
.recent-match-section .section-header {
    border-bottom: 1px solid var(--flz-border-soft);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0));
}

.section.mt-80.mb-80 .container-fluid,
.flz-cinematic-strip .container-fluid,
.recent-match-section .container-fluid {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--flz-border-soft);
    border-radius: 26px;
    background:
        radial-gradient(circle at 50% -16%, rgba(255, 255, 255, 0.14), transparent 32%),
        radial-gradient(circle at 8% 18%, rgba(98, 183, 255, 0.12), transparent 26%),
        radial-gradient(circle at 92% 20%, rgba(255, 61, 90, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(96, 104, 115, 0.2) 0%, rgba(25, 31, 42, 0.9) 30%, rgba(9, 13, 20, 0.96) 100%);
    box-shadow: var(--flz-card-shadow);
    backdrop-filter: blur(18px) saturate(135%);
}

#home-featured .container-fluid {
    max-width: none;
    margin-inline: calc(50% - 50vw);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding-inline: clamp(22px, 3vw, 40px);
}

.section-title,
.flz-library-head h1,
.flz-auth-form-wrap h3,
.flz-auth-visual h2,
.inner-hero h2 {
    color: #fff;
    text-shadow: 0 10px 34px rgba(0, 0, 0, 0.34);
}

.movie-card,
.package-card,
.wishlist-card,
.tv-card__thumb,
.widget-box .widget-item {
    border-radius: 20px;
}

.movie-card,
.package-card {
    border-color: rgba(225, 234, 245, 0.12);
}

.movie-card:hover,
.package-card:hover,
.wishlist-card:hover,
.tv-card:hover .tv-card__thumb,
.widget-box .widget-item:hover {
    border-color: rgba(98, 183, 255, 0.28);
    box-shadow: var(--flz-card-shadow-hover);
}

.movie-card::after {
    background: linear-gradient(135deg, rgba(255, 61, 90, 0.92), rgba(94, 126, 255, 0.92)) !important;
}

.movie-card__content::before,
.flz-premiere-divider,
.flz-premiere-chapters::before,
.flz-premiere-chapters::after,
.flz-chapter-card::after {
    background: linear-gradient(90deg, rgba(255, 61, 90, 0), rgba(255, 61, 90, 0.86), rgba(98, 183, 255, 0.84), rgba(98, 183, 255, 0));
    box-shadow: 0 0 18px rgba(94, 126, 255, 0.2);
}

.movie-card .icon,
.movie-card__thumb .icon,
.reel-action-icon,
.social-links li a,
.wishlist-card-wrapper__icon button {
    border: 1px solid rgba(225, 234, 245, 0.18);
    background: rgba(11, 15, 22, 0.72);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.movie-card .icon:hover,
.movie-card__thumb .icon:hover,
.reel-action-icon:hover,
.reel-action-icon.active,
.wishlist-card-wrapper__icon button:hover {
    background: linear-gradient(135deg, var(--flz-accent-red), var(--flz-accent-blue) 68%, var(--flz-accent-cyan));
    color: #fff;
}

.flz-premiere-media {
    background:
        linear-gradient(120deg, rgba(76, 84, 96, 0.54), rgba(10, 14, 21, 0.92)),
        var(--premiere-image) center / cover no-repeat;
}

.flz-premiere-overlay {
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.14), transparent 40%),
        linear-gradient(90deg, rgba(9, 13, 20, 0.96) 0%, rgba(9, 13, 20, 0.74) 42%, rgba(9, 13, 20, 0.18) 100%);
}

.flz-premiere-tag,
.flz-kicker,
.flz-pill,
.flz-mood-pill,
.flz-auth-badges span,
.recent-match__tag {
    border-color: rgba(225, 234, 245, 0.18);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(236, 242, 251, 0.9);
}

.flz-premiere-btn,
.package-card__btn,
.flz-slide-content .btn--base {
    background-image: linear-gradient(135deg, var(--flz-accent-red), #bf4f74 24%, var(--flz-accent-blue) 74%, var(--flz-accent-cyan));
    box-shadow: 0 18px 38px rgba(8, 10, 16, 0.34);
}

.flz-slide-content,
.flz-inline-search input,
.flz-footer .subscribe-form input,
.short-reel-wrapper,
.recent-match,
.flz-auth-form-wrap,
.flz-chapter-card,
.flz-slide-content {
    border-color: var(--flz-border-soft);
}

.flz-slide-content,
.flz-auth-form-wrap,
.flz-chapter-card,
.flz-channel-card,
.flz-hero-mosaic {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
        linear-gradient(180deg, rgba(68, 75, 86, 0.18), rgba(11, 15, 22, 0.92) 32%, rgba(11, 15, 22, 0.96));
}

.flz-auth-visual {
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.12), transparent 34%),
        radial-gradient(circle at 82% 22%, rgba(98, 183, 255, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(92, 100, 111, 0.18), rgba(15, 20, 29, 0.94) 28%, rgba(10, 14, 21, 0.98) 100%);
}

.flz-footer {
    border-top: 1px solid var(--flz-border-soft);
    background:
        radial-gradient(circle at 50% -16%, rgba(255, 255, 255, 0.14), transparent 28%),
        linear-gradient(180deg, rgba(96, 104, 115, 0.2) 0%, rgba(18, 24, 35, 0.94) 28%, rgba(6, 8, 13, 1) 100%);
}

.inner-hero {
    border-bottom: 1px solid var(--flz-border-soft);
    background-color: #3e454f;
}

.inner-hero::before {
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.14), transparent 28%),
        linear-gradient(180deg, rgba(108, 116, 126, 0.36), rgba(15, 20, 29, 0.9));
}

.page-breadcrumb li {
    color: rgba(229, 236, 246, 0.76);
}

.page-breadcrumb li a,
.movie-card__content h6 a,
.wishlist-card__title,
.card-title,
.card-header,
.table tbody tr td a {
    color: #fff;
}

.page-breadcrumb li a:hover,
.movie-card__content h6 a:hover,
.wishlist-card__title:hover,
.table tbody tr td a:hover {
    color: var(--flz-accent-cyan);
}

.table {
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(94, 102, 113, 0.18), rgba(11, 15, 22, 0.98));
}

.table thead tr th {
    background: linear-gradient(135deg, rgba(255, 61, 90, 0.92), rgba(94, 126, 255, 0.92));
    font-family: "Sora", sans-serif;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.table tbody {
    background: transparent;
}

.table td,
.table th,
.table tbody tr td {
    border-top-color: var(--flz-border-soft);
    color: rgba(236, 242, 251, 0.88);
}

.table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.03);
}

.table tbody tr td::before {
    color: #fff;
}

.account-from .form-control,
.account-from .form--control,
.form-control,
.form--control,
.form-select,
.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple,
.input-group-text,
.flz-inline-search input,
.flz-footer .subscribe-form input {
    border-radius: 14px;
    border: 1px solid var(--flz-border);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
        rgba(11, 15, 22, 0.74);
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.account-from .form-control:focus,
.account-from .form--control:focus,
.form-control:focus,
.form--control:focus,
.form-select:focus,
.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: rgba(98, 183, 255, 0.7);
    box-shadow: 0 0 0 3px rgba(98, 183, 255, 0.14);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
        rgba(16, 22, 31, 0.92);
}

.form-control::placeholder,
.form--control::placeholder,
.header-search-form input::placeholder,
.flz-inline-search input::placeholder,
.flz-footer .subscribe-form input::placeholder {
    color: rgba(165, 177, 196, 0.62);
}

.input-group-text {
    color: rgba(225, 234, 245, 0.7);
}

.select2-container--default .select2-selection--single .select2-selection__rendered,
.select2-container--default .select2-selection--multiple .select2-selection__rendered,
.select2-results__option,
.select2-search--dropdown .select2-search__field {
    color: #fff;
}

.select2-search--dropdown .select2-search__field {
    border: 1px solid var(--flz-border);
    background: rgba(11, 15, 22, 0.82);
}

.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option--highlighted[data-selected] {
    background: rgba(94, 126, 255, 0.2);
    color: #fff;
}

.pagination .page-item .page-link,
.d-pagination .pagination li a {
    border: 1px solid var(--flz-border-soft);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
        rgba(11, 15, 22, 0.76);
    color: rgba(236, 242, 251, 0.9);
}

.pagination .page-item .page-link:hover,
.pagination .page-item.active .page-link,
.d-pagination .pagination li.active a,
.d-pagination .pagination li a:hover {
    border-color: rgba(98, 183, 255, 0.28);
    background-image: linear-gradient(135deg, rgba(255, 61, 90, 0.92), rgba(94, 126, 255, 0.92));
    color: #fff;
}

.flz-page-stage {
    position: relative;
    padding-top: 0;
    margin-inline: calc(50% - 50vw);
    overflow: hidden;
    background: transparent;
}

.flz-page-stage::before {
    content: none;
}

.flz-page-stage .container-fluid,
.flz-page-strip > .container-fluid {
    max-width: none;
}

.flz-page-stage .container-fluid {
    padding: 0;
}

.flz-page-stage__embedded-header > .header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 8;
    width: 100%;
    background: none;
}

.flz-page-stage__embedded-header > .header.menu-fixed {
    position: absolute;
}

.flz-page-stage__embedded-header > .header .container-fluid {
    max-width: none;
}

.flz-page-stage__embedded-header > .header .flz-brand {
    flex: 0 0 auto;
    gap: 10px;
    overflow: visible;
}

.flz-page-stage__embedded-header > .header .flz-brand img {
    width: 58px;
    height: 58px;
    display: block;
    border-radius: 0;
    object-fit: contain;
    box-shadow: none;
    transform: scale(1.28);
    transform-origin: center;
    filter: drop-shadow(0 12px 24px rgba(16, 108, 255, 0.28));
}

.flz-page-stage__embedded-header > .header .flz-brand-title {
    font-size: 16px;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.flz-page-stage__embedded-header > .header .header__bottom,
.flz-page-stage__embedded-header > .header.menu-fixed .header__bottom {
    padding: 18px 28px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.flz-page-stage__embedded-header > .header .main-menu li a,
.flz-page-stage__embedded-header > .header .main-menu li.menu_has_children > span,
.flz-page-stage__embedded-header > .header .nav-right a,
.flz-page-stage__embedded-header > .header .nav-right__search-btn {
    color: #ffffff;
}

.flz-page-stage__embedded-header > .header .main-menu {
    margin-right: 12px !important;
}

.flz-page-stage__embedded-header > .header .main-menu > li > a {
    padding: 10px 8px;
    font-size: 11px;
    letter-spacing: 0.05em;
}

.flz-page-stage__embedded-header > .header .main-menu li.menu_has_children > a {
    padding-right: 4px;
}

.flz-page-stage__embedded-header > .header .main-menu li.menu_has_children > span {
    margin-left: 0;
    font-size: 12px;
    flex: 0 0 auto;
}

.flz-page-stage__embedded-header > .header .main-menu li a:hover,
.flz-page-stage__embedded-header > .header .main-menu li a:focus,
.flz-page-stage__embedded-header > .header .main-menu li.menu_has_children:hover > a,
.flz-page-stage__embedded-header > .header .main-menu li.menu_has_children:hover > span {
    color: hsl(var(--base));
}

.flz-page-stage__embedded-header > .header .nav-right {
    gap: 8px;
}

.flz-page-stage__embedded-header > .header .nav-right__search-btn {
    width: 38px;
    height: 38px;
}

.flz-page-stage__embedded-header > .header .flz-nav-pill--premium {
    min-height: auto;
    padding: 0 8px;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.flz-page-stage__embedded-header > .header .flz-nav-pill,
.flz-page-stage__embedded-header > .header .flz-subscribe-btn,
.flz-page-stage__embedded-header > .header .flz-account-btn {
    min-height: 38px;
    padding: 0 10px;
    font-size: 10.5px;
}

.flz-page-stage__embedded-header > .header .flz-subscribe-btn--signin {
    min-height: 52px;
    padding: 0 22px;
    border: 0;
    border-radius: 2px;
    background: #ffffff;
    color: #000000;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-shadow: none;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.flz-page-stage__embedded-header > .header .nav-right a.flz-subscribe-btn--signin,
.flz-page-stage__embedded-header > .header .nav-right a.flz-subscribe-btn--signin:hover,
.flz-page-stage__embedded-header > .header .nav-right a.flz-subscribe-btn--signin:focus {
    color: #000000;
}

.flz-page-stage__embedded-header > .header .nav-right a + a {
    margin-left: 0;
}

.flz-page-stage__embedded-header > .header-search-area {
    z-index: 9;
}

.flz-page-stage__shell {
    position: relative;
    min-height: unset;
    padding: clamp(38px, 5vw, 66px) clamp(22px, 3.5vw, 42px) clamp(28px, 4vw, 42px);
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(280px, 0.84fr);
    gap: 28px;
    align-items: end;
    border-bottom: 0;
    background: transparent;
}

.flz-page-stage--embedded-header .flz-page-stage__shell {
    min-height: unset;
    padding: 108px clamp(22px, 3.5vw, 42px) clamp(28px, 4vw, 42px);
}

.flz-page-stage__shell::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(120deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(210deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 78px 78px;
    opacity: 0.18;
}

.flz-page-stage__copy,
.flz-page-stage__panel {
    position: relative;
    z-index: 1;
}

.flz-page-stage__copy {
    max-width: 760px;
}

.flz-page-stage__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px;
    margin-bottom: 18px;
    border-radius: 999px;
    border: 1px solid rgba(225, 234, 245, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(236, 242, 251, 0.88);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.flz-page-stage__copy h1 {
    margin-bottom: 16px;
    color: #fff;
    font-size: clamp(44px, 5vw, 74px);
    line-height: 0.94;
    text-wrap: balance;
}

.flz-page-stage__copy p {
    max-width: 640px;
    margin-bottom: 0;
    color: var(--flz-text-soft);
    font-size: clamp(15px, 1.45vw, 18px);
    line-height: 1.7;
}

.flz-page-stage__actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.flz-page-stage__panel {
    width: min(100%, 400px);
    justify-self: end;
    display: grid;
    gap: 14px;
    padding: 22px;
    border-radius: 24px;
    border: 1px solid var(--flz-border-soft);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
        linear-gradient(180deg, rgba(68, 75, 86, 0.18), rgba(11, 15, 22, 0.92) 32%, rgba(11, 15, 22, 0.96));
    box-shadow: var(--flz-card-shadow);
    backdrop-filter: blur(18px) saturate(135%);
}

.flz-page-stage__search {
    width: 100%;
}

.flz-page-stage__search input {
    min-height: 54px;
}

.flz-page-stage__stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.flz-page-stage__stat {
    padding: 16px 14px;
    border-radius: 18px;
    border: 1px solid rgba(225, 234, 245, 0.1);
    background: rgba(255, 255, 255, 0.035);
}

.flz-page-stage__stat strong {
    display: block;
    margin-bottom: 6px;
    color: #fff;
    font-family: "Sora", sans-serif;
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1;
}

.flz-page-stage__stat span {
    display: block;
    color: var(--flz-text-soft);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.45;
}

.flz-page-stage__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.flz-page-stage__chip,
.flz-page-stage__micro {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(225, 234, 245, 0.16);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(236, 242, 251, 0.9);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Force-remove the empty grey slab so the hero is the first visible block */
.flz-reference-hero,
.flz-reference-hero__frame,
.flz-reference-hero__frame--no-topbar,
.flz-page-stage,
.flz-page-stage__shell {
    background: transparent !important;
    min-height: auto !important;
}

.flz-reference-hero::before,
.flz-reference-hero__frame::before,
.flz-reference-hero__frame::after,
.flz-page-stage::before,
.flz-page-stage__shell::after {
    content: none !important;
}

.flz-reference-hero__frame {
    padding-top: 96px !important;
    background: var(--hero-background) center top / cover no-repeat !important;
}

.flz-reference-hero__frame--no-topbar {
    padding-top: 64px !important;
}

.flz-reference-hero__image-layer {
    display: none !important;
}

.flz-auth-stage {
    position: relative;
}

.flz-auth-stage--embedded-header {
    padding-top: 0 !important;
    min-height: 100vh;
}

.flz-auth-stage--embedded-header>.flz-auth-stage__embedded-header,
.flz-auth-stage--embedded-header>.flz-reference-hero__embedded-header {
    position: fixed !important;
    inset: 18px 0 auto;
    z-index: 1105;
    width: 100%;
}

.flz-auth-stage--embedded-header>.flz-auth-stage__embedded-header>.header,
.flz-auth-stage--embedded-header>.flz-reference-hero__embedded-header>.header {
    position: relative !important;
    inset: 0 0 auto;
    z-index: 1105;
    width: 100%;
    background: none;
}

.flz-auth-stage--embedded-header>.container-fluid {
    position: relative;
    z-index: 1;
}

.flz-auth-stage--embedded-header .flz-auth-stage__card {
    margin-top: 0 !important;
}

.flz-page-strip > .container-fluid {
    margin-inline: calc(50% - 50vw);
    padding-inline: clamp(22px, 3vw, 40px);
}

.flz-library-grid-shell > .container-fluid,
.flz-genre-shell > .container-fluid,
.flz-live-tv-shell > .container-fluid,
.flz-tournament-shell > .container-fluid,
.flz-contact-shell > .container-fluid {
    padding-top: clamp(20px, 3vw, 32px);
}

.flz-library-grid-shell .section-header,
.flz-genre-shell .section-header,
.flz-live-tv-shell .section-header,
.flz-tournament-shell .section-header {
    margin-bottom: 24px;
}

.flz-library-grid-shell .movie-card,
.flz-genre-shell .movie-card {
    height: 100%;
}

.flz-live-tv-shell .event--tab {
    margin-bottom: 24px;
    padding: 14px 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    border: 1px solid var(--flz-border-soft);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
        rgba(11, 15, 22, 0.76);
}

.flz-live-tv-shell .event--tab .nav-item {
    margin-right: 0;
    padding: 0;
}

.flz-live-tv-shell .event--tab .nav-item .nav-link {
    padding: 11px 16px;
    border: 1px solid transparent !important;
    border-bottom: 0 !important;
    border-radius: 999px;
    color: rgba(236, 242, 251, 0.84);
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.02) !important;
}

.flz-live-tv-shell .event--tab .nav-item .nav-link.active,
.flz-live-tv-shell .event--tab .nav-item .nav-link:hover {
    color: #fff;
    background-image: linear-gradient(135deg, rgba(255, 61, 90, 0.92), rgba(94, 126, 255, 0.92)) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}

.flz-live-tv-shell .tab-content {
    display: grid;
    gap: 22px;
}

.flz-live-tv-shell .tv-live {
    padding: 24px;
    border-radius: 26px;
    border: 1px solid var(--flz-border-soft);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
        linear-gradient(180deg, rgba(64, 72, 84, 0.14), rgba(11, 15, 22, 0.94) 28%, rgba(11, 15, 22, 0.98));
    box-shadow: var(--flz-card-shadow);
}

.flz-live-tv-shell .tv-live:not(:last-child) {
    margin-bottom: 0;
}

.flz-live-tv-shell .channel-title {
    color: #fff;
    font-size: clamp(22px, 2vw, 30px);
    margin-bottom: 0;
}

.flz-live-tv-shell .tv-card-wrapper {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 16px;
}

.flz-live-tv-shell .tv-channel {
    max-width: none;
    min-width: 0;
    width: 100%;
    padding: 14px;
    border-radius: 20px;
    border: 1px solid var(--flz-border-soft);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
        rgba(15, 20, 29, 0.92);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}

.flz-live-tv-shell .tv-channel__thumb {
    border-radius: 16px;
    overflow: hidden;
}

.flz-live-tv-shell .tv-channel__thumb img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.flz-live-tv-shell .play-btn-icon {
    width: 42px;
    height: 42px;
    background-image: linear-gradient(135deg, rgba(255, 61, 90, 0.92), rgba(94, 126, 255, 0.92));
}

.flz-live-tv-shell .tv-channel__title {
    font-size: 14px;
    line-height: 1.35;
}

.flz-tournament-shell .current-live-match {
    padding: 0;
    border-radius: 22px;
    border: 1px solid var(--flz-border-soft);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
        rgba(10, 14, 21, 0.96);
    box-shadow: var(--flz-card-shadow);
}

.flz-tournament-shell .current-live-match img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: inherit;
}

.flz-tournament-shell .current-live-match__tag {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background-image: linear-gradient(135deg, rgba(255, 61, 90, 0.92), rgba(94, 126, 255, 0.92));
}

.flz-tournament-shell .pagination,
.flz-tournament-shell .d-pagination {
    margin-top: 28px;
    justify-content: center;
}

.flz-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    gap: 24px;
}

.flz-contact-card,
.flz-contact-map-shell {
    padding: 28px;
    border-radius: 28px;
    border: 1px solid var(--flz-border-soft);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
        linear-gradient(180deg, rgba(64, 72, 84, 0.16), rgba(11, 15, 22, 0.94) 28%, rgba(11, 15, 22, 0.98));
    box-shadow: var(--flz-card-shadow);
}

.flz-contact-card__header {
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--flz-border-soft);
}

.flz-contact-card__header p {
    margin-bottom: 0;
    color: var(--flz-text-soft);
}

.flz-contact-card .form-group:last-child {
    margin-bottom: 0;
}

.flz-contact-card textarea.form-control,
.flz-contact-card textarea.form--control {
    min-height: 170px;
    resize: vertical;
}

.flz-contact-map-shell .contact-map {
    min-height: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--flz-border-soft);
}

.flz-contact-map-shell .contact-map__iframe {
    min-height: 480px;
}

@media (max-width: 1199px) {
    .flz-page-stage__embedded-header > .header .header__bottom,
    .flz-page-stage__embedded-header > .header.menu-fixed .header__bottom {
        padding: 18px 24px;
    }

    .flz-page-stage--embedded-header .flz-page-stage__shell {
        padding-top: 112px;
    }

    .flz-page-stage__shell {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .flz-page-stage__panel {
        width: 100%;
        max-width: none;
        justify-self: stretch;
    }

    .flz-contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .flz-page-stage--auth .container-fluid {
        padding-left: 0;
        padding-right: 0;
        max-width: 100%;
    }

    .flz-page-stage--auth .flz-auth-shell {
        margin: 0;
        width: 100%;
    }

    .flz-auth-card {
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        gap: 0;
    }

    .flz-page-stage__embedded-header > .header .flz-brand img {
        width: 48px;
        height: 48px;
    }

    .flz-page-stage__embedded-header > .header .header__bottom,
    .flz-page-stage__embedded-header > .header.menu-fixed .header__bottom {
        padding: 12px 14px;
    }

    .flz-page-stage__shell {
        padding: 26px 18px 24px;
        gap: 20px;
    }

    .flz-page-stage--embedded-header .flz-page-stage__shell {
        padding: 86px 18px 24px;
    }

    .flz-page-stage__copy h1 {
        font-size: clamp(34px, 11vw, 48px);
    }

    .flz-page-stage__actions {
        flex-direction: column;
    }

    .flz-page-stage__stat-grid {
        grid-template-columns: 1fr;
    }

    .flz-auth-stage--embedded-header .flz-auth-stage__card {
        margin-top: 88px !important;
    }

    .flz-page-strip > .container-fluid {
        padding-inline: 18px;
    }

    .flz-live-tv-shell .tv-live,
    .flz-contact-card,
    .flz-contact-map-shell {
        padding: 20px;
        border-radius: 22px;
    }

    .flz-live-tv-shell .event--tab {
        padding: 12px;
        border-radius: 20px;
    }

    .flz-live-tv-shell .tv-card-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .flz-contact-map-shell .contact-map__iframe {
        min-height: 320px;
    }
}

@media (max-width: 1399px) {
    .header__bottom {
        padding-inline: 12px;
    }

    .flz-brand-copy {
        display: none;
    }

    .main-menu>li>a {
        padding-inline: 10px;
    }
}

@media (max-width: 1199px) {
    .header__bottom {
        background: rgba(4, 10, 22, 0.95);
        border-bottom: 1px solid var(--flz-border-soft);
        border-radius: 0;
    }

    .navbar-collapse {
        margin-top: 12px;
        border: 1px solid var(--flz-border);
        border-radius: 16px;
        padding: 14px;
        background: rgba(6, 12, 24, 0.96);
    }

    .main-menu {
        margin-bottom: 14px;
    }

    .main-menu>li>a {
        border-radius: 10px;
        padding: 11px 12px;
    }

    .flz-hero-wrap {
        grid-template-columns: 1fr;
    }

    .flz-premiere-grid {
        grid-template-columns: 1fr;
    }

    .flz-chapter-card {
        grid-template-columns: 1fr;
    }

    .flz-chapter-meta {
        justify-items: start;
        text-align: left;
    }

    .flz-chapter-poster--side {
        grid-column: 1 / -1;
        height: 180px;
        margin-top: 10px;
    }

    .flz-auth-card {
        grid-template-columns: 1fr;
    }

    .flz-auth-visual {
        margin-bottom: 18px;
    }
}

@media (max-width: 767px) {
    .flz-page-stage--auth .container-fluid {
        padding-left: 0;
        padding-right: 0;
    }

    .flz-auth-card {
        border-radius: 0;
    }

    .header__bottom {
        padding-inline: 8px;
        padding-block: 10px;
    }

    .flz-brand img {
        width: 36px;
        height: 36px;
        border-radius: 12px;
    }

    .flz-nav-pill,
    .flz-subscribe-btn,
    .language {
        display: none;
    }

    .flz-nav-icon,
    .nav-right__search-btn,
    .flz-account-btn {
        width: 38px;
        height: 38px;
        min-height: 38px;
        padding: 0;
    }

    .flz-account-btn span {
        display: none;
    }

    .flz-home-hero,
    .flz-library-hero,
    .flz-auth-shell {
        margin-top: 76px;
    }

    .flz-hero-copy {
        border-radius: 18px;
        padding: 18px;
    }

    .flz-hero-copy h1 {
        font-size: clamp(32px, 10vw, 42px);
    }

    .flz-channel-grid {
        grid-template-columns: 1fr;
    }

    .flz-hero-mosaic {
        border-radius: 18px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .flz-mosaic-card {
        min-height: 135px;
    }

    .flz-library-head {
        flex-direction: column;
        align-items: flex-start;
        border-radius: 16px;
    }

    .flz-inline-search {
        width: 100%;
    }

    .flz-auth-visual,
    .flz-auth-form-wrap {
        padding: 18px 12px;
    }

    .flz-auth-visual h2 {
        font-size: 19px;
        line-height: 1.25;
        max-width: 100%;
        width: 100%;
    }

    .flz-auth-visual p {
        max-width: 100%;
        width: 100%;
        font-size: 14px;
    }

    .flz-step-actions {
        flex-direction: column;
    }

    .flz-cinematic-slider .movie-slide {
        min-height: 420px;
    }

    .flz-slide-content {
        padding: 16px;
    }
}
