/* LikeFilm homepage route CSS — home.css VER1. */
.homeV2-page {
--home-v2-surface: #0d1725;
    --home-v2-surface-2: #111d2d;
    --home-v2-border: rgba(148, 163, 184, .13);
    --home-v2-border-strong: rgba(148, 163, 184, .24);
    --home-v2-text-soft: #cbd5e1;
    --home-v2-muted: #8795aa;
    margin: 0;
    padding: 18px 0 40px;
    background: transparent;
    border-radius: 0;
    overflow: visible;
}

.homeV2-page .homeV2-eyebrow {
color: var(--lfv2-accent);
    font-size: .72rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.homeV2-hero {
position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
    align-items: center;
    min-height: 430px;
    padding: 48px 54px;
    background:
        radial-gradient(circle at 76% 32%, rgba(62, 92, 135, .23), transparent 35%),
        radial-gradient(circle at 28% 88%, rgba(245, 197, 24, .07), transparent 30%),
        linear-gradient(135deg, #09111c 0%, #0d1725 58%, #0a111b 100%);
    border: 1px solid var(--home-v2-border);
    border-radius: 24px;
    box-shadow: 0 26px 70px rgba(0, 0, 0, .28);
    overflow: hidden;
}

.homeV2-hero::before,
.homeV2-hero::after {
content: "";
    position: absolute;
    pointer-events: none;
}

.homeV2-hero::before {
z-index: -1;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 10, 17, .28), transparent 60%),
        repeating-linear-gradient(115deg, transparent 0 64px, rgba(255, 255, 255, .012) 64px 65px);
}

.homeV2-hero::after {
right: -120px;
    bottom: -180px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(245, 197, 24, .08), transparent 68%);
    filter: blur(8px);
}

.homeV2-hero__content {
position: relative;
    z-index: 3;
    max-width: 680px;
}

.homeV2-hero__title {
max-width: 760px;
    margin: 13px 0 17px;
    color: #f8fafc;
    font-size: clamp(2.45rem, 4.25vw, 4.65rem);
    font-weight: 800;
    line-height: .98;
    letter-spacing: -.047em;
}

.homeV2-hero__lead {
max-width: 620px;
    margin: 0;
    color: var(--home-v2-text-soft);
    font-size: 1.06rem;
    line-height: 1.65;
}

.homeV2-search {
max-width: 650px;
    margin-top: 27px;
}

.homeV2-search__label {
position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.homeV2-search__control {
display: grid;
    grid-template-columns: 22px minmax(0, 1fr) auto;
    align-items: center;
    gap: 11px;
    min-height: 58px;
    padding: 5px 6px 5px 18px;
    background: rgba(5, 12, 21, .82);
    border: 1px solid rgba(148, 163, 184, .2);
    border-radius: 15px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, .2);
    backdrop-filter: blur(12px);
}

.homeV2-search__control > i {
color: #8190a6;
    font-size: 1rem;
}

.homeV2-search__control input {
min-width: 0;
    width: 100%;
    height: 46px;
    padding: 0;
    color: #f8fafc;
    background: transparent;
    border: 0;
    outline: 0;
    font: inherit;
    font-size: .98rem;
}

.homeV2-search__control input::placeholder {
color: #77869a;
}

.homeV2-search__control:focus-within {
border-color: rgba(245, 197, 24, .62);
    box-shadow: 0 0 0 3px rgba(245, 197, 24, .09), 0 18px 38px rgba(0, 0, 0, .24);
}

