/* cyrillic-ext */
@font-face {
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 400;
    font-stretch: 100%;
    font-display: swap;
    src: url("/assets/fonts/nunito-sans-cyrillic-ext-400.woff2") format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

/* latin-ext */
@font-face {
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 400;
    font-stretch: 100%;
    font-display: swap;
    src: url("/assets/fonts/nunito-sans-latin-ext-400.woff2") format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* cyrillic-ext */
@font-face {
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 600;
    font-stretch: 100%;
    font-display: swap;
    src: url("/assets/fonts/nunito-sans-cyrillic-ext-600.woff2") format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

/* latin-ext */
@font-face {
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 600;
    font-stretch: 100%;
    font-display: swap;
    src: url("/assets/fonts/nunito-sans-latin-ext-600.woff2") format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* cyrillic-ext */
@font-face {
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 700;
    font-stretch: 100%;
    font-display: swap;
    src: url("/assets/fonts/nunito-sans-cyrillic-ext-700.woff2") format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

/* latin-ext */
@font-face {
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 700;
    font-stretch: 100%;
    font-display: swap;
    src: url("/assets/fonts/nunito-sans-latin-ext-700.woff2") format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}



:root {
    --bg: #fff;
    --fg: #111;
    --muted: #555;
    --line: #e5e5e5;
    --line-strong: #cfcfcf;
    --maxw: 1200px;
    --pad: 20px;
    --header-h: 64px;
    --radius: 10px;
    --afisha-accent: #111;
    --buy-grad-a: #ff3b3b;
    --buy-grad-b: #a80505;
    --hero-logo-max: 520px;
    --shows-track-margin-desktop: 6;
    --shows-track-margin-mobile: 0;
    --shows-track-factor-desktop: 1.05;
    --shows-track-factor-mobile: 2.4;
    --shows-heading-stick-top: clamp(12px, 3vh, 36px);
    --shows-heading-height: clamp(52px, 8vw, 96px);
    --shows-heading-offset: calc(var(--header-h, 64px) + var(--shows-heading-stick-top));
    --shows-stack-top-desktop: var(--header-h, 64px);
    --shows-stack-top-mobile: calc(var(--shows-heading-offset) + var(--shows-heading-height));
    --shows-stack-top: var(--shows-stack-top-desktop);
    --shows-mobile-stick-top: var(--shows-stack-top-desktop);
    --shows-mobile-stick-height: 68vh;
    --shows-mobile-line-height: 120px;
}

@media (max-width: 640px) {
    :root {
        --hero-logo-max: 280px;
        --shows-heading-stick-top: clamp(10px, 4vw, 22px);
        --shows-heading-height: clamp(46px, 14vw, 72px);
        --shows-heading-offset: calc(var(--header-h, 64px) + var(--shows-heading-stick-top));
        --shows-stack-top-mobile: calc(var(--shows-heading-offset) + var(--shows-heading-height));
        --shows-stack-top: var(--shows-stack-top-mobile);
        --shows-mobile-stick-top: var(--shows-stack-top-mobile);
        --shows-mobile-stick-height: 56vh;
    }
}

@property --hero-rot {
    syntax: "<angle>";
    inherits: false;
    initial-value: 0deg;
}

@property --hero-scale {
    syntax: "<number>";
    inherits: false;
    initial-value: 1;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: 'Nunito Sans', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--fg);
}

body.nav-open {
    overflow: hidden;
}

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

.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--pad);
}

section {
    padding: 72px 0;

}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    height: var(--header-h);
    background: transparent;
    color: #f5f5f5;
    border-bottom: 1px solid transparent;
    z-index: 100;
    transition: background 0.55s cubic-bezier(.22, .61, .36, 1),
        box-shadow 0.55s cubic-bezier(.22, .61, .36, 1),
        border-color 0.45s ease,
        color 0.35s ease,
        transform 0.45s cubic-bezier(.22, .61, .36, 1);
    will-change: background, box-shadow, border-color, color, transform;
}

body.nav-open .site-header {
    background: rgba(0, 0, 0, 0.92);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.5);
}

.site-header.is-sticky {
    background: rgba(0, 0, 0, 0.94);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.45);
    color: #f5f5f5;
}

@supports (backdrop-filter: blur(18px)) {
    .site-header.is-sticky {
        backdrop-filter: saturate(160%) blur(18px);
    }
}

@supports (-webkit-backdrop-filter: blur(18px)) {
    .site-header.is-sticky {
        -webkit-backdrop-filter: saturate(160%) blur(18px);
    }
}

.head-inner {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.logo {
    font-weight: 800;
    letter-spacing: 0.4px;
    flex: 0 0 auto;
    opacity: 0;
    transform: translateY(-10px);
    max-width: 0;
    overflow: hidden;
    pointer-events: none;
    white-space: nowrap;
    transition: opacity 0.45s cubic-bezier(.22, .61, .36, 1),
        transform 0.45s cubic-bezier(.22, .61, .36, 1),
        max-width 0.45s cubic-bezier(.22, .61, .36, 1);
    margin-right: -20px;
}

.site-header.is-sticky .logo {
    opacity: 1;
    transform: translateY(0);
    max-width: 240px;
    pointer-events: auto;
    overflow: visible;
    margin-right: 0;
}

.logo img {
    display: block;
    max-height: 38px;
    width: auto;
}

.site-header nav {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    margin: 0 auto;
    transition: color 0.4s cubic-bezier(.22, .61, .36, 1);
}

.site-header nav a {
    padding: 8px 12px;
    border: none;
    background: transparent;
    color: inherit;
    position: relative;
    overflow: hidden;
    z-index: 0;
    transition: color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
}

.nav-label {
    position: relative;
    display: inline-block;
    padding: 0 2px;
    line-height: 1.2;
}

.nav-label::before,
.nav-label::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    mix-blend-mode: screen;
}

.nav-label::before {
    color: #ff1f4b;
    text-shadow: 0 0 8px rgba(255, 31, 75, 0.65);
}

.nav-label::after {
    color: #44d6ff;
    text-shadow: 0 0 8px rgba(68, 214, 255, 0.55);
    mix-blend-mode: lighten;
}

.site-header nav a:hover,
.site-header nav a:focus {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6), 0 12px 26px rgba(0, 0, 0, 0.25), 0 0 18px rgba(255, 255, 255, 0.28);
    color: #fff;
}

.site-header nav a.is-current {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
    color: #fff;
    padding: 9px;
    border-radius: 5px;
}

.site-header nav a::before {
    content: '';
    position: absolute;
    inset: -120% -40%;
    background: radial-gradient(120% 200% at 50% 120%, rgba(255, 255, 255, 0.27) 0%, rgba(255, 255, 255, 0) 55%);
    transform: translateY(70%);
    opacity: 0;
    transition: transform 0.45s cubic-bezier(.19, .64, .33, 1), opacity 0.45s ease;
    z-index: -1;

}

.site-header nav a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: currentColor;
    transform: translateX(-50%);
    opacity: 0;
    transition: width 0.35s cubic-bezier(.22, .61, .36, 1), opacity 0.35s ease;
}

.site-header nav a:hover::before,
.site-header nav a:focus::before {
    transform: translateY(0);
    opacity: 1;
}

.site-header nav a:hover::after,
.site-header nav a:focus::after {
    width: 68%;
    opacity: 0.9;
}

.site-header nav a.is-current::before,
.site-header nav a.is-current::after {
    display: none;
}

.site-header nav a:hover .nav-label::before,
.site-header nav a:focus .nav-label::before {
    opacity: 0.7;
    animation: navGlitchRed 560ms steps(2, end) infinite;
}

.site-header nav a:hover .nav-label::after,
.site-header nav a:focus .nav-label::after {
    opacity: 0.7;
    animation: navGlitchCyan 420ms steps(2, end) infinite;
}

.site-header nav a:hover .nav-label {
    animation: navLabelJitter 540ms steps(3, end) infinite;
}

.site-header nav a.is-current .nav-label::before,
.site-header nav a.is-current .nav-label::after {
    display: none;
}

@keyframes navLabelJitter {
    0% {
        transform: translate(0, 0);
    }

    30% {
        transform: translate(-0.3px, 0.3px);
    }

    45% {
        transform: translate(0.3px, -0.3px);
    }

    70% {
        transform: translate(-0.3px, -0.6px);
    }

    100% {
        transform: translate(0.2px, 0.25px);
    }
}

@keyframes navGlitchRed {
    0% {
        transform: translate(0, 0);
        clip-path: inset(0 0 60% 0);
    }

    20% {
        transform: translate(-0.5px, -0.2px);
        clip-path: inset(30% 0 0 0);
    }

    40% {
        transform: translate(0.8px, 0.3px);
        clip-path: inset(0 0 35% 0);
    }

    60% {
        transform: translate(-0.4px, 0);
        clip-path: inset(55% 0 0 0);
    }

    80% {
        transform: translate(0.4px, -0.3px);
        clip-path: inset(10% 0 10% 0);
    }

    100% {
        transform: translate(0, 0);
        clip-path: inset(0 0 60% 0);
    }
}