.homeV2-search__control button {
align-self: stretch;
    min-width: 112px;
    padding: 0 22px;
    color: #09111c;
    background: var(--lfv2-accent);
    border: 0;
    border-radius: 11px;
    font: inherit;
    font-size: .92rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.homeV2-search__control button:hover,
.homeV2-search__control button:focus-visible {
background: var(--lfv2-accent-hover);
    box-shadow: 0 10px 24px rgba(245, 197, 24, .18);
    transform: translateY(-1px);
}

.homeV2-hero__actions {
display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.homeV2-button {
display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    padding: 0 17px;
    border-radius: 11px;
    font-size: .9rem;
    font-weight: 800;
    transition: color .18s ease, background-color .18s ease, border-color .18s ease, transform .18s ease;
}

.homeV2-button--primary {
color: #09111c;
    background: var(--lfv2-accent);
    border: 1px solid var(--lfv2-accent);
}

.homeV2-button--secondary {
color: #e6edf6;
    background: rgba(13, 23, 37, .76);
    border: 1px solid var(--home-v2-border-strong);
}

.homeV2-button:hover,
.homeV2-button:focus-visible {
transform: translateY(-1px);
}

.homeV2-button--primary:hover,
.homeV2-button--primary:focus-visible {
color: #09111c;
    background: var(--lfv2-accent-hover);
}

.homeV2-button--secondary:hover,
.homeV2-button--secondary:focus-visible {
color: #fff;
    background: #172538;
    border-color: rgba(245, 197, 24, .34);
}

.homeV2-hero__trust {
display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: #8291a6;
    font-size: .78rem;
    line-height: 1.45;
}

.homeV2-hero__trust i {
color: rgba(245, 197, 24, .88);
}

.homeV2-hero__visual {
position: relative;
    z-index: 2;
    min-height: 330px;
    perspective: 1100px;
}

.homeV2-visual-card {
position: absolute;
    width: 280px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-image:
        linear-gradient(180deg, transparent 32%, rgba(3, 7, 13, .88) 100%),
        var(--home-v2-image);
    background-position: center;
    background-size: cover;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 18px;
    box-shadow: 0 28px 54px rgba(0, 0, 0, .38);
}

.homeV2-visual-card span {
position: absolute;
    right: 17px;
    bottom: 15px;
    left: 17px;
    color: #fff;
    font-size: .88rem;
    font-weight: 800;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .65);
}

.homeV2-visual-card--one {
z-index: 3;
    top: 62px;
    right: 40px;
    transform: rotateY(-7deg) rotateZ(1.5deg);
}

.homeV2-visual-card--two {
z-index: 2;
    top: 15px;
    right: 185px;
    width: 230px;
    opacity: .78;
    transform: rotateY(9deg) rotateZ(-5deg);
}

.homeV2-visual-card--three {
z-index: 1;
    right: 170px;
    bottom: 2px;
    width: 220px;
    opacity: .58;
    filter: saturate(.78);
    transform: rotateY(8deg) rotateZ(5deg);
}

.homeV2-actions,
.homeV2-section {
margin-top: 58px;
}

.homeV2-section-heading {
display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 18px;
}

.homeV2-section-heading h2 {
margin: 5px 0 0;
    color: #f8fafc;
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -.025em;
}

.homeV2-section-heading > a {
display: inline-flex;
    align-items: center;
    gap: 7px;
    flex: 0 0 auto;
    padding-bottom: 3px;
    color: #a9b6c8;
    font-size: .84rem;
    font-weight: 750;
}

.homeV2-section-heading > a:hover,
.homeV2-section-heading > a:focus-visible {
color: var(--lfv2-accent);
}

.homeV2-action-grid {
display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: repeat(2, 164px);
    gap: 12px;
}

.homeV2-action {
position: relative;
    display: block;
    min-width: 0;
    overflow: hidden;
    color: #fff;
    background: #0d1725;
    border: 1px solid var(--home-v2-border);
    border-radius: 17px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .16);
    isolation: isolate;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.homeV2-action::before {
content: "";
    position: absolute;
    z-index: -2;
    inset: 0;
    background-image: var(--home-v2-action-image);
    background-position: center;
    background-size: cover;
    transition: transform .4s cubic-bezier(.2, .7, .2, 1), filter .25s ease;
}

.homeV2-action__shade {
position: absolute;
    z-index: -1;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 10, 17, .94) 0%, rgba(5, 10, 17, .62) 55%, rgba(5, 10, 17, .3) 100%),
        linear-gradient(0deg, rgba(5, 10, 17, .9) 0%, transparent 75%);
}

.homeV2-action__content {
position: absolute;
    inset: auto 0 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 8px 12px;
    padding: 17px;
}

.homeV2-action__kicker,
.homeV2-action__text {
grid-column: 1;
}

.homeV2-action__kicker {
color: var(--lfv2-accent);
    font-size: .63rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.homeV2-action strong {
grid-column: 1;
    color: #fff;
    font-size: 1.08rem;
    line-height: 1.18;
}

.homeV2-action__text {
overflow: hidden;
    color: #acb8c7;
    font-size: .72rem;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.homeV2-action__arrow {
grid-column: 2;
    grid-row: 1 / 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: #f8fafc;
    background: rgba(6, 13, 22, .72);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
}

.homeV2-action:hover,
.homeV2-action:focus-visible {
border-color: rgba(245, 197, 24, .36);
    box-shadow: 0 20px 42px rgba(0, 0, 0, .28);
    transform: translateY(-3px);
}

.homeV2-action:hover::before,
.homeV2-action:focus-visible::before {
filter: saturate(1.08);
    transform: scale(1.045);
}

.homeV2-action--index-1 {
grid-column: 1 / 7;
    grid-row: 1 / 3;
}

.homeV2-action--index-2 {
grid-column: 7 / 10; grid-row: 1;
}

.homeV2-action--index-3 {
grid-column: 10 / 13; grid-row: 1;
}

.homeV2-action--index-4 {
grid-column: 7 / 9; grid-row: 2;
}

.homeV2-action--index-5 {
grid-column: 9 / 11; grid-row: 2;
}

.homeV2-action--index-6 {
grid-column: 11 / 13; grid-row: 2;
}

.homeV2-action--featured .homeV2-action__content {
padding: 27px;
}

.homeV2-action--featured strong {
max-width: 470px;
    font-size: clamp(1.7rem, 3vw, 2.45rem);
    line-height: 1.02;
    letter-spacing: -.035em;
}

.homeV2-action--featured .homeV2-action__text {
font-size: .86rem;
}

.homeV2-action--index-4 strong,
.homeV2-action--index-5 strong,
.homeV2-action--index-6 strong {
font-size: .92rem;
}

.homeV2-action--index-4 .homeV2-action__text,
.homeV2-action--index-5 .homeV2-action__text,
.homeV2-action--index-6 .homeV2-action__text {
display: none;
}

.homeV2-section--collections {
padding-top: 5px;
}

.homeV2-section--collections + .homeV2-section--collections {
margin-top: 50px;
    padding-top: 45px;
    border-top: 1px solid var(--home-v2-border);
}

.homeV2-section .uiThemeRailShell {
margin: 0;
}

.homeV2-section .uiThemeScrollContainer {
padding-bottom: 5px;
}

.homeV2-section .uiThemeSimpleCard {
flex-basis: calc((100% - 48px) / 5);
    min-width: calc((100% - 48px) / 5);
}

.homeV2-section--chips {
padding: 30px 32px 34px;
    background: linear-gradient(180deg, rgba(9, 20, 35, .96), rgba(6, 15, 28, .92));
    border: 1px solid var(--home-v2-border);
    border-radius: 26px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .18);
}

.homeV2-chip-cloud {
display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.homeV2-chip {
display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 0 18px;
    color: #dce6f5;
    font-size: .96rem;
    font-weight: 650;
    line-height: 1.25;
    background: linear-gradient(180deg, rgba(22, 39, 61, .94), rgba(12, 25, 42, .98));
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 999px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04), 0 10px 22px rgba(0, 0, 0, .14);
    transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}

.homeV2-chip:hover,
.homeV2-chip:focus-visible {
color: #fff;
    background: linear-gradient(180deg, rgba(33, 57, 88, .98), rgba(17, 35, 57, 1));
    border-color: rgba(245, 197, 24, .38);
    box-shadow: 0 14px 28px rgba(0, 0, 0, .2);
    transform: translateY(-2px);
}

@media (max-width: 1120px) {
.homeV2-hero {
grid-template-columns: minmax(0, 1fr) 330px;
        padding: 42px;
}

.homeV2-visual-card--one {
right: 0;
}

.homeV2-visual-card--two {
right: 105px;
}

.homeV2-visual-card--three {
right: 90px;
}

.homeV2-action-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: 280px repeat(3, 170px);
}

.homeV2-action--index-1 {
grid-column: 1 / 3; grid-row: 1;
}

.homeV2-action--index-2,
.homeV2-action--index-3,
.homeV2-action--index-4,
.homeV2-action--index-5,
.homeV2-action--index-6 {
grid-column: auto;
        grid-row: auto;
}

.homeV2-action--index-4 strong,
.homeV2-action--index-5 strong,
.homeV2-action--index-6 strong {
font-size: 1.05rem;
}

.homeV2-action--index-4 .homeV2-action__text,
.homeV2-action--index-5 .homeV2-action__text,
.homeV2-action--index-6 .homeV2-action__text {
display: block;
}
}