@keyframes navGlitchCyan {
    0% {
        transform: translate(0, 0);
        clip-path: inset(40% 0 0 0);
    }

    15% {
        transform: translate(0.3px, -0.3px);
        clip-path: inset(0 0 40% 0);
    }

    35% {
        transform: translate(-0.5px, 0.3px);
        clip-path: inset(65% 0 0 0);
    }

    55% {
        transform: translate(0.5px, 0);
        clip-path: inset(5% 0 20% 0);
    }

    75% {
        transform: translate(-0.4px, -0.4px);
        clip-path: inset(20% 0 50% 0);
    }

    100% {
        transform: translate(0, 0);
        clip-path: inset(40% 0 0 0);
    }
}


.phone {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.1;
    flex: 0 0 auto;
    text-align: right;
    margin-left: auto;
    transition: opacity 0.45s cubic-bezier(.22, .61, .36, 1), color 0.35s ease;
}

.phone a {
    font-weight: 700;
}

.phone small {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
}

.site-header.is-sticky .phone small {
    color: rgba(255, 255, 255, 0.7);
}

.burger {
    display: none;
    position: relative;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    background: transparent;
    color: inherit;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    font-size: 0;
}

.site-header.is-sticky .burger {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.14);
    color: #f5f5f5;
}

.burger-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 16px;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.burger-line {
    width: 100%;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    transform-origin: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger[aria-expanded='true'] {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.65);
}

.site-header.is-sticky .burger[aria-expanded='true'] {
    background: rgba(17, 17, 17, 0.06);
    border-color: var(--line-strong);
}

.burger[aria-expanded='true'] .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger[aria-expanded='true'] .burger-line:nth-child(2) {
    opacity: 0;
}

.burger[aria-expanded='true'] .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
    .head-inner {
        width: 100%;
    }

    .logo {
        order: 1;
    }

    .phone {
        order: 2;
        font-size: 14px;
        align-items: flex-start;
        text-align: left;
        line-height: 1.2;
        margin-left: 0;
    }

    .burger {
        order: 3;
        margin-left: auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .site-header nav {
        order: 4;
        margin: 0;
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 18px 32px rgba(0, 0, 0, 0.5);
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 18px var(--pad) 28px;
        transform: translateY(-16px);
        opacity: 0;
        pointer-events: none;
        color: #f5f5f5;
        max-height: calc(100vh - var(--header-h));
        overflow-y: auto;
        overscroll-behavior: contain;
        transition: transform 0.45s cubic-bezier(.22, .61, .36, 1),
            opacity 0.45s cubic-bezier(.22, .61, .36, 1),
            color 0.35s ease;
    }

    .site-header nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .site-header nav a {
        padding: 12px 0;
        width: 100%;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        text-align: left;
        color: inherit;
    }

    .site-header nav a:last-child {
        border-bottom: none;
    }

    .site-header nav a::after {
        display: none;
    }

    .site-header nav a::before {
        inset: 0;
        transform: translateX(-105%);
    }

    .site-header nav a:hover::before,
    .site-header nav a:focus::before {
        transform: translateX(0);
    }
}

@media (min-width: 901px) {
    .site-header nav {
        flex: 0 0 auto;
        margin: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
        padding: 0;
    }

    .site-header.is-sticky nav a {
        color: #f5f5f5;
    }

    .site-header.is-sticky nav a:hover,
    .site-header.is-sticky nav a:focus {
        background: rgba(255, 255, 255, 0.12);
    }
}

:target {
    scroll-margin-top: calc(var(--header-h) + 12px);
}


.hero {
    min-height: 100vh;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: #000;
    color: #f5f5f5;
    border-top: none;
    border-bottom: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.65) 60%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    background: #000;
}

.hero .content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: clamp(88px, 22vh, 144px) var(--pad) clamp(180px, 24vh, 260px);
}

.hero-title {
    margin: 0 0 24px;
    font-size: clamp(40px, 8.5vw, 110px);
    line-height: 1;
    display: flex;
    justify-content: center;
}

.hero-logo-stage {
    position: relative;
    width: min(90vw, var(--hero-logo-max));
    max-width: var(--hero-logo-max);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(12px, 2vw, 24px);
    /*filter: contrast(105%) brightness(105%);*/
    overflow: visible;
}

.hero-logo-noise {
    position: absolute;
    inset: -24px;
    pointer-events: none;
    mix-blend-mode: overlay;
    opacity: 0.08;
    background-image:
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 4px),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 4px);
    animation: hero-logo-flicker 2.4s linear infinite;
    z-index: 1;
}

.hero-logo {
    position: relative;
    line-height: 0;
    /*filter: contrast(130%) brightness(1.05);*/
    transform-origin: center;
    transform: rotate(var(--hero-rot, 0deg)) scale(var(--hero-scale, 1));
    will-change: transform;
    animation: hero-logo-swing 22s ease-in-out infinite, hero-logo-breathe 36s ease-in-out infinite;
    z-index: 2;
}

.hero-logo img {
    display: block;
    width: 100%;
    height: auto;
}

.hero-logo-base {
    position: relative;
    z-index: 2;
}

.hero-logo-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.hero-logo-layer-r {
    mix-blend-mode: screen;
    opacity: 0.28;
    /*filter: contrast(200%) saturate(150%);*/
    transform: translate(2px, -1px);
}

.hero-logo-layer-c {
    mix-blend-mode: screen;
    opacity: 0.24;
    /*filter: contrast(200%) saturate(150%);*/
    transform: translate(-2px, 2px);
}

.hero-logo-ghost {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
    opacity: 0;
    mix-blend-mode: screen;
    filter: blur(2px) brightness(1.2) contrast(1.2);
    transition: opacity 0.28s ease, transform 0.28s ease;
    will-change: transform, opacity;
    z-index: 1;
}

.hero-logo-flash {
    position: absolute;
    inset: -30%;
    pointer-events: none;
    mix-blend-mode: screen;
    opacity: 0;
    filter: blur(2px);
    transition: opacity 0.22s linear;
    z-index: 1;
}

.hero-logo-glow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
    opacity: 0;
    mix-blend-mode: screen;
    filter: blur(14px) brightness(4.2) saturate(130%);
    z-index: 4;
}

.hero p {
    max-width: 760px;
    margin: 0 auto 20px;
    color: rgba(255, 255, 255, 0.72);
}

.hero-actions {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: clamp(32px, 10vw, 96px);
    z-index: 2;
    display: flex;
    justify-content: center;
}

@supports (bottom: calc(62px + env(safe-area-inset-bottom))) {
    .hero-actions {
        bottom: calc(62px + env(safe-area-inset-bottom));
    }
}

.hero .cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 34px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.42px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: transform 0.35s cubic-bezier(.22, .61, .36, 1),
        box-shadow 0.35s cubic-bezier(.22, .61, .36, 1),
        background 0.35s ease,
        border-color 0.35s ease;
    overflow: hidden;
}

.hero .cta::before {
    content: '';
    position: absolute;
    inset: -150% -80%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.36) 40%, rgba(255, 255, 255, 0.95) 52%, rgba(255, 255, 255, 0.36) 64%, rgba(255, 255, 255, 0) 100%);
    background-size: 280% 100%;
    background-position: -200% center;
    transform: skewX(-14deg);
    mix-blend-mode: screen;
    opacity: 0;
    animation: hero-cta-shine 12s linear infinite;
    pointer-events: none;
}

.hero .cta::after {
    content: '';
    position: absolute;
    inset: -40% -60%;
    background: radial-gradient(160% 120% at 50% 50%, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0) 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.hero .cta:hover,
.hero .cta:focus {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.55);
    box-shadow: 0 26px 48px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.hero .cta:hover::after,
.hero .cta:focus::after {
    opacity: 0.45;
}



.hero .cta span {
    position: relative;
    z-index: 1;
    color: inherit;
    text-shadow: 0 0 0 rgba(255, 255, 255, 0);
    animation: hero-cta-glow 12s linear infinite;
}

.hero .cta span::before {
    content: '';
}

@media (max-width: 640px) {
    .hero .content {
        padding: clamp(96px, 28vh, 150px) var(--pad) clamp(150px, 32vh, 210px);
    }

    .hero-actions {
        bottom: clamp(24px, 12vw, 60px);
    }
}

#afisha {
    position: relative;
    overflow: hidden;
    background: #000;
    isolation: isolate;
    color: #111;
    padding-top: 0;
    padding-bottom: 50px;
}

#afisha .afisha-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 2.8s ease, transform 2.8s ease;
}

#afisha.is-revealed .afisha-bg {
    opacity: 1;
    transform: none;
}

.afisha-lava {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    filter: blur(24px) contrast(4.2);
    opacity: 0.9;
}

.afisha-container {
    position: relative;
    z-index: 1;
    padding: clamp(140px, 18vw, 220px) var(--pad) clamp(160px, 22vw, 220px);
    max-width: 1100px;
}

.afisha-heading {
    font-size: clamp(28px, 2.8vw, 40px);
    margin: 0 0 26px;
    letter-spacing: 0.02em;
    color: #111;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.35), 0 0 32px rgba(255, 255, 255, 0.2);
    position: relative;
    display: inline-block;
    z-index: 0;
    opacity: 0;
    transform: translateY(12px) scale(0.99);
    transition: transform 0.7s cubic-bezier(.2, .8, .2, 1), opacity 0.6s ease;
}

.afisha-heading::before,
.afisha-heading::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.afisha-heading::before {
    color: #fff;
    mix-blend-mode: difference;
    filter: blur(0.8px);
    opacity: 0.85;
    z-index: -1;
}

.afisha-heading::after {
    color: #000;
    mix-blend-mode: multiply;
    filter: blur(3px);
    opacity: 0.4;
    z-index: -2;
}

#afisha.is-revealed .afisha-heading {
    opacity: 1;
    transform: none;
}

.afisha-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2vw, 28px);
}

.afisha-card {
    display: grid;
    grid-template-rows: auto 1fr;
    border: 1px solid #cbcbcb;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transform: translateY(124px);
    opacity: 0;
    will-change: transform, opacity;
    transition: transform 1.6s cubic-bezier(.2, .8, .2, 1), opacity 2.6s ease, box-shadow 1.35s ease;
}

#afisha.is-revealed .afisha-card {
    transform: none;
    opacity: 1;
    transition-delay: calc(var(--afisha-index, 0) * 0.29s);
}

.afisha-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.afisha-card-link {
    display: block;
    position: relative;
    line-height: 0;
}

.afisha-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #f4f4f4;
    overflow: hidden;
}

.afisha-thumb-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
    filter: contrast(1.05) saturate(1.02);
    transition: transform 0.6s cubic-bezier(.2, .8, .2, 1), filter 0.4s ease;
}

.afisha-card:hover .afisha-thumb-video {
    transform: scale(1.1);
}

.afisha-card-body {
    padding: 16px 18px 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 12px;
}

.afisha-card-title {
    font-size: clamp(18px, 2vw, 22px);
    margin: 0 0 8px;
}

.afisha-card-title a {
    color: inherit;
    text-decoration: none;
}

.afisha-card-title a:hover {
    text-decoration: none;
}

.afisha-card-inner {
    opacity: 1;
    display: inline-block;
    width: 45%;
    transform: none;
    margin-right: 20px;
    margin-bottom: 20px;
}

.afisha-meta {
    font-size: 14px;
    color: #555;
    margin-bottom: 14px;
    line-height: 1.6;
}

.afisha-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    align-items: center;
    margin-top: auto;
}

.afisha-btn-buy {
    --pad-y: 10px;
    --pad-x: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5ch;
    padding: var(--pad-y) var(--pad-x);
    border-radius: 999px;
    font-weight: 600;
    background: linear-gradient(90deg, var(--buy-grad-a, #ff3b3b), var(--buy-grad-b, #a80505));
    color: #fff;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(255, 59, 59, 0.25);
    transition: transform 0.2s ease, box-shadow 0.3s ease, filter 0.3s ease;
    padding-bottom: 14px;
}

.afisha-btn-buy::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: radial-gradient(120px 40px at -20% 50%, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 70%);
    transform: translateX(-120%);
    transition: transform 0.7s ease;
    pointer-events: none;
}

.afisha-btn-buy:hover {
    transform: translateY(-1px);
    filter: brightness(1.02);
    box-shadow: 0 10px 24px rgba(255, 59, 59, 0.35);
}

.afisha-btn-buy:hover::after {
    transform: translateX(120%);
}

.afisha-details {
    font-weight: 500;
    color: var(--afisha-accent, #111);
    text-decoration: none;
    position: relative;
}

.afisha-details::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0.3);
    transform-origin: left;
    opacity: 0.5;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.afisha-details:hover::after {
    transform: scaleX(1);
    opacity: 0.8;
}

#afisha a:focus-visible {
    outline: 2px solid #000;
    outline-offset: 3px;
    border-radius: 6px;
}

@media (max-width: 980px) {
    .afisha-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .afisha-grid {
        grid-template-columns: 1fr;
    }

    .afisha-card-inner {
    width: 100%;
}


}

@media (prefers-reduced-motion: reduce) {
    #afisha .afisha-bg {
        opacity: 1 !important;
        transform: none !important;
    }

    #afisha .afisha-heading,
    #afisha .afisha-card {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .afisha-thumb-video {
        transition: none !important;
    }
}

#press {
    --press-fade: 720ms;
    --press-visible: 4360ms;
    --press-pause: 0ms;
    --press-mask-delay: 10ms;
    --press-mask-dur: 1400ms;
    --press-mask-hard: 10%;
    --press-speed-factor: 8;
    --press-move: calc(var(--press-fade) + var(--press-fade) + var(--press-visible));
    --press-move-slow: calc(var(--press-move) * var(--press-speed-factor));
    position: relative;
    overflow: hidden;
    background: #0a0b0e;
    color: #e9e9ec;
    isolation: isolate;
}

#press::before {
    content: '';
    position: absolute;
    inset: -10%;
    background:
        radial-gradient(120% 60% at 50% 0%, transparent 0 60%, rgba(0, 0, 0, 0.35) 100%),
        radial-gradient(80% 60% at 50% 100%, rgba(0, 0, 0, 0.5), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

#press .press-container {
    position: relative;
    z-index: 1;
    padding: clamp(72px, 12vw, 140px) var(--pad) clamp(96px, 14vw, 160px);
    max-width: var(--maxw);
}

#press .press-heading {
    font-size: clamp(28px, 2.8vw, 40px);
    margin: 0 0 26px;
    letter-spacing: 0.02em;
    color: #e9e9ec;

    opacity: 0;
    transform: translateY(12px) scale(0.99);
    transition: transform 0.7s cubic-bezier(.2, .8, .2, 1), opacity 0.6s ease;
}

#press.is-revealed .press-heading {
    opacity: 1;
    transform: none;
}

.press-quotes {
    position: relative;
    min-height: clamp(240px, 40vh, 320px);
    display: grid;
    align-items: center;
    justify-items: center;
}

.press-quote-wrap {
    position: relative;
    display: inline-block;
    max-width: min(100%, 1000px);
}

.press-quote-text {
    display: inline-block;
    white-space: nowrap;
    font-weight: 600;
    font-size: clamp(18px, 1.6vw, 26px);
    line-height: 1.18;
    letter-spacing: 0.01em;
    opacity: 0;
    filter: blur(6px);
    transform: translateX(-4vw);
    -webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) var(--press-mask-hard), rgba(0, 0, 0, 1) 100%) 0 -150% / 100% 200% no-repeat;
    mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) var(--press-mask-hard), rgba(0, 0, 0, 1) 100%) 0 -150% / 100% 200% no-repeat;
    mask-mode: alpha;
    will-change: -webkit-mask-position, mask-position, transform, opacity;
}

.press-quote-src {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    white-space: nowrap;
    font-weight: 500;
    font-size: clamp(14px, 1.4vw, 18px);
    color: #b9bac2;
    opacity: 0;
    filter: blur(6px);
    transform: translateX(0);
    -webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) var(--press-mask-hard), rgba(0, 0, 0, 1) 100%) 0 -150% / 100% 200% no-repeat;
    mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) var(--press-mask-hard), rgba(0, 0, 0, 1) 100%) 0 -150% / 100% 200% no-repeat;
    mask-mode: alpha;
    will-change: -webkit-mask-position, mask-position, transform, opacity;
}

.press-run .press-quote-text {
    animation: press-move-text var(--press-move-slow) linear forwards,
        press-fade var(--press-move) linear forwards,
        press-mask-down var(--press-mask-dur) linear forwards var(--press-mask-delay);
}

.press-run .press-quote-src {
    animation: press-move-src var(--press-move-slow) linear forwards calc(var(--press-fade) - 320ms),
        press-fade var(--press-move) linear forwards calc(var(--press-fade) - 320ms),
        press-mask-down var(--press-mask-dur) linear forwards calc(var(--press-fade) - 320ms + var(--press-mask-delay));
}

.press-dots {
    position: relative;
    display: flex;
    gap: 12px;
    margin-top: 18px;
    justify-content: flex-end;
    align-items: center;
}

.press-dots-goo {
    filter: url(#pressGooey);
}

.press-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #c9c9c9;
    padding: 0;
    cursor: pointer;
    outline: none;
    transition: transform 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
    flex: 0 0 auto;
    aspect-ratio: 1 / 1;
}

.press-dot:hover {
    transform: scale(1.1);
}