@media (max-width: 850px) {
.homeV2-page {
padding-top: 8px;
}

.homeV2-hero {
display: block;
        min-height: 0;
        padding: 38px 30px 34px;
}

.homeV2-hero__content {
max-width: 680px;
}

.homeV2-hero__visual {
position: absolute;
        z-index: 0;
        inset: 0;
        min-height: 0;
        opacity: .2;
        filter: blur(1px);
}

.homeV2-visual-card--one {
top: 40px;
        right: -50px;
        width: 350px;
}

.homeV2-visual-card--two,
.homeV2-visual-card--three {
display: none;
}

.homeV2-hero::before {
z-index: 1;
        background: linear-gradient(90deg, rgba(6, 12, 21, .99) 0%, rgba(6, 12, 21, .93) 56%, rgba(6, 12, 21, .62) 100%);
}

.homeV2-section .uiThemeSimpleCard {
flex-basis: calc((100% - 24px) / 3);
        min-width: calc((100% - 24px) / 3);
}
}

@media (max-width: 620px) {
.homeV2-page {
padding-bottom: 26px;
}

.homeV2-hero {
padding: 30px 20px 27px;
        border-radius: 19px;
}

.homeV2-hero__title {
margin-top: 10px;
        font-size: clamp(2.15rem, 12vw, 3.15rem);
}

.homeV2-hero__lead {
font-size: .94rem;
        line-height: 1.55;
}

.homeV2-search {
margin-top: 21px;
}

.homeV2-search__control {
grid-template-columns: 18px minmax(0, 1fr);
        min-height: 54px;
        padding-right: 7px;
}

.homeV2-search__control button {
grid-column: 1 / -1;
        min-height: 44px;
        margin: 0 -1px 0 -12px;
}

.homeV2-hero__actions {
display: grid;
        grid-template-columns: 1fr 1fr;
}

.homeV2-button {
padding: 0 11px;
        font-size: .8rem;
}

.homeV2-hero__trust {
align-items: flex-start;
        font-size: .72rem;
}

.homeV2-actions,
.homeV2-section {
margin-top: 40px;
}

.homeV2-section-heading {
align-items: flex-start;
        margin-bottom: 14px;
}

.homeV2-section-heading h2 {
font-size: 1.35rem;
}

.homeV2-section-heading > a {
font-size: 0;
}

.homeV2-section-heading > a i {
font-size: 1rem;
}

.homeV2-action-grid {
grid-template-columns: 1fr;
        grid-template-rows: none;
}

.homeV2-action,
.homeV2-action--index-1,
.homeV2-action--index-2,
.homeV2-action--index-3,
.homeV2-action--index-4,
.homeV2-action--index-5,
.homeV2-action--index-6 {
grid-column: 1;
        grid-row: auto;
        min-height: 174px;
}

.homeV2-action--featured {
min-height: 245px;
}

.homeV2-action--featured .homeV2-action__content {
padding: 20px;
}

.homeV2-action--featured strong {
font-size: 1.6rem;
}

.homeV2-section--collections + .homeV2-section--collections {
margin-top: 38px;
        padding-top: 34px;
}

.homeV2-section .uiThemeSimpleCard {
flex-basis: 78%;
        min-width: 78%;
}
}