.press-dot:focus-visible {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.press-dot.is-active {
    background: #fff;
    transform: scale(1.12);
}

@media (max-width: 640px) {
    .press-dots-goo {
        filter: none;
    }
}

.press-pointer {
    position: absolute;
    top: 50%;
    width: 18px;
    height: 18px;
    margin-top: -9px;
    border-radius: 50%;
    background: #c90909;
    box-shadow: 0 0 18px 4px rgba(255, 43, 43, 0.28);
    transition: left 0.6s cubic-bezier(.45, .05, .55, .95), transform 0.6s ease, filter 0.6s ease;
    will-change: left, transform;
}

.press-pointer.is-melt {
    transform: scale(0.65);
    filter: blur(0.4px);
}

.press-pointer.is-settle {
    transform: scale(1);
    filter: blur(0);
}

@media (max-width: 640px) {
    .press-quote-wrap {
        text-align: center;
    }

    .press-quote-text {
        font-size: 22px;
        white-space: normal;
        line-height: 1.4;
    }

    .press-quote-src {
        position: static;
        display: block;
        margin-top: 14px;
        font-size: 22px;
        text-align: center;
    }

    #press .press-heading {
        margin-bottom: 34px;
    }

    .press-quotes {
        margin-top: 100px;
    }
}

@media (max-width: 480px) {
    .press-dot {
        width: 14px;
        height: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .press-run .press-quote-text,
    .press-run .press-quote-src {
        animation: none !important;
    }

    .press-quote-text,
    .press-quote-src {
        opacity: 1 !important;
        filter: none !important;
        transform: none !important;
    }
}

#shows {
    position: relative;
    background: #000;
    color: #fff;
    padding: clamp(28px, 5vw, 64px) 0 clamp(48px, 7vw, 90px);
}

.shows-heading-wrap {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--pad);
}

.shows-heading {
    margin: 0 0 clamp(16px, 2.6vw, 24px);
    font-size: clamp(28px, 3.2vw, 48px);
    letter-spacing: 0.02em;
}

.shows-intro {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 400;
    opacity: 1;
    transition: opacity 600ms ease 200ms;
}

.shows-intro.shows-hide {
    opacity: 0;
}

.shows-curtains {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.shows-curtain {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    background: #000;
}

.shows-curtain-left {
    left: 0;
}

.shows-curtain-right {
    right: 0;
}

.shows-intro.shows-play .shows-curtain-left {
    animation: shows-curtain-left 1100ms cubic-bezier(.2, .6, .2, 1) forwards;
}

.shows-intro.shows-play .shows-curtain-right {
    animation: shows-curtain-right 1100ms cubic-bezier(.2, .6, .2, 1) forwards;
}

.shows-scope-wrap {
    position: relative;
    height: 420vh;
}

.shows-heading-wrap {
    position: relative;
    top: auto;
    z-index: 2;
    min-height: var(--shows-heading-height, 72px);
    display: flex;
    align-items: flex-end;
    padding-bottom: 18px;
}

.shows-heading-wrap.shows-heading-released {
    background: transparent;
    backdrop-filter: none;
    border-radius: 0;
    padding-bottom: 8px;
}

.shows-heading {
    margin: 0;
}

.shows-scope {
    position: sticky;
    top: var(--shows-stack-top, 6vh);
    height: 88vh;
    width: 100%;
    margin: 0;
    overflow: hidden;
    background: #000;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.shows-strip {
    position: absolute;
    inset: 0;
    display: flex;
    height: 100%;
    will-change: transform;
}

.shows-strip img {
    --shows-filter-duration: 800ms;
    height: 100%;
    width: auto;
    flex: 0 0 auto;
    object-fit: cover;
    filter: grayscale(100%) saturate(1) brightness(1) blur(4px);
    opacity: 0.94;
    transform-origin: center;
    transition: filter var(--shows-filter-duration) ease, transform 900ms cubic-bezier(.22, .61, .36, 1);
}

.shows-strip img.shows-focus {
    --shows-filter-duration: 2000ms;
    animation: none;
    filter: grayscale(0%) saturate(1) brightness(1.05) blur(0);
}

.shows-vignette {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(120% 80% at 50% 30%, transparent 55%, rgba(0, 0, 0, 0.65) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 18%, transparent 82%, rgba(0, 0, 0, 0.45));
}

.shows-hotspot {
    position: absolute;
    bottom: var(--shows-bottom, 16%);
    left: var(--shows-left, 50%);
    transform: translateX(-50%);
    display: block;
    text-align: center;
    pointer-events: auto;
    cursor: pointer;
}

.shows-hotspots-mobile {
    display: none;
}

.shows-hotspot-mobile-item {
    background: none;
    border: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.shows-hotspot-mobile-item:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.75);
    outline-offset: 4px;
}

.shows-hotspot-dot {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    display: block;
    background: #fff;
    border: 2px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.18), 0 0 16px rgba(255, 255, 255, 0.3);
    margin: 0 auto 8px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.shows-hotspot-label {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    width: 155px;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;
    text-align: center;
    line-height: 1.2;
}

.shows-hotspots-mobile .shows-hotspot-label {
    top:50px
}

.shows-hotspot.active .shows-hotspot-dot {
    background: var(--buy-grad-a);
    box-shadow: 0 0 0 8px rgba(225, 6, 0, 0.18), 0 0 28px rgba(225, 6, 0, 0.45);
    transform: scale(1.75);
}

.shows-hotspot:focus-visible .shows-hotspot-dot {
    outline: 2px solid rgba(255, 255, 255, 0.75);
    outline-offset: 3px;
}

.shows-infobar {
    position: sticky;
    top: calc(100vh - 100px);
    width: min(62%, 640px);
    margin: 28px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 12px;
    pointer-events: none;
}

.shows-info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    padding: 12px 14px;
    backdrop-filter: blur(4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    width: 100%;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: auto;
    color: inherit;
    text-decoration: none;
}

.shows-info-card.shows-visible {
    opacity: 1;
    transform: none;
}

.shows-info-thumb {
    width: 72px;
    height: 54px;
    border-radius: 8px;
    overflow: hidden;
    background: #111;
    flex: 0 0 auto;
}

.shows-info-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shows-info-text h3 {
    margin: 0;
    font-size: 16px;
    letter-spacing: 0.02em;
}

.shows-info-text p {
    margin: 2px 0 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.82);
}

.shows-info-arrow {
    margin-left: auto;
    font-size: 18px;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.shows-info-card:hover .shows-info-arrow {
    opacity: 0.9;
    transform: translateX(0);
}

.shows-info-card[aria-disabled="true"] {
    cursor: default;
}

@media (max-width: 900px) {
    .shows-scope-wrap {
        height: 280vh;
    }

    .shows-scope {
        top: 8vh;
        height: 78vh;
    }
}

@media (max-width: 640px) {
    .shows-heading-wrap {
        position: sticky;
        top: var(--shows-heading-offset, calc(var(--header-h, 64px) + 12px));
        z-index: 6;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0));
        backdrop-filter: blur(6px);
        border-radius: 0 0 24px 24px;
        padding-bottom: 18px;
        transition: background 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease;
    }

    .shows-heading-wrap.shows-heading-released {
        position: relative;
        top: auto;
        z-index: 2;
        background: transparent;
        backdrop-filter: none;
        border-radius: 0;
        padding-bottom: 8px;
    }

    .shows-scope-wrap {
        height: 170vh;
    }

    .shows-scope {
        top: var(--shows-stack-top, 4vh);
        height: 56vh;
    }

    .shows-hotspot {
        bottom: var(--shows-bottom, 18%);
        max-width: 28vw;
    }

    .shows-scope>.shows-hotspot {
        display: none;
    }

    .shows-hotspots-mobile {
        display: block;
        padding: 24px var(--pad) 18px;
        margin: 16px auto 0;
        position: sticky;
        top: calc(var(--shows-mobile-stick-top, 6vh) + var(--shows-mobile-stick-height, 68vh));
        z-index: 3;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.35) 40%, rgba(0, 0, 0, 0));
        backdrop-filter: blur(6px);
        min-height: var(--shows-mobile-line-height, 120px);
        overflow: hidden;
    }

    .shows-hotspots-mobile .shows-hotspot {
        position: absolute;
        top: 22px;
        left: 50%;
        transform: translateX(-50%);
        max-width: 255px;
        padding: 0;
        display: block;
    }

    .shows-hotspot-mobile-item {
        max-width: 255px;
        text-align: center;
    }

    .shows-hotspot-dot {
        width: 14px;
        height: 14px;
        border-radius: 999px;
        display: block;
        background: #fff;
        border: 2px solid rgba(255, 255, 255, 0.75);
        box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.18), 0 0 16px rgba(255, 255, 255, 0.3);
        margin-bottom: 10px;
        z-index: 2;
    }

    .shows-hotspot-label {
        font-size: 11px;
        line-height: 1.2;
        padding: 2px 6px;
        border-radius: 12px;
        background: rgba(0, 0, 0, 0.45);
        display: inline-block;
    }

    .shows-infobar {
        position: sticky;
        top: calc(var(--shows-mobile-stick-top, 6vh) + var(--shows-mobile-stick-height, 68vh) + var(--shows-mobile-line-height, 120px));
        width: calc(100% - 2 * var(--pad));
        margin: 24px auto 0;
        padding: 0 var(--pad);
    }
}

@media (max-width: 720px) {
    .shows-infobar {
        width: 80%;
    }

    .shows-info-thumb {
        width: 60px;
        height: 46px;
    }
}

@media (max-width: 480px) {
    .shows-infobar {
        width: 92%;
    }

    .shows-info-thumb {
        width: 56px;
        height: 42px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .shows-intro,
    .shows-curtain,
    .shows-strip img,
    .shows-hotspot,
    .shows-info-card {
        animation: none !important;
        transition: none !important;
    }
}

.cta {
    display: inline-block;
    padding: 12px 20px;
    border: 2px solid var(--line-strong);
    border-radius: 10px;
    background: var(--bg);
    font-weight: 700;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
}

@media (max-width: 980px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px) {
    .cards {
        grid-template-columns: 1fr;
    }
}

.card {
    border: 2px dashed var(--line);
    border-radius: var(--radius);
    background: var(--bg);
}

.thumb {
    aspect-ratio: 4 / 3;
    background: #f6f6f6;
    border-bottom: 1px dashed var(--line);
    display: grid;
    place-items: center;
    color: #999;
    font-size: 14px;
}

.card-body {
    padding: 14px;
}

.card h3 {
    margin: 4px 0 6px;
}

.meta {
    color: #555;
    font-size: 14px;
    margin-bottom: 10px;
}

.btn {
    display: inline-block;
    padding: 8px 12px;
    border: 2px solid var(--line-strong);
    border-radius: 8px;
    background: var(--bg);
    font-weight: 700;
}

.quotes {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.quote-line {
    min-height: 2.6em;
    font-size: 18px;
}

.quote-text,
.quote-src {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.quote-src {
    display: block;
    margin-top: 6px;
    color: #777;
    transform: translateX(20px);
}

.quote-show .quote-text {
    opacity: 1;
    transform: translateX(0);
}

.quote-show .quote-src {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.18s;
}

.reviews-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 20px;
    color: #f5f5f5;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    font-size: 13px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    backdrop-filter: blur(4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    transition: border-color 0.25s ease, background 0.25s ease,
        color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.reviews-link::after {
    content: '→';
    font-size: 16px;
    opacity: 0;
    transform: translateX(-6px);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.reviews-link:hover,
.reviews-link:focus-visible {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    transform: translateY(-1px);
}

.reviews-link:hover::after,
.reviews-link:focus-visible::after {
    transform: translateX(0);
    opacity: 1;
}

.video-section {
    position: relative;
    background: radial-gradient(120% 140% at 50% 0%, rgba(255, 255, 255, 0.04), rgba(6, 6, 10, 0.92));
    color: #f6f6f6;
    padding: clamp(72px, 12vw, 128px) 0 clamp(96px, 14vw, 140px);
    overflow: hidden;
}

.video-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(60% 120% at 20% 20%, rgba(198, 31, 31, 0.24), transparent 65%),
        radial-gradient(45% 100% at 80% 10%, rgba(78, 108, 255, 0.22), transparent 70%);
    opacity: 0.75;
    filter: blur(60px);
}

.video-section .container {
    position: relative;
    z-index: 1;
}

.video-header {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: clamp(14px, 4vw, 28px);
    margin-bottom: clamp(28px, 5vw, 48px);
}

.video-title {
    margin: 0;
    font-size: clamp(28px, 2.8vw, 42px);
    letter-spacing: 0.02em;
}

.video-footer {
    margin-top: clamp(24px, 4vw, 40px);
    text-align: center;
}

.video-all-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 22px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    color: inherit;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
    margin: 0 auto;
}

.video-all-link:hover,
.video-all-link:focus-visible {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.45);
    transform: translateY(-1px);
}

.video-carousel {
    position: relative;
    width: min(100%, 1100px);
    margin: 0 auto;
}

.video-viewport {
    position: relative;
    overflow: visible;
    touch-action: pan-y;
    --video-peek: clamp(24px, 8vw, 120px);
}

.video-track {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2.5vw, 24px);
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

.video-slide {
    position: relative;
    flex: 0 0 calc(100% - var(--video-peek) * 2);
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    overflow: hidden;
    background: #060608;
    transform-origin: center;
    transition: transform 0.45s cubic-bezier(.2, .8, .2, 1), opacity 0.45s ease;
    opacity: 0.85;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

.video-slide.is-hidden::before,
.video-slide.is-hidden::after {
    opacity: 0.25;
}

.video-slide.is-side::before,
.video-slide.is-side::after {
    opacity: 0.6;
}

.video-slide.is-active {
    opacity: 1;
    transform: scale(1.03);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.06) inset,
        0 0 60px rgba(228, 29, 29, 0.22) inset,
        0 28px 120px rgba(255, 255, 255, 0.35);
}

.video-slide.is-side {
    transform: scale(0.88);
}

.video-slide.is-hidden {
    opacity: 0.4;
    pointer-events: none;
}

.video-frame {
    margin: 0;
    position: relative;
    width: 100%;
    height: 100%;
}

.video-frame::after {
    content: '';
    position: absolute;
    inset: -14%;
    border-radius: inherit;
    background: radial-gradient(ellipse at 50% 60%, rgba(255, 255, 255, 0.3), transparent 60%);
    opacity: 0;
    transition: opacity 0.6s ease;
    mix-blend-mode: screen;
    pointer-events: none;
}

.video-slide.is-side .video-frame::after {
    opacity: 0.5;
}

.video-slide.is-active .video-frame::after {
    opacity: 0.9;
}

.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


.video-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(44px, 6vw, 64px);
    height: clamp(44px, 6vw, 64px);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(12, 12, 16, 0.6);
    backdrop-filter: blur(6px);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
    z-index: 2;
}

.video-nav svg {
    width: 55%;
    height: 55%;
    display: block;
}

.video-nav:hover,
.video-nav:focus-visible {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.55);
}

.video-nav:active {
    transform: translateY(-50%) scale(0.97);
}

.video-nav[disabled] {
    opacity: 0.4;
    cursor: not-allowed;
}

.video-nav-prev {
    left: clamp(-12px, -3vw, -32px);
}

.video-nav-next {
    right: clamp(-12px, -3vw, -32px);
}

@media (max-width: 820px) {
    .video-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .video-all-link {
        align-self: flex-start;
    }

    .video-nav-prev {
        left: 12px;
    }

    .video-nav-next {
        right: 12px;
    }
}

@media (max-width: 560px) {
    .video-section {
        padding: clamp(56px, 18vw, 96px) 0 clamp(72px, 20vw, 110px);
    }

    .video-viewport {
        --video-peek: clamp(12px, 10vw, 48px);
    }

    .video-slide {
        border-radius: 14px;
    }

    .video-nav {
        width: 44px;
        height: 44px;
        backdrop-filter: blur(3px);
    }
}

@media (prefers-reduced-motion: reduce) {

    .video-slide,
    .video-track {
        transition: none !important;
    }
}

.awards {
    --bg: #040404;
    --fg: #f6f6f6;
    --muted: #8d8d8d;
    --item-size: 110px;
    --item-gap: clamp(32px, 5vw, 60px);
    --card-w: 200px;
    --falloff: 170;
    --anim: 480ms cubic-bezier(.2, .8, .2, 1);
    --plateau: 70px;
    --label-h: 44px;
    --plaque-extra: 36px;
    --color-fade: 900ms cubic-bezier(.22, .61, .36, 1);
    --glow-fade: 900ms cubic-bezier(.22, .61, .36, 1);
    --mask-delay: 450ms;
    --timeline-thumb: 14px;
    position: relative;
    overflow: hidden;
    padding: clamp(56px, 12vw, 96px) clamp(16px, 6vw, 48px) clamp(72px, 12vw, 120px);
    background:
        radial-gradient(120% 80% at 50% 0%, rgba(255, 255, 255, 0.1), transparent 60%),
        #020202;
    color: var(--fg);
}

.awards-title {
    margin: 0 0 24px;
    font-size: clamp(28px, 2.8vw, 40px);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #e9e9ec;
    opacity: 0;
    transform: translateY(12px) scale(0.99);
    transition: transform 0.7s cubic-bezier(.2, .8, .2, 1), opacity 0.6s ease;
}

.awards.is-revealed .awards-title {
    opacity: 1;
    transform: none;
}

.awards .dock-wrap {
    position: relative;
    overflow: visible;
    padding-bottom: 24px;
}

.awards .dock {
    position: relative;
    overflow: hidden;
    padding: 48px var(--item-gap);
    padding-top: 95px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.awards .dock::before,
.awards .dock::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: clamp(20px, 5vw, 60px);
    pointer-events: none;
    z-index: 2;
}

.awards .dock::before {
    left: 0;
    background: linear-gradient(90deg, rgba(2, 2, 2, 1) 0%, rgba(2, 2, 2, 0.85) 35%, rgba(2, 2, 2, 0) 100%);
}