.homeV2-page a.homeV2-button--primary,
.homeV2-page a.homeV2-button--primary:link,
.homeV2-page a.homeV2-button--primary:visited {
color: #07111e;
    background: var(--lfv2-accent);
    border-color: var(--lfv2-accent);
}

.homeV2-page a.homeV2-button--primary:hover,
.homeV2-page a.homeV2-button--primary:focus-visible {
color: #07111e;
    background: #ffd21f;
    border-color: #ffd21f;
}

.homeV2-page .homeV2-eyebrow {
color: var(--lfv2-accent);
	font-size: 11px;
	font-weight: 800;
	line-height: 1.35;
	letter-spacing: .09em;
}

.homeV2-hero__title {
max-width: 760px;
	font-size: clamp(42px, 4.15vw, 68px);
	font-weight: 800;
	line-height: 1.01;
	letter-spacing: -.045em;
}

.homeV2-hero__lead {
max-width: 640px;
	color: var(--lf-type-secondary);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.62;
}

.homeV2-search__control input {
color: var(--lf-type-primary);
	font-size: 14px;
	line-height: 1.4;
}

.homeV2-search__control input::placeholder {
color: var(--lf-type-subtle);
	opacity: 1;
}

.homeV2-search__control button,
.homeV2-button {
font-size: 13px;
	font-weight: 800;
	line-height: 1.2;
}

.homeV2-hero__trust {
color: var(--lf-type-muted);
	font-size: 12px;
	line-height: 1.5;
}

.homeV2-section-heading h2 {
color: var(--lf-type-primary);
	font-size: clamp(24px, 2.15vw, 32px);
	font-weight: 800;
	line-height: 1.16;
	letter-spacing: -.028em;
}

.homeV2-section-heading > a {
color: var(--lf-type-muted);
	font-size: 13px;
	font-weight: 700;
}

.homeV2-action__kicker {
font-size: 10px;
	font-weight: 850;
	line-height: 1.25;
}

.homeV2-action strong {
font-size: 17px;
	font-weight: 800;
	line-height: 1.2;
}

.homeV2-action__text {
color: var(--lf-type-secondary);
	font-size: 12px;
	line-height: 1.42;
}

.homeV2-action--featured strong {
font-size: clamp(28px, 3vw, 39px);
	line-height: 1.04;
}

.homeV2-action--featured .homeV2-action__text {
font-size: 14px;
	line-height: 1.45;
}

.homeV2-visual-card span {
font-size: 13px;
	font-weight: 800;
	line-height: 1.35;
}

html.lfv2-active.light-theme .homeV2-hero__title,
html.lfv2-active.light-theme .homeV2-section-heading h2 {
color: var(--lf-type-primary);
}

html.lfv2-active.light-theme .homeV2-hero__lead,
html.lfv2-active.light-theme .homeV2-action__text {
color: var(--lf-type-secondary);
}

html.lfv2-active.light-theme .homeV2-hero__trust,
html.lfv2-active.light-theme .homeV2-section-heading > a {
color: var(--lf-type-muted);
}

@media (max-width: 680px) {
.homeV2-hero__title {
font-size: clamp(34px, 11vw, 50px);
		line-height: 1.02;
}

.homeV2-hero__lead {
font-size: 15px;
		line-height: 1.56;
}

.homeV2-section-heading h2 {
font-size: 22px;
}
}

@media (max-width: 460px) {
.homeV2-hero__title {
font-size: clamp(32px, 10.5vw, 43px);
}
}