.awards .dock::after {
    right: 0;
    background: linear-gradient(270deg, rgba(2, 2, 2, 1) 0%, rgba(2, 2, 2, 0.85) 35%, rgba(2, 2, 2, 0) 100%);
}

.awards .dock::-webkit-scrollbar {
    display: none;
}

.awards .belt {
    display: flex;
    gap: var(--item-gap);
    will-change: transform;
    transform: translate3d(0, 0, 0);
    align-items: center;
    justify-content: flex-start;
}

.awards .logo-card {
    width: var(--card-w);
    flex: 0 0 var(--card-w);
    display: block;
    text-align: center;
    transform-origin: 50% 100%;
    transform: translateZ(0);
    border-radius: 14px;
    --hot: 0;
    transition: transform var(--anim);
}

.awards .plaque {
    padding: 14px 12px calc(12px + var(--plaque-extra));
    border-radius: 14px;
    background:
        radial-gradient(120% 100% at 50% -20%, rgba(255, 255, 255, .18), rgba(255, 255, 255, 0) 60%),
        linear-gradient(180deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .09));
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .25),
        inset 0 -1px 0 rgba(0, 0, 0, .35),
        0 10px 24px rgba(0, 0, 0, .45);
    backdrop-filter: blur(2px);
    display: grid;
    grid-template-rows: var(--item-size) auto;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.awards .logo-card.active .plaque {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .42),
        inset 0 -1px 0 rgba(0, 0, 0, .60),
        0 30px 66px rgba(0, 0, 0, .70),
        0 0 0 1px rgba(255, 255, 255, .14),
        0 0 48px rgba(255, 255, 255, .36),
        0 0 10px 3px rgba(255, 255, 255, .16);
    transition: box-shadow var(--anim);
}

.awards .plaque::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    pointer-events: none;
    background:
        radial-gradient(120% 120% at 50% 0%, rgba(255, 255, 255, .25), transparent 60%),
        radial-gradient(80% 100% at 50% 100%, rgba(255, 255, 255, .18), transparent 60%);
    opacity: calc(var(--hot) * 0.9);
    transition: opacity 300ms linear;
    mix-blend-mode: screen;
}

.awards .plaque::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    pointer-events: none;
    background:
        radial-gradient(140% 140% at 50% 50%, rgba(255, 255, 255, .15), transparent 65%);
    opacity: 0;
    transition: opacity var(--glow-fade);
    mix-blend-mode: screen;
}

.awards .logo-card.active .plaque::after {
    opacity: .9;
}

.awards .logo-frame {
    width: 100%;
    height: var(--item-size);
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .05);
}

.awards .logo-bg {
    width: 80%;
    height: 80%;
    display: block;
    background-image: var(--logo);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    image-rendering: auto;
}

.awards .logo-frame.is-missing {
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .06);
}

.awards .logo-frame.is-missing .logo {
    display: none;
}

.awards .name {
    font-size: 12px;
    line-height: 1.25;
    letter-spacing: .02em;
    color: var(--muted);
    max-width: var(--card-w);
    margin: 8px auto 0;
    text-align: center;
    text-transform: none;
    position: relative;
    padding: 0;
    overflow: visible;
    display: block;
    transition: color var(--color-fade);
}

.awards .name .label {
    display: block;
    position: relative;
    z-index: 1;
    padding: 0 8px;
}

.awards .name .label.glow {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
    padding: 0 8px;
    color: rgba(255, 255, 255, .95);
    text-shadow: 0 0 6px rgba(255, 255, 255, .9), 0 0 14px rgba(255, 255, 255, .9);
    -webkit-mask: linear-gradient(90deg, transparent 35%, #fff 50%, transparent 65%) -120% 0 / 200% 100% no-repeat;
    mask: linear-gradient(90deg, transparent 35%, #fff 50%, transparent 65%) -120% 0 / 200% 100% no-repeat;
    opacity: 0;
    transition: opacity var(--glow-fade);
    will-change: -webkit-mask-position, mask-position, opacity;
    transform: translateZ(0);
}

.awards .logo-card.active .name {
    color: var(--fg);
    filter: brightness(1.05);
}

.awards .logo-card.active .name .label.glow {
    opacity: 1;
    animation: maskSweepLR 6s linear 1 both reverse;
    animation-delay: var(--mask-delay);
    transition-delay: var(--mask-delay);
}

@keyframes maskSweepLR {
    to {
        -webkit-mask-position: 160% 0;
        mask-position: 160% 0;
    }
}

.awards .timeline {
    margin: 28px var(--item-gap) 0;
}

.awards .timeline .track {
    position: relative;
    height: 2px;
    background: rgba(255, 255, 255, .25);
    border-radius: 999px;
    margin: 0;
    overflow: visible;
    touch-action: none;
}

.awards .timeline .thumb {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    width: var(--timeline-thumb);
    height: var(--timeline-thumb);
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .45);
    cursor: pointer;
    transition: transform var(--anim);
    overflow: visible;
    z-index: 2;
    touch-action: none;
}

.awards .timeline .thumb:hover {
    transform: translate(-50%, -50%) scale(1.08);
}

.awards .burst {
    position: absolute;
    inset: -6px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .25);
    animation: awards-burst 2.8s ease-in-out infinite;
}

.awards .burst.b2 {
    animation-delay: 0.4s;
}

.awards .burst.b3 {
    animation-delay: 0.8s;
}

@keyframes awards-burst {
    0% {
        opacity: 0;
        transform: scale(0.4);
    }

    35% {
        opacity: 0.45;
    }

    100% {
        opacity: 0;
        transform: scale(1.6);
    }
}

.awards .fade-edge {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .08), transparent);
    margin: 20px var(--item-gap) 0;
}

.awards-cta {
    display: flex;
    justify-content: center;
    margin: 32px auto 0;
}

.awards-cta .reviews-link {
    margin-top: 0;
}

.awards-puzzle {
    background: #060606;
    color: #f6f6f6;
    padding: clamp(56px, 12vw, 110px) 0;
}

.awards-puzzle .container {
    max-width: 1040px;
}

.awards-puzzle-heading {
    margin: 0 0 22px;
    font-size: clamp(28px, 2.8vw, 40px);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #e9e9ec;
    opacity: 1;
    transform: none;
    transition: none;
}

.awards-puzzle-box {
    position: relative;
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
    margin-top: clamp(8px, 2vw, 22px);
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    background: #0b0b0e;
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.awards-puzzle-layer {
    position: absolute;
    inset: 12px;
}

.awards-puzzle-tile {
    position: absolute;
    box-sizing: border-box;
    background: #2b2c32;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition:
        top 0.26s cubic-bezier(.2, .8, .2, 1),
        left 0.26s cubic-bezier(.2, .8, .2, 1),
        box-shadow 0.18s ease;
    font-size: 11px;
    line-height: 1.35;
    color: #f5f5f5;
    touch-action: manipulation;
}

.awards-puzzle-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 60%);
    opacity: 0.9;
    mix-blend-mode: screen;
    pointer-events: none;
}

.awards-puzzle-tile:hover,
.awards-puzzle-tile:focus-visible {
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.62);
}

.awards-puzzle-festival {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.82;
    margin-bottom: 4px;
}

.awards-puzzle-award {
    font-weight: 600;
}

.awards-puzzle-country {
    font-size: 10px;
    opacity: 0.72;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.awards-puzzle-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 16px;
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease;
}

.awards-puzzle-modal.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.awards-puzzle-modal__content {
    width: 100%;
    max-width: 360px;
    position: relative;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
    background: #2b2c32;
    color: #f5f5f5;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 12px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.6);
    font-size: 11px;
    line-height: 1.3;
    overflow: hidden;
}

.awards-puzzle-modal__body {
    height: 100%;
}

.awards-puzzle-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    background: rgba(0, 0, 0, 0.35);
    color: #f5f5f5;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
    z-index: 1;
}

.awards-puzzle-close:hover,
.awards-puzzle-close:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

.awards-puzzle-modal__content::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: transparent;
    pointer-events: none;
}

.awards-puzzle-modal__content::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--awards-modal-bg, none) center/cover no-repeat;
    opacity: 0.32;
    pointer-events: none;
}

.awards-puzzle-modal .awards-puzzle-festival {
    font-size: 32px;
    letter-spacing: 0.09em;
    opacity: 0.8;
    margin-bottom: 4px;
}

.awards-puzzle-modal .awards-puzzle-award {
    font-size: 24px;
    font-weight: 600;
}

.awards-puzzle-modal .awards-puzzle-country {
    font-size: 24px;
    letter-spacing: 0.08em;
    opacity: 0.72;
    margin-top: 6px;
    text-transform: uppercase;
}

@media (max-width: 820px) {
    .awards-puzzle {
        padding: clamp(42px, 10vw, 82px) 0;
    }
}

@media (max-width: 600px) {
    .awards-puzzle-box {
        border-radius: 18px;
    }

    .awards-puzzle-box .awards-puzzle-award {
        display: none;
    }

    .awards-puzzle-tile {
        font-size: 9px;
        padding: 8px;
    }

    .awards-puzzle-festival {
        font-size: 8px;
    }

    .awards-puzzle-country {
        font-size: 6px;
    }
}

.inner-page {
    background: #f5f5f5;
    padding-top: var(--header-h);
}

.inner-page.subnav-open {
    padding-top: var(--header-h);
}

.inner-page.inner-full {
    padding-top: var(--header-h);
}

.inner-main-full {
    padding-top: clamp(48px, 10vw, 90px);
}

.inner-content-full {
    max-width: min(1200px, 92vw);
    background: #fff;
    border-radius: 32px;
    padding: clamp(32px, 6vw, 16px);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.08);
}

.inner-article-full {
    width: 100%;
    max-width: 100% !important;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
}

.inner-page .site-header {
    background: rgba(0, 0, 0, 0.94);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.45);
    color: #f5f5f5;
}

.inner-layout {
    display: flex;
    gap: clamp(24px, 5vw, 48px);
    align-items: flex-start;
    position: relative;
}

.section-subnav {
    width: clamp(231px, 25vw, 390px);
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.section-subnav-panel-placeholder {
    display: none;
}

.inner-afisha-placeholder {
    display: none;
}

.show-ticket-card-placeholder {
    display: none;
}

.section-subnav-panel {
    background: #0b0b0b;
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.32);
}

.section-subnav-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    margin-bottom: 16px;
}

.section-subnav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.section-subnav-list li a {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.section-subnav-sublist {
    list-style: none;
    margin: 8px 0 0 0;
    padding: 0 0 0 14px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.section-subnav-sublist li a {
    text-transform: none;
    letter-spacing: 0.02em;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
}

.section-subnav-sublist li a:hover,
.section-subnav-sublist li a:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.section-subnav-sublist li.is-current a {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #fff;
    font-weight: 600;
}

.section-subnav-list li.is-active a {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}

.section-subnav-list li a:hover,
.section-subnav-list li a:focus-visible {
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.inner-afisha {
    margin-top: 32px;
    padding: 20px 18px;
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: #111;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.09);
}

.inner-afisha h2 {
    margin: 0;
    font-size: 14px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #999;
}

.inner-afisha ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.inner-afisha li {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.inner-afisha li::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    border-left: 4px solid rgba(0, 0, 0, 0.25);
    pointer-events: none;
}

.inner-afisha-title {
    font-size: 13px;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: #111;
}

.inner-afisha-meta {
    font-size: 12px;
    color: rgba(17, 17, 17, 0.65);
    line-height: 1.5;
}

.inner-afisha li a {
    align-self: flex-start;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background-color: #a80505;
    margin-top: 2px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.inner-afisha li a:hover,
.inner-afisha li a:focus-visible {
    border-color: rgba(0, 0, 0, 0);
    background: #d10606;
}

.page-show .inner-content {
    align-items: center;
}

.page-show .show-hero {
    margin: 0 auto;
    transform: translateY(40px);
    border-radius: 28px 28px 0 0;
}

.page-show .show-hero-meta {
    transform: translateY(-20px);
}

.page-show .show-hero-meta h1 {
    margin: 0;
    font-size: clamp(28px, 5vw, 44px);
    letter-spacing: 0.04em;
    font-weight: 700;
}

.page-show .inner-article {
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.show-ticket-card {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    color: #fff;
    width: min(260px, 45%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
}

.show-ticket-card h2 {
    margin: 0;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.show-ticket-info strong {
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.show-ticket-info span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.show-ticket-btn {
    width: 100%;
    justify-content: center;
}

.photo-gallery {
    width: 100%;
    max-width: 760px;
    margin: 0 auto 0;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.photo-gallery-header h2 {
    margin: 0;
    font-size: 20px;
}

.photo-gallery-header p {
    margin: 6px 0 0;
    color: #666;
    font-size: 14px;
}

.photo-gallery-main {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
    background-color: #000;
}

.photo-gallery-loader {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
    color: #f5f5f5;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.photo-gallery-main.is-loading .photo-gallery-loader {
    opacity: 1;
}

.photo-gallery-main-img {
    display: block;
    width: 100%;
    height: clamp(220px, 38vw, 420px);
    object-fit: contain;
    transition: opacity 0.35s ease;
    opacity: 1;
}

.photo-gallery-main-img.is-fading {
    opacity: 0;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.gallery-nav svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.gallery-nav:hover,
.gallery-nav:focus-visible {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.05);
}

.gallery-nav-prev {
    left: 16px;
}

.gallery-nav-next {
    right: 16px;
}

.photo-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 10px;
}

.gallery-thumb {
    border: 2px solid transparent;
    padding: 0;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    background: none;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.gallery-thumb img {
    display: block;
    width: 100%;
    height: 68px;
    object-fit: cover;
}

.gallery-thumb.is-active {
    border-color: #000;
    transform: translateY(-2px);
}

.gallery-thumb:focus-visible {
    border-color: #111;
}

.inner-content {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.inner-main {
    background: #f5f5f5;
    padding: clamp(48px, 10vw, 80px) 0;
    position: relative;
}

.breadcrumbs {
    font-size: 13px;
    color: #b3b3b3;
    width: min(100%, 760px);
    padding: 0 clamp(28px, 5vw, 48px);
    padding-left: 0;
}

.breadcrumbs ol {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.breadcrumbs li::after {
    content: '\25CF';
    margin-left: 8px;
    color: #b3b3b3;
}

.breadcrumbs li:last-child::after {
    display: none;
}

.breadcrumbs a {
    color: inherit;
    text-decoration: none;
    margin-left: -8px;
}

.inner-article {
    background: #fff;
    border-radius: 28px;
    padding: clamp(28px, 5vw, 48px);
    box-shadow: 0 25px 90px rgba(0, 0, 0, 0.08);
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
    min-height: 600px;
}

.page-show .inner-article {
    border-radius: 0 0 28px 28px;
    margin-top: -28px;
    position: relative;
    z-index: 2;
}

.inner-article-header h1 {
    margin: 0 0 12px;
    font-size: clamp(28px, 4vw, 48px);
}

.inner-lead {
    font-size: 18px;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0 0 26px;
}

.inner-article h2 {
    margin: 36px 0 12px;
    font-size: 24px;
}

.inner-article h3 {
    margin: 28px 0 10px;
    font-size: 18px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #999;
}

.inner-article p {
    line-height: 1.8;
    color: #2e2e2e;
    margin: 0 0 18px;
}

.inner-list {
    margin: 0 0 24px;
    padding-left: 22px;
    color: #2b2b2b;
    line-height: 1.6;
}

.inner-list li {
    margin-bottom: 6px;
}

.inner-quote {
    margin: 32px 0;
    padding: 24px 28px;
    border-left: 4px solid #181818;
    background: #f2f2f2;
    font-size: 18px;
    line-height: 1.6;
    color: #111;
}

.inner-quote cite {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #777;
}

.inner-figure {
    margin: 32px 0;
}

.inner-figure img {
    width: 100%;
    border-radius: 18px;
    display: block;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.inner-figure figcaption {
    margin-top: 10px;
    font-size: 13px;
    color: #5a5a5a;
}

.inner-float {
    display: flow-root;
    margin: 28px 0;
}

.inner-float img {
    width: clamp(180px, 30%, 240px);
    float: right;
    margin: 0 0 10px 20px;
    border-radius: 14px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

@media (max-width: 900px) {
    .inner-layout {
        flex-direction: column;
    }

    .section-subnav {
        position: static;
        width: 100%;
        gap: 18px;
    }

    .section-subnav-panel:not(.section-subnav-panel-mobile) {
        display: none;
    }

    .section-subnav-panel.section-subnav-panel-mobile {
        width: 100%;
        background: transparent;
        padding: 12px 0 0;
        border-radius: 0;
        box-shadow: none;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .section-subnav-panel.section-subnav-panel-mobile .section-subnav-label {
        margin-bottom: 10px;
        color: rgba(255, 255, 255, 0.6);
        font-size: 10px;
        letter-spacing: 0.26em;
    }

    .section-subnav-panel.section-subnav-panel-mobile .section-subnav-list {
        gap: 4px;
    }

    .section-subnav-panel.section-subnav-panel-mobile .section-subnav-list li a {
        padding: 8px 0;
        border-radius: 0;
        border: none;
        background: transparent;
        text-align: left;
    }

    .section-subnav-panel.section-subnav-panel-mobile .section-subnav-sublist {
        margin: 6px 0 0 0;
        padding-left: 12px;
        border-left-color: rgba(255, 255, 255, 0.18);
    }

    .section-subnav-panel.section-subnav-panel-mobile .section-subnav-sublist li a {
        padding: 4px 4px;
        color: rgba(255, 255, 255, 0.8);
    }

    .section-subnav-panel.section-subnav-panel-mobile .section-subnav-list li.is-active a,
    .section-subnav-panel.section-subnav-panel-mobile .section-subnav-sublist li.is-current a {
        color: #fff;
        font-weight: 600;
        background: transparent;
        border: none;
    }

    .inner-afisha.inner-afisha-mobile {
        width: 100%;
        margin-top: clamp(24px, 6vw, 40px);
    }
}

@media (max-width: 720px) {
    .section-subnav {
        gap: 12px;
    }

    .section-subnav-list {
        flex-direction: column;
        gap: 4px;
    }

    .section-subnav-list li a {
        text-align: left;
        padding: 10px 12px;
    }

    .section-subnav-sublist {
        margin-left: 0;
        padding-left: 12px;
    }

    .inner-afisha {
        margin-top: 12px;
    }

    .inner-afisha.inner-afisha-mobile {
        margin-top: clamp(28px, 8vw, 48px);
    }

    .inner-article {
        padding: 24px;
        margin-top: 0;
    }

    .show-ticket-card.show-ticket-card-mobile {
        position: static;
        width: min(360px, 92vw);
        background-color: #000;
        margin: 12px auto 0;
        margin-bottom: 30px;
        right: auto;
        left: auto;
        top: auto;
        width: 100%;
    }


}

@media (max-width: 640px) {
    .awards {
        --item-size: 72px;
        --falloff: 140;
        --card-w: 150px;
        --item-gap: clamp(36px, 10vw, 56px);
        padding-left: var(--pad);
        padding-right: var(--pad);
    }

    .awards .dock {
        padding-left: var(--pad);
        padding-right: var(--pad);
    }

    .awards .belt {
        gap: var(--item-gap);
    }

    .awards .logo-card {
        width: var(--card-w);
        flex: 0 0 var(--card-w);
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

@media (max-width: 720px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

form {
    display: flex;
    gap: 10px;
}

input[type="email"] {
    flex: 1;
    min-width: 220px;
    padding: 12px 14px;
    border-radius: 8px;
    border: 2px dashed var(--line);
    background: var(--bg);
    color: var(--fg);
}

form button {
    padding: 12px 16px;
    border-radius: 8px;
    background: var(--bg);
    border: 2px solid var(--line-strong);
    font-weight: 700;
}

footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #050608;
    color: #f5f5f5;
    padding: 72px 0 32px;
}

footer a {
    color: inherit;
}

.corner-note {
    position: static;
    display: block;
    margin: 32px auto 0;
    text-align: center;
    font-size: 12px;
    color: #777;
    border: 1px dashed var(--line);
    padding: 6px 8px;
    border-radius: 8px;
    background: var(--bg);
    opacity: 0.95;
    max-width: 260px;
}

.text-center {
    text-align: center;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.8;
}

.footer-primary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(24px, 4vw, 56px);
    padding-bottom: 36px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo img {
    max-width: 180px;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.45));
}

.footer-tagline {
    margin: 0;
    color: rgba(245, 245, 245, 0.78);
    line-height: 1.5;
}

.footer-subscribe-placeholder {
    border: 1px dashed rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
}

.placeholder-title {
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: rgba(245, 245, 245, 0.65);
}

.footer-subscribe-placeholder p {
    margin: 0;
    font-size: 15px;
    color: rgba(245, 245, 245, 0.72);
}

.footer-menu-block h3,
.footer-contacts h3 {
    margin: 0 0 12px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.65);
}

.footer-menu a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.2s ease;
}

.footer-menu a::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    transition: transform 0.2s ease, background 0.2s ease;
}

.footer-menu a:hover {
    color: #fff;
}

.footer-menu a:hover::before {
    transform: scale(1.4);
    background: rgba(255, 255, 255, 0.9);
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-phones {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-phone {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-phone-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.55);
}

.footer-phones a {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.04em;
}

.footer-email {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    text-decoration: none;
}

.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

.footer-socials-label {
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

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

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #050608;
    background: rgba(255, 255, 255, 0.9);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.social-link svg {
    width: 22px;
    height: 22px;
    line-height: 1;
    font-size: 18px;
    fill: currentColor;
}

.social-link i {
    width: 22px;
    height: 22px;
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.social-link.is-telegram {
    background: linear-gradient(135deg, #54a9eb, #2a7ede);
    color: #fff;
}

.social-link.is-vk {
    background: #2756a5;
    color: #fff;
}

.social-link.is-youtube {
    background: linear-gradient(135deg, #ff4f45, #d90429);
    color: #fff;
}

.social-link.is-instagram {
    background: linear-gradient(135deg, #f9ce34, #ee2a7b 50%, #6228d7);
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: rgba(245, 245, 245, 0.7);
}

.footer-bottom-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(245, 245, 245, 0.78);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.footer-bottom-links a:hover {
    border-color: rgba(245, 245, 245, 0.78);
}

.footer-dev a {
    font-weight: 600;
    text-transform: lowercase;
}

@media (max-width: 640px) {
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-social-links {
        flex-wrap: wrap;
    }
}

.is-hidden {
    display: none;
}

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

@keyframes shows-curtain-left {
    to {
        transform: translateX(-100%);
    }
}

@keyframes shows-curtain-right {
    to {
        transform: translateX(100%);
    }
}

@keyframes hero-cta-shine {
    0% {
        background-position: -200% center;
        opacity: 0;
    }

    25% {
        background-position: -130% center;
        opacity: 0.15;
    }

    45% {
        background-position: -30% center;
        opacity: 0.6;
    }

    55% {
        background-position: 30% center;
        opacity: 0.85;
    }

    75% {
        background-position: 140% center;
        opacity: 0.4;
    }

    100% {
        background-position: 220% center;
        opacity: 0;
    }
}

@keyframes hero-cta-glow {
    0% {
        text-shadow: 0 0 0 rgba(255, 255, 255, 0);
    }

    40% {
        text-shadow: 0 0 18px rgba(255, 255, 255, 0.45), 0 0 32px rgba(189, 214, 255, 0.26);
    }

    55% {
        text-shadow: 0 0 34px rgba(255, 255, 255, 0.88), 0 0 60px rgba(173, 205, 255, 0.42);
    }

    70% {
        text-shadow: 0 0 18px rgba(255, 255, 255, 0.5), 0 0 32px rgba(189, 214, 255, 0.24);
    }

    100% {
        text-shadow: 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes hero-logo-flicker {
    0% {
        opacity: 0.05;
    }

    50% {
        opacity: 0.13;
    }

    100% {
        opacity: 0.05;
    }
}

@keyframes hero-logo-swing {
    0% {
        --hero-rot: -10deg;
    }

    50% {
        --hero-rot: 10deg;
    }

    100% {
        --hero-rot: -10deg;
    }
}

@keyframes hero-logo-breathe {
    0% {
        --hero-scale: 0.2;
    }

    50% {
        --hero-scale: 3.5;
    }

    100% {
        --hero-scale: 0.2;
    }
}

@keyframes press-move-text {
    from {
        transform: translateX(-4vw);
    }

    to {
        transform: translateX(6vw);
    }
}

@keyframes press-move-src {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-10vw);
    }
}


@keyframes press-fade {
    0% {
        opacity: 0;
        filter: blur(6px);
    }

    10% {
        opacity: 1;
        filter: blur(0);
    }

    80% {
        opacity: 1;
        filter: blur(0);
    }

    100% {
        opacity: 0;
        filter: blur(6px);
    }
}

@keyframes press-mask-down {
    from {
        -webkit-mask-position: 0 -150%;
        mask-position: 0 -150%;
    }

    to {
        -webkit-mask-position: 0 100%;
        mask-position: 0 100%;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.breadcrumbs {
    align-self: flex-start;
}

.inner-afisha-show {
    text-align: left;
}

.inner-afisha-show .show-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
    color: #333;
}

.inner-afisha-show .show-buy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5ch;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.18);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
    color: #111;
    margin-top: 10px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.inner-afisha-show .show-buy-btn:hover,
.inner-afisha-show .show-buy-btn:focus-visible {
    border-color: rgba(0, 0, 0, 0.6);
    background: rgba(0, 0, 0, 0.05);
}

.inner-afisha-show .show-note {
    margin: 8px 0 0;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.7);
}

.show-hero {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    border-radius: 28px 28px 0 0;
    overflow: hidden;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.25);
    transform: translateY(28px);
    z-index: 1;
    background-color: #000;
}

.show-hero img {
    display: block;
    width: 100%;
    height: clamp(260px, 40vw, 420px);
    object-fit: cover;
}

.show-hero-meta {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75));
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.show-hero-meta span {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.65);
    order: 2;
}

.show-hero-meta h1 {
    font-size: clamp(28px, 5vw, 44px);
    letter-spacing: 0.04em;
    font-weight: 700;
    margin: 0;
}


.inner-content.inner-show {
    gap: 0;
    margin-top: -28px;
}

.inner-show .inner-article {
    z-index: 2;
}


@media (max-width: 720px) {
    .show-hero-meta {
        bottom: 0px;
        padding-bottom: 42px;
    }


    .inner-content.inner-show {
        margin-top: -60px;
    }

    .breadcrumbs {
        display: none;
    }
}
