/* =========================================
   BUNDLE.CSS — Единый файл стилей
   Включает: reset, base, components, utilities,
   главную страницу и лендинги событий.
   Без дубликатов.
   ========================================= */

@layer reset, base, components, utilities;

/* ===== RESET ===== */
@layer reset {
    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
        -webkit-text-size-adjust: 100%;
    }

    body {
        font-family: 'Montserrat', 'Segoe UI', system-ui, -apple-system, sans-serif;
        background: var(--bg-light);
        color: var(--text-primary);
        line-height: 1.6;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        overflow-x: hidden;
    }

    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    a {
        color: inherit;
        text-decoration: none;
    }

    ul,
    ol {
        list-style: none;
    }

    button {
        font-family: inherit;
        cursor: pointer;
        border: none;
        background: none;
    }

    svg {
        display: block;
    }
}

/* ===== BASE: Variables & Fonts ===== */
@layer base {
    :root {
        --primary: #5f65a0;
        --primary-hover: #4a4f85;
        --primary-dark: #3a3e6a;
        --primary-light: #f0f1f8;
        --primary-light-hover: #e2e3f0;
        --primary-glow: rgba(95, 101, 160, 0.4);
        --accent: #e84393;
        --accent-hover: #d63384;
        --accent-glow: rgba(232, 67, 147, 0.4);
        --cta-text: #ffffff;
        --text-primary: #2d3436;
        --text-secondary: #636e72;
        --text-light: #b2bec3;
        --bg-white: #ffffff;
        --bg-light: #f8f9fa;
        --bg-dark: #1a1a2e;
        --bg-dark-secondary: #16213e;
        --border: #e0e0e0;
        --border-light: #f0f0f0;
        --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
        --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
        --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.15);
        --radius-sm: 12px;
        --radius: 16px;
        --radius-lg: 24px;
        --radius-xl: 32px;
        --radius-full: 9999px;
        --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        --header-h: 72px;
    }

    @font-face {
        font-family: 'Montserrat';
        src: url('../fonts/montserrat-regular.woff2') format('woff2'),
             url('../fonts/montserrat-regular.woff') format('woff');
        font-weight: 400;
        font-style: normal;
        font-display: swap;
    }

    @font-face {
        font-family: 'Montserrat';
        src: url('../fonts/montserrat-medium.woff2') format('woff2'),
             url('../fonts/montserrat-medium.woff') format('woff');
        font-weight: 500;
        font-style: normal;
        font-display: swap;
    }

    @font-face {
        font-family: 'Montserrat';
        src: url('../fonts/montserrat-bold.woff2') format('woff2'),
             url('../fonts/montserrat-bold.woff') format('woff');
        font-weight: 700;
        font-style: normal;
        font-display: swap;
    }
}

/* ===== UTILITIES ===== */
@layer utilities {
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
    }

    .skip-link {
        position: absolute;
        top: -100%;
        left: 16px;
        background: var(--primary);
        color: #fff;
        padding: 12px 20px;
        border-radius: var(--radius-full);
        font-weight: 700;
        z-index: 9999;
        transition: top 0.3s;
    }

    .skip-link:focus {
        top: 16px;
    }

    [data-animate] {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.7s ease, transform 0.7s ease;
        will-change: opacity, transform;
    }

    [data-animate].animated {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== SVG ICONS ===== */
@layer base {
    .svg-icon {
        width: 1em;
        height: 1em;
        display: inline-block;
        vertical-align: -0.125em;
        fill: currentColor;
        flex-shrink: 0;
    }
}

/* ===== COMPONENTS: Header ===== */
@layer components {
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        height: var(--header-h);
        background: rgba(26, 26, 46, 0.92);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        transition: background var(--transition), border-color var(--transition);
    }

    @supports (backdrop-filter: blur(16px)) {
        .header {
            background: rgba(26, 26, 46, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
        }
    }

    .header--scrolled {
        background: rgba(26, 26, 46, 0.97);
        border-bottom-color: rgba(255, 255, 255, 0.15);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    }

    .header__inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 100%;
        gap: 24px;
    }

    .header__logo {
        display: flex;
        align-items: center;
        flex-shrink: 0;
        z-index: 1002;
        height: 260px;
    }

    .header__logo-img {
        height: 260px;
        width: auto;
        filter: brightness(0) invert(1);
    }

    .header__nav {
        display: flex;
    }

    .header__nav-list {
        display: flex;
        list-style: none;
        gap: 8px;
    }

    .header__nav-link {
        display: flex;
        align-items: center;
        gap: 8px;
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        font-weight: 600;
        font-size: 0.88rem;
        padding: 10px 18px;
        border-radius: var(--radius-full);
        transition: all var(--transition);
        border: 1.5px solid rgba(255, 255, 255, 0.2);
        background: transparent;
        white-space: nowrap;
        letter-spacing: 0.2px;
    }

    .header__nav-link .svg-icon {
        opacity: 0.8;
        font-size: 0.85rem;
    }

    .header__nav-link:hover,
    .header__nav-link:focus-visible {
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(255, 255, 255, 0.5);
        color: #fff;
        outline: none;
    }

    .header__nav-link--active {
        background: var(--primary);
        border-color: transparent;
        color: #fff;
        box-shadow: 0 4px 15px var(--primary-glow);
    }

    .header__nav-link--active .svg-icon {
        opacity: 1;
    }

    .header__burger {
        display: none;
        flex-direction: column;
        gap: 5px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: 10px;
        cursor: pointer;
        padding: 10px;
        z-index: 1002;
    }

    .header__burger-line {
        width: 24px;
        height: 2px;
        background: #fff;
        border-radius: 2px;
        transition: transform var(--transition), opacity var(--transition);
    }

    .header__burger--active .header__burger-line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .header__burger--active .header__burger-line:nth-child(2) {
        opacity: 0;
    }

    .header__burger--active .header__burger-line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

/* ===== COMPONENTS: Buttons ===== */
@layer components {
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 14px 28px;
        border-radius: var(--radius-full);
        font-weight: 700;
        font-size: 1rem;
        cursor: pointer;
        text-decoration: none;
        transition: all var(--transition);
        border: none;
        white-space: nowrap;
        position: relative;
        overflow: hidden;
        font-family: inherit;
    }

    .btn .svg-icon {
        font-size: 1.1rem;
        transition: transform var(--transition);
    }

    .btn:hover .svg-icon {
        transform: scale(1.15);
    }

    .btn:active {
        transform: translateY(0);
    }

    .btn--cta {
        background: linear-gradient(135deg, var(--primary), var(--primary-hover));
        color: var(--cta-text);
        box-shadow: 0 4px 15px var(--primary-glow);
        border-radius: var(--radius-full);
        position: relative;
        overflow: hidden;
    }

    .btn--cta::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
        opacity: 0;
        transition: opacity var(--transition);
    }

    .btn--cta:hover {
        background: linear-gradient(135deg, var(--primary-hover), var(--primary-dark));
        box-shadow: 0 8px 25px var(--primary-glow);
        transform: translateY(-2px);
    }

    .btn--cta:hover::after {
        opacity: 1;
    }

    .btn--outline {
        background: transparent;
        color: #fff;
        border: 2px solid rgba(255, 255, 255, 0.5);
        border-radius: var(--radius-full);
    }

    .btn--outline:hover {
        background: var(--primary);
        border-color: var(--primary);
        color: #fff;
    }

    .btn--lg {
        padding: 18px 40px;
        font-size: 1.15rem;
    }

    .btn--tickets {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 14px 24px;
    }

    .btn--tickets .btn__label {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .btn--tickets .btn__divider {
        width: 1px;
        height: 20px;
        background: rgba(255, 255, 255, 0.3);
        margin: 0 4px;
    }

    .btn--tickets .btn__count {
        font-size: 0.78rem;
        font-weight: 500;
        opacity: 0.9;
        white-space: nowrap;
    }
}

/* ===== COMPONENTS: Sections ===== */
@layer components {
    .section {
        padding: 60px 0;
    }

    .section__header {
        text-align: center;
        margin-bottom: 48px;
    }

    .section__icon-wrap {
        margin-bottom: 20px;
    }

    .section__icon {
        margin-top: 25px;
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, var(--primary), var(--primary-hover));
        border-radius: 20px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 25px var(--primary-glow);
    }

    .section__icon .svg-icon {
        font-size: 1.8rem;
        color: #fff;
    }

    .section__title {
        font-size: clamp(1.6rem, 3.5vw, 2.2rem);
        font-weight: 800;
        color: var(--text-primary);
        margin-bottom: 12px;
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
        display: inline-block;
        padding-bottom: 16px;
    }

    .section__title::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, var(--primary), var(--primary-hover));
        border-radius: 2px;
    }

    .section__subtitle {
        font-size: 1.05rem;
        color: var(--text-secondary);
        margin-top: 8px;
        font-weight: 500;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ===== COMPONENTS: Hero Lite ===== */
@layer components {
    .hero-lite {
        background: linear-gradient(135deg, var(--bg-dark) 0, var(--bg-dark-secondary) 100%);
        color: #fff;
        text-align: center;
        padding: 100px 0 40px;
        position: relative;
        overflow: hidden;
    }

    .hero-lite::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(ellipse at 50% 0, rgba(95, 101, 160, 0.2) 0, transparent 60%);
    }

    .hero-lite__icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, var(--primary), var(--primary-hover));
        border-radius: 16px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        position: relative;
        z-index: 1;
    }

    .hero-lite__icon .svg-icon {
        font-size: 1.5rem;
        color: #fff;
    }

    .hero-lite__title {
        font-size: clamp(1.8rem, 4vw, 2.8rem);
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 12px;
        position: relative;
        z-index: 1;
    }

    .hero-lite__subtitle {
        font-size: 1.05rem;
        color: rgba(255, 255, 255, 0.7);
        position: relative;
        z-index: 1;
    }
}

/* ===== COMPONENTS: FAQ ===== */
@layer components {
    .faq-list {
        display: flex;
        flex-direction: column;
        gap: 14px;
        max-width: 800px;
        margin: 0 auto;
    }

    .faq-item {
        background: var(--bg-white);
        border-radius: var(--radius);
        box-shadow: var(--shadow-sm);
        border: 1px solid var(--border-light);
        overflow: hidden;
        transition: all var(--transition);
    }

    .faq-item:hover {
        box-shadow: var(--shadow);
    }

    .faq-item__question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 28px;
        font-weight: 700;
        font-size: 1.05rem;
        cursor: pointer;
        background: var(--bg-white);
        transition: all var(--transition-fast);
        gap: 16px;
        text-align: left;
        width: 100%;
        border-radius: var(--radius);
        font-family: inherit;
    }

    .faq-item__question:hover {
        background: var(--primary-light);
        color: var(--primary);
    }

    .faq-item__icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
        background: var(--primary-light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        transition: all 0.3s ease;
        flex-shrink: 0;
        overflow: hidden;
    }

    .faq-item__icon .svg-icon {
        font-size: 0.7rem;
    }

    .faq-item__question:hover .faq-item__icon {
        background: var(--primary);
        color: #fff;
    }

    .faq-item--open .faq-item__icon {
        transform: rotate(45deg);
        background: var(--primary);
        color: #fff;
    }

    .faq-item__answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.45s ease, padding 0.35s ease;
        background: var(--bg-light);
    }

    .faq-item--open .faq-item__answer {
        max-height: 600px;
        padding: 20px 28px 24px;
        border-top: 1px solid var(--border-light);
    }

    .faq-item__answer p {
        color: var(--text-secondary);
        line-height: 1.7;
        font-size: 0.95rem;
    }

    .faq-item__answer a {
        color: var(--primary);
        font-weight: 700;
        text-decoration: underline;
    }

    .faq-item__answer a:hover {
        color: var(--primary-hover);
    }
}

/* ===== COMPONENTS: Footer ===== */
@layer components {
    .footer {
        background: var(--bg-dark);
        color: rgba(255, 255, 255, 0.7);
        padding: 48px 0 24px;
        font-size: 0.9rem;
        margin-top: 20px;
    }

    .footer__grid {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 40px;
        margin-bottom: 36px;
    }

    .footer__col h4 {
        color: #fff;
        font-weight: 700;
        margin-bottom: 16px;
        font-size: 0.95rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .footer__col p {
        margin-bottom: 8px;
        line-height: 1.6;
    }

    .footer__links {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .footer__links a {
        display: flex;
        align-items: center;
        gap: 8px;
        color: rgba(255, 255, 255, 0.6);
        text-decoration: none;
        transition: color var(--transition);
        font-size: 0.9rem;
    }

    .footer__links a .svg-icon {
        font-size: 0.8rem;
        width: 16px;
    }

    .footer__links a:hover {
        color: #fff;
    }

    .footer__logo {
        height: 200px;
        width: auto;
        filter: brightness(0) invert(1);
        margin-top: -75px;
    }

    .footer__logo-wrap {
        height: 50px;
        overflow: hidden;
        margin-bottom: 16px;
    }

    .footer__bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 24px;
        text-align: center;
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.4);
    }
}

/* ===== COMPONENTS: Scroll Top ===== */
@layer components {
    .scroll-top {
        position: fixed;
        bottom: 24px;
        right: 24px;
        width: 48px;
        height: 48px;
        background: var(--primary);
        color: #fff;
        border: none;
        border-radius: 50%;
        font-size: 1.2rem;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
        transition: all var(--transition);
        opacity: 0;
        visibility: hidden;
        z-index: 99;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .scroll-top--visible {
        opacity: 1;
        visibility: visible;
    }

    .scroll-top:hover {
        background: var(--primary-hover);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px var(--primary-glow);
    }

    .scroll-top .svg-icon {
        font-size: 1.2rem;
    }
}

/* ===== COMPONENTS: More Link ===== */
@layer components {
    .more-link {
        text-align: center;
        margin-top: 36px;
    }

    .more-link__btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: var(--primary);
        font-weight: 700;
        text-decoration: none;
        font-size: 1.05rem;
        padding: 14px 28px;
        margin-bottom: 35px;
        border: 2px solid var(--primary);
        border-radius: var(--radius-full);
        transition: all var(--transition);
    }

    .more-link__btn .svg-icon {
        transition: transform var(--transition);
    }

    .more-link__btn:hover {
        background: var(--primary);
        color: #fff;
        box-shadow: 0 4px 20px var(--primary-glow);
    }

    .more-link__btn:hover .svg-icon.fa-arrow-right {
        transform: translateX(4px);
    }
}

/* ===== COMPONENTS: CTA Block ===== */
@layer components {
    .cta-block {
		margin-top: 25px;
        text-align: center;
        padding: 64px 40px;
        background: linear-gradient(135deg, var(--bg-dark) 0, var(--bg-dark-secondary) 100%);
        color: #fff;
        border-radius: var(--radius-xl);
        position: relative;
        overflow: hidden;
    }

    .cta-block::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(ellipse at 50% 0, rgba(95, 101, 160, 0.2) 0, transparent 60%);
        pointer-events: none;
    }

    .cta-block__title {
        font-size: clamp(1.5rem, 4vw, 1.9rem);
        font-weight: 800;
        margin-bottom: 12px;
        position: relative;
        z-index: 1;
    }

    .cta-block__text {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 28px;
        position: relative;
        z-index: 1;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-block__actions {
        position: relative;
        z-index: 1;
    }
}

/* ===== HERO (главная + лендинги) ===== */
@layer components {
    .hero {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        background-color: var(--bg-dark);
    }

    .hero__bg-picture {
        position: absolute;
        top: -60px;
        left: 0;
        width: 100%;
        height: calc(100% + 120px);
        z-index: 1;
    }

    .hero__bg-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        will-change: transform;
    }

    .hero__overlay {
        position: absolute;
        inset: 0;
        z-index: 2;
        background: radial-gradient(ellipse at center, transparent 0, rgba(0, 0, 0, 0.35) 70%),
            linear-gradient(180deg, rgba(26, 26, 46, 0.4) 0, rgba(0, 0, 0, 0.05) 50%, rgba(26, 26, 46, 0.2) 100%);
    }

    .hero__content {
        position: relative;
        z-index: 3;
        text-align: center;
        color: #fff;
        padding: 40px 20px;
        max-width: 850px;
    }

    .hero__badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 10px 22px;
        border-radius: var(--radius-full);
        font-size: 0.9rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.95);
        margin-bottom: 24px;
        animation: fadeInUp 0.8s ease-out both;
    }

    .hero__title {
        font-size: clamp(2.5rem, 7vw, 5.2rem);
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 4px;
        margin-bottom: 16px;
        line-height: 1;
        color: #fff;
        animation: kineticReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
    }

    .hero__subtitle {
        font-size: clamp(1.1rem, 2.5vw, 1.8rem);
        font-weight: 700;
        margin-bottom: 12px;
        color: rgba(255, 255, 255, 0.9);
        letter-spacing: 2px;
        text-transform: uppercase;
        animation: fadeInUp 0.8s ease-out 0.4s both;
    }

    .hero__tagline {
        font-size: 1.05rem;
        color: rgba(255, 255, 255, 0.75);
        margin-bottom: 8px;
        font-weight: 500;
        animation: fadeInUp 0.8s ease-out 0.6s both;
    }

    .hero__actions {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 36px;
        animation: fadeInUp 0.8s ease-out 0.8s both;
    }

    @keyframes kineticReveal {
        from {
            letter-spacing: 20px;
            opacity: 0;
            transform: scale(0.9);
            filter: blur(10px);
        }
        to {
            letter-spacing: 4px;
            opacity: 1;
            transform: scale(1);
            filter: blur(0);
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hero__scroll {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        color: rgba(255, 255, 255, 0.7);
        z-index: 3;
        text-align: center;
        font-size: 0.85rem;
        cursor: pointer;
        animation: heroBounce 2s infinite;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .hero__scroll span {
        font-weight: 600;
        letter-spacing: 0.5px;
    }

    .hero__scroll .svg-icon {
        font-size: 1.2rem;
    }

    @keyframes heroBounce {
        0%,
        20%,
        50%,
        80%,
        100% {
            transform: translateX(-50%) translateY(0);
        }
        40% {
            transform: translateX(-50%) translateY(-12px);
        }
        60% {
            transform: translateX(-50%) translateY(-5px);
        }
    }
}

/* ===== EVENTS GRID ===== */
@layer components {
    .events-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
        margin-bottom: 32px;
    }

    .event-card {
        background: rgba(255, 255, 255, 0.8);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: all var(--transition);
        border: 1px solid rgba(255, 255, 255, 0.5);
        display: flex;
        flex-direction: column;
        transform-style: preserve-3d;
        perspective: 1000px;
    }

    @supports (backdrop-filter: blur(12px)) {
        .event-card {
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }
    }

    .event-card:hover {
        transform: translateY(-8px) rotateY(2deg) rotateX(-2deg);
        box-shadow: var(--shadow-lg), 0 20px 40px rgba(95, 101, 160, 0.15);
        border-color: var(--primary-light-hover);
    }

    .events-grid:has(.event-card:hover) .event-card:not(:hover) {
        opacity: 0.7;
        filter: brightness(0.95);
    }

    .event-card__image {
        width: 100%;
        aspect-ratio: 800 / 328;
        overflow: hidden;
        background: var(--bg-dark-secondary);
        position: relative;
        flex-shrink: 0;
    }

    .event-card__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform var(--transition-slow);
    }

    .event-card:hover .event-card__image img {
        transform: scale(1.08);
    }

    .event-card__badge {
        position: absolute;
        top: 12px;
        left: 12px;
        padding: 6px 14px;
        border-radius: var(--radius-full);
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.5px;
        z-index: 2;
        color: #fff;
    }

    .event-card__badge--sport {
        background: rgba(95, 101, 160, 0.85);
        border: 1px solid rgba(95, 101, 160, 0.5);
    }

    .event-card__badge--concert {
        background: rgba(232, 67, 147, 0.85);
        border: 1px solid rgba(232, 67, 147, 0.5);
    }

    .event-card__body {
        padding: 24px 20px 20px;
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .event-card__date {
        font-size: 0.85rem;
        color: var(--primary);
        font-weight: 700;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .event-card__date .svg-icon {
        font-size: 0.9rem;
    }

    .event-card__title {
        font-size: 1.2rem;
        font-weight: 800;
        color: var(--text-primary);
        margin-bottom: 8px;
        line-height: 1.3;
    }

    .event-card__tagline {
        font-size: 0.9rem;
        color: var(--text-secondary);
        margin-bottom: 16px;
        line-height: 1.5;
        flex: 1;
    }

    .event-card__price {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--primary);
    }

    .event-card__actions {
        display: flex;
        gap: 8px;
        margin-top: auto;
    }

    .event-card__btn {
        width: 100%;
    }
}

/* ===== ADVANTAGES GRID ===== */
@layer components {
    .advantages-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
    }

    .advantage-card {
        background: var(--bg-white);
        padding: 28px 20px;
        border-radius: var(--radius-lg);
        text-align: center;
        box-shadow: var(--shadow-sm);
        border: 1px solid var(--border-light);
        transition: all var(--transition);
    }

    .advantage-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow);
        border-color: var(--primary-light-hover);
    }

    .advantage-card__icon {
        width: 56px;
        height: 56px;
        background: var(--primary-light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 16px;
    }

    .advantage-card__icon .svg-icon {
        font-size: 1.4rem;
        color: var(--primary);
    }

    .advantage-card__title {
        font-size: 1.5rem;
        font-weight: 900;
        color: var(--primary);
        margin-bottom: 4px;
        line-height: 1;
    }

    .advantage-card__text {
        font-size: 0.85rem;
        color: var(--text-secondary);
        line-height: 1.5;
    }
}

/* ===== VENUE NAVIGATION ===== */
@layer components {
    .venue-nav {
        display: flex;
        gap: 8px;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 40px;
        position: sticky;
        top: var(--header-h);
        z-index: 10;
        background: var(--bg-light);
        padding: 12px 0;
    }

    .venue-nav__link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 22px;
        border-radius: var(--radius-full);
        font-weight: 700;
        font-size: 0.9rem;
        background: var(--bg-white);
        border: 2px solid var(--border);
        color: var(--text-secondary);
        cursor: pointer;
        transition: all var(--transition);
        text-decoration: none;
    }

    .venue-nav__link:hover {
        border-color: var(--primary);
        color: var(--primary);
    }

    .venue-nav__link--active {
        background: linear-gradient(135deg, var(--primary), var(--primary-hover));
        border-color: transparent;
        color: #fff;
        box-shadow: 0 4px 15px var(--primary-glow);
    }

    .venue-section {
        padding: 40px 0;
        border-bottom: 1px solid var(--border-light);
        scroll-margin-top: 100px;
    }

    .venue-section:last-child {
        border-bottom: none;
    }

    .venue-section__title {
        font-size: 1.4rem;
        font-weight: 800;
        color: var(--text-primary);
        margin-bottom: 32px;
        text-align: center;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }

    .venue-section__title::before {
        content: '';
        width: 40px;
        height: 3px;
        background: linear-gradient(90deg, var(--primary), var(--primary-light-hover));
        border-radius: 2px;
        flex-shrink: 0;
    }

    .venue-section__title::after {
        content: '';
        width: 40px;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-light-hover), var(--primary));
        border-radius: 2px;
        flex-shrink: 0;
    }

    .venue-short {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: center;
		margin-bottom: 30px;
    }

    .venue-short__img {
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-md);
        background: var(--bg-dark-secondary);
    }

    .venue-short__img img {
        width: 100%;
        height: auto;
    }

    .venue-short__info p {
        color: var(--text-secondary);
        margin-bottom: 20px;
        font-size: 1.05rem;
        line-height: 1.7;
    }

    .venue-short__info p:last-child {
        margin-bottom: 0;
    }

    .venue-short__features {
        margin: 20px 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .venue-short__features li {
        display: flex;
        align-items: center;
        gap: 12px;
        color: var(--text-secondary);
        font-size: 0.95rem;
        padding: 0;
    }

    .venue-short__features li .svg-icon {
        color: var(--primary);
        font-size: 1rem;
        width: 20px;
        flex-shrink: 0;
    }

    .venue-short__link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--primary);
        font-weight: 700;
        text-decoration: none;
        font-size: 1rem;
        margin-top: 12px;
        transition: color var(--transition);
    }

    .venue-short__link:hover {
        color: var(--primary-hover);
    }

    .venue-short__link .svg-icon {
        transition: transform var(--transition);
    }

    .venue-short__link:hover .svg-icon {
        transform: translateX(4px);
    }

    .venue-scheme-photo {
        position: relative;
        border-radius: var(--radius-lg);
        overflow: hidden;
        cursor: pointer;
        box-shadow: var(--shadow-md);
        transition: box-shadow var(--transition);
    }

    .venue-scheme-photo:hover {
        box-shadow: var(--shadow-lg);
    }

    .venue-scheme-photo__img {
        display: block;
        width: 100%;
        height: auto;
        transition: transform var(--transition-slow);
    }

    .venue-scheme-photo:hover .venue-scheme-photo__img {
        transform: scale(1.03);
    }

    .venue-scheme-photo__hint {
        position: absolute;
        bottom: 12px;
        right: 12px;
        background: rgba(0, 0, 0, 0.7);
        color: #fff;
        padding: 6px 14px;
        border-radius: var(--radius-full);
        font-size: 0.78rem;
        font-weight: 600;
        pointer-events: none;
        transition: opacity var(--transition);
    }

    .venue-scheme-photo:hover .venue-scheme-photo__hint {
        opacity: 0.85;
    }
}

/* ===== LIGHTBOX ===== */
@layer components {
    .lightbox {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 3000;
        align-items: center;
        justify-content: center;
        padding: 40px;
        background: rgba(0, 0, 0, 0.92);
        cursor: pointer;
    }

    .lightbox--open {
        display: flex;
    }

    .lightbox__img {
        max-width: 90vw;
        max-height: 85vh;
        object-fit: contain;
        border-radius: var(--radius-lg);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
        cursor: default;
    }

    .lightbox__close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: #fff;
        font-size: 1.2rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background var(--transition);
    }

    .lightbox__close:hover {
        background: rgba(255, 255, 255, 0.25);
    }

    .lightbox__title {
        position: absolute;
        bottom: 24px;
        left: 50%;
        transform: translateX(-50%);
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.9rem;
        font-weight: 600;
    }
}

/* ===== VENUE GALLERY ===== */
@layer components {
    .venue-gallery {
        overflow: hidden;
        position: relative;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        background: var(--bg-dark-secondary);
    }

    .venue-gallery__list {
        padding: 0;
        margin: 0;
        display: flex;
        width: 100%;
        list-style: none;
        gap: 0;
    }

    .venue-gallery__item {
        position: relative;
        flex: 1;
        transition: flex 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        cursor: pointer;
        overflow: hidden;
        min-width: 0;
    }

    .venue-gallery__item img {
        display: block;
        width: 100%;
        height: 280px;
        object-fit: cover;
        opacity: 0.55;
        transition: opacity 0.6s ease-in, transform 0.6s ease-in;
        filter: brightness(0.9);
    }

    .venue-gallery__overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 60%, rgba(26, 26, 46, 0.5) 100%);
        pointer-events: none;
        transition: opacity 0.4s ease-in;
    }

    .venue-gallery__item:hover {
        flex: 2.5;
    }

    .venue-gallery__item:hover img {
        opacity: 1;
        filter: brightness(1.05);
    }

    .venue-gallery__list:has(.venue-gallery__item:hover) .venue-gallery__item:not(:hover) img {
        opacity: 0.35;
    }
}

/* ===== PANORAMA ===== */
@layer components {
    .panorama-wrapper {
        position: relative;
        width: 100%;
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-md);
        background: var(--bg-dark-secondary);
    }

    .panorama-wrapper iframe {
        width: 100%;
        height: 500px;
        border: none;
        display: block;
    }
}

/* ===== MAP WRAPPER ===== */
@layer components {
    .map-wrapper {
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-md);
    }

    .map-wrapper--mt {
        margin-top: 40px;
    }

    .map-wrapper iframe {
        width: 100%;
        height: 500px;
        border: none;
        display: block;
    }
}

/* ===== TRANSPORT ===== */
@layer components {
    .transport-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-bottom: 24px;
    }

    .transport-item {
        background: var(--bg-white);
        padding: 12px 16px;
        border-radius: var(--radius-sm);
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.9rem;
        color: var(--text-secondary);
        border: 1px solid var(--border-light);
    }

    .transport-item .svg-icon {
        color: var(--primary);
        font-size: 1rem;
        flex-shrink: 0;
    }

    .transport-item strong {
        color: var(--text-primary);
        margin-right: 4px;
    }
}

/* ===== MODAL ===== */
@layer components {
    .modal {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 2000;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }

    .modal--open {
        display: flex;
    }

    .modal__overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.75);
        backdrop-filter: blur(4px);
    }

    .modal__content {
        position: relative;
        background: var(--bg-white);
        border-radius: var(--radius-lg);
        padding: 32px;
        max-width: 700px;
        width: 100%;
        max-height: 85vh;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
        z-index: 2001;
        overflow-y: auto;
    }

    .modal__close {
        position: sticky;
        top: 0;
        float: right;
        background: var(--bg-light);
        border: none;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        font-size: 1rem;
        color: var(--text-secondary);
        cursor: pointer;
        z-index: 2002;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all var(--transition);
    }

    .modal__close:hover {
        background: #e0e0e0;
        color: var(--text-primary);
    }

    .oferta-text h2 {
        font-size: 1.3rem;
        font-weight: 800;
        color: var(--text-primary);
        margin-bottom: 8px;
        text-align: center;
    }

    .oferta-text h3 {
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--text-primary);
        margin: 20px 0 10px;
    }

    .oferta-text p {
        margin-bottom: 12px;
    }

    .oferta-text strong {
        color: var(--text-primary);
    }

    .oferta-text .oferta-subtitle {
        text-align: center;
        font-weight: 700;
        margin-bottom: 24px;
        color: var(--text-primary);
    }
}

/* ===== EVENT INFO (лендинги) ===== */
@layer components {
    .event-info {
        background: var(--bg-white);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        overflow: hidden;
        margin-bottom: 32px;
    }

    .event-info__row {
        display: flex;
        align-items: center;
        padding: 18px 28px;
        border-bottom: 1px solid var(--border-light);
        transition: background var(--transition);
        gap: 20px;
    }

    .event-info__row:last-child {
        border-bottom: none;
    }

    .event-info__row:hover {
        background: var(--primary-light);
    }

    .event-info__row--highlight {
        background: linear-gradient(135deg, var(--primary-light), #ede7ff);
    }

    .event-info__icon {
        width: 48px;
        height: 48px;
        background: var(--primary-light);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .event-info__icon .svg-icon {
        font-size: 1.3rem;
        color: var(--primary);
    }

    .event-info__row--highlight .event-info__icon {
        background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    }

    .event-info__row--highlight .event-info__icon .svg-icon {
        color: #fff;
    }

    .event-info__content {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .event-info__label {
        font-size: 0.85rem;
        font-weight: 700;
        color: var(--text-secondary);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .event-info__value {
        font-size: 1.1rem;
        color: var(--text-primary);
        font-weight: 600;
    }
}

/* ===== ABOUT TEXT ===== */
@layer components {
    .about-text {
        padding: 0 4px;
        font-size: 1.05rem;
        color: var(--text-secondary);
        line-height: 1.7;
    }

    .about-text p {
        margin-bottom: 14px;
    }

    .about-text p:last-child {
        margin-bottom: 0;
    }
}

/* ===== MAIN FIGHT BLOCK ===== */
@layer components {
    .main-fight-block {
        background: linear-gradient(135deg, var(--bg-dark) 0, var(--bg-dark-secondary) 100%);
        border-radius: var(--radius-xl);
        padding: 56px 40px;
        text-align: center;
        color: #fff;
        position: relative;
        overflow: hidden;
        box-shadow: var(--shadow-lg);
    }

    .main-fight-block::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(ellipse at 50% 0, rgba(95, 101, 160, 0.2) 0, transparent 60%),
            radial-gradient(ellipse at 50% 100%, rgba(232, 67, 147, 0.1) 0, transparent 60%);
        pointer-events: none;
    }

    .main-fight-block__header {
        position: relative;
        z-index: 1;
        margin-bottom: 40px;
    }

    .main-fight-block__header .section__icon-wrap {
        margin-bottom: 16px;
    }

    .main-fight-block__header .section__icon {
        background: linear-gradient(135deg, #ffd700, var(--primary));
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    }

    .main-fight-block__header .section__title {
        color: #fff;
    }

    .main-fight-block__header .section__title::after {
        background: linear-gradient(90deg, #ffd700, var(--primary));
    }

    .main-fight-block__header .section__subtitle {
        color: rgba(255, 255, 255, 0.7);
    }

    .main-fight-block__versus {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 40px;
        margin-bottom: 36px;
        position: relative;
        z-index: 1;
    }

    .main-fight-block__fighter {
        text-align: center;
        flex: 1;
        max-width: 250px;
    }

    .main-fight-block__fighter-photo {
        width: 160px;
        height: 160px;
        border-radius: 50%;
        overflow: hidden;
        border: 4px solid rgba(255, 255, 255, 0.2);
        margin: 0 auto 16px;
        background: #2d3436;
        transition: border-color var(--transition), transform var(--transition);
    }

    .main-fight-block__fighter:hover .main-fight-block__fighter-photo {
        border-color: var(--primary);
        transform: scale(1.05);
    }

    .main-fight-block__fighter-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .main-fight-block__fighter-name {
        display: block;
        font-weight: 800;
        font-size: 1.3rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 4px;
    }

    .main-fight-block__fighter-record {
        display: inline-block;
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.6);
        background: rgba(255, 255, 255, 0.08);
        padding: 6px 16px;
        border-radius: var(--radius-full);
        font-weight: 600;
    }

    .main-fight-block__center {
        flex-shrink: 0;
    }

    .main-fight-block__vs {
        text-align: center;
    }

    .main-fight-block__vs-circle {
        width: 72px;
        height: 72px;
        background: linear-gradient(135deg, var(--primary), var(--primary-hover));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        font-size: 1.3rem;
        color: #fff;
        margin: 0 auto 10px;
        box-shadow: 0 4px 20px var(--primary-glow);
        animation: vsPulse 2s infinite;
    }

    @keyframes vsPulse {
        0%, 100% {
            box-shadow: 0 4px 20px var(--primary-glow);
        }
        50% {
            box-shadow: 0 4px 35px var(--primary-glow), 0 0 0 12px rgba(95, 101, 160, 0.08);
        }
    }

    .main-fight-block__vs-label {
        display: block;
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.5);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .main-fight-block__cta {
        position: relative;
        z-index: 1;
        margin-top: 20px;
    }
}

/* ===== PRICES TABLE ===== */
@layer components {
    .prices-table-wrapper {
        max-width: 700px;
        margin: 0 auto 32px;
        overflow: hidden;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow);
    }

    .prices-table {
        width: 100%;
        border-collapse: collapse;
        background: var(--bg-white);
    }

    .prices-table thead th {
        background: linear-gradient(135deg, var(--primary), var(--primary-hover));
        color: #fff;
        font-weight: 700;
        font-size: 1rem;
        padding: 18px 24px;
        text-align: left;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .prices-table tbody td {
        padding: 16px 24px;
        border-bottom: 1px solid var(--border-light);
        font-size: 1rem;
        color: var(--text-primary);
        font-weight: 500;
    }

    .prices-table tbody tr:last-child td {
        border-bottom: none;
    }

    .prices-table tbody tr:hover {
        background: var(--primary-light);
    }

    .prices-table .price {
        font-weight: 700;
        color: var(--primary);
        white-space: nowrap;
        text-align: right;
    }

    .prices-cta {
        text-align: center;
        margin-top: 12px;
    }

    .prices-cta__text {
        color: var(--text-secondary);
        font-size: 0.95rem;
        margin-bottom: 16px;
    }
}

/* ===== WIDGET ===== */
@layer components {
    .widget-container {
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-md);
        background: var(--bg-white);
        min-height: 400px;
    }

    .widget-placeholder {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 60px 40px;
        text-align: center;
        min-height: 400px;
        background: var(--bg-light);
        border: 2px dashed var(--border);
        border-radius: var(--radius-lg);
    }

    .widget-placeholder__icon {
        width: 80px;
        height: 80px;
        background: var(--primary-light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }

    .widget-placeholder__icon .svg-icon {
        font-size: 2rem;
        color: var(--primary);
    }

    .widget-placeholder__text {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 8px;
    }

    .widget-placeholder__hint {
        font-size: 0.9rem;
        color: var(--text-secondary);
        margin-bottom: 24px;
        max-width: 400px;
    }
}

/* ===== PARTNER BLOCK ===== */
@layer components {
    .partner-block {
        background: linear-gradient(135deg, var(--bg-white), var(--primary-light));
        border: 2px solid var(--primary-light-hover);
        border-radius: var(--radius-lg);
        padding: 40px;
        text-align: center;
        margin: 20px 0;
    }

    .partner-block__logos {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 24px;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }

    .partner-block__divider {
        font-size: 1.5rem;
        font-weight: 300;
        color: var(--text-light);
    }

    .partner-block__aca {
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 800;
        font-size: 1.1rem;
        color: var(--text-primary);
    }

    .partner-block__aca .svg-icon {
        font-size: 1.4rem;
        color: var(--primary);
    }

    .partner-block__text {
        color: var(--text-secondary);
        font-size: 0.95rem;
        line-height: 1.6;
        max-width: 600px;
        margin: 0 auto;
    }
}

/* ===== STEPS GRID ===== */
@layer components {
    .steps-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        max-width: 1000px;
        margin: 0 auto;
    }

    .step-card {
        background: var(--bg-white);
        padding: 32px 24px;
        border-radius: var(--radius-lg);
        text-align: center;
        box-shadow: var(--shadow-sm);
        border: 1px solid var(--border-light);
        transition: all var(--transition);
        position: relative;
    }

    .step-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow);
        border-color: var(--primary-light-hover);
    }

    .step-card__number {
        position: absolute;
        top: -16px;
        left: 50%;
        transform: translateX(-50%);
        width: 32px;
        height: 32px;
        background: linear-gradient(135deg, var(--primary), var(--primary-hover));
        color: #fff;
        border-radius: 50%;
        font-weight: 900;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .step-card__icon {
        width: 56px;
        height: 56px;
        background: var(--primary-light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 16px;
    }

    .step-card__icon .svg-icon {
        font-size: 1.4rem;
        color: var(--primary);
    }

    .step-card__title {
        font-weight: 700;
        font-size: 1rem;
        color: var(--text-primary);
        margin-bottom: 8px;
    }

    .step-card__text {
        font-size: 0.9rem;
        color: var(--text-secondary);
        line-height: 1.6;
    }

    .step-card__text a {
        color: var(--primary);
        font-weight: 700;
        text-decoration: underline;
    }

    .step-card__text a:hover {
        color: var(--primary-hover);
    }
}

/* ===== RULES BLOCK ===== */
@layer components {
    .rules-block {
        background: var(--bg-white);
        padding: 32px;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
        border: 1px solid var(--border-light);
        margin-bottom: 24px;
    }

    .rules-block h3 {
        font-size: 1.15rem;
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .rules-block h3 .svg-icon {
        color: var(--primary);
    }

    .rules-block p {
        color: var(--text-secondary);
        line-height: 1.7;
        margin-bottom: 12px;
    }

    .rules-block p:last-child {
        margin-bottom: 0;
    }

    .rules-block ul {
        list-style: disc;
        padding-left: 24px;
        margin-bottom: 12px;
    }

    .rules-block ul li {
        color: var(--text-secondary);
        line-height: 1.7;
        margin-bottom: 6px;
    }
}

/* ===== REFUND TABLE ===== */
@layer components {
    .refund-table-wrapper {
        overflow-x: auto;
    }

    .refund-table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 8px;
    }

    .refund-table th {
        background: linear-gradient(135deg, var(--primary), var(--primary-hover));
        color: #fff;
        font-weight: 700;
        font-size: 0.9rem;
        padding: 14px 20px;
        text-align: left;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .refund-table td {
        padding: 14px 20px;
        border-bottom: 1px solid var(--border-light);
        font-size: 0.95rem;
        color: var(--text-primary);
        font-weight: 500;
    }

    .refund-table tbody tr:hover {
        background: var(--primary-light);
    }

    .refund-amount {
        font-weight: 700;
        text-align: right;
    }

    .refund-amount--full { color: #00b894; }
    .refund-amount--half { color: #fdcb6e; }
    .refund-amount--low { color: #e17055; }
    .refund-amount--none { color: #d63031; }
}

/* ===== CONTACTS GRID ===== */
@layer components {
    .contacts-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
        max-width: 700px;
        margin: 0 auto;
    }

    .contact-card {
        background: var(--bg-white);
        border-radius: var(--radius-lg);
        padding: 36px 28px;
        box-shadow: var(--shadow);
        border: 1px solid var(--border-light);
        transition: all var(--transition);
        display: flex;
        flex-direction: column;
    }

    .contact-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

    .contact-card--support {
        border-top: 4px solid var(--primary);
    }

    .contact-card--outside {
        border-top: 4px solid var(--accent);
    }

    .contact-card__icon {
        width: 56px;
        height: 56px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        background: var(--primary-light);
        color: var(--primary);
    }

    .contact-card--outside .contact-card__icon {
        background: rgba(232, 67, 147, 0.1);
        color: var(--accent);
    }

    .contact-card__icon .svg-icon {
        font-size: 1.5rem;
    }

    .contact-card__title {
        font-size: 1.15rem;
        font-weight: 800;
        color: var(--text-primary);
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .contact-card__text {
        font-size: 0.95rem;
        color: var(--text-secondary);
        line-height: 1.7;
        margin-bottom: 20px;
        flex: 1;
    }

    .contact-card__btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 14px 24px;
        border-radius: var(--radius-full);
        font-weight: 700;
        font-size: 0.95rem;
        text-decoration: none;
        transition: all var(--transition);
        background: linear-gradient(135deg, var(--primary), var(--primary-hover));
        color: #fff;
        box-shadow: 0 4px 15px var(--primary-glow);
        align-self: flex-start;
    }

    .contact-card__btn:hover {
        background: linear-gradient(135deg, var(--primary-hover), var(--primary-dark));
        box-shadow: 0 8px 25px var(--primary-glow);
        transform: translateY(-2px);
    }

    .contact-card__btn--outline {
        background: transparent;
        color: var(--accent);
        border: 2px solid var(--accent);
        box-shadow: none;
    }

    .contact-card__btn--outline:hover {
        background: var(--accent);
        color: #fff;
        box-shadow: 0 8px 25px var(--accent-glow);
    }

    .contact-card__text a {
        color: var(--primary);
        font-weight: 700;
        text-decoration: underline;
    }

    .contact-card__text a:hover {
        color: var(--primary-hover);
    }
}

/* ===== AFISHA FILTERS ===== */
@layer components {
    .afisha-filters {
        display: flex;
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 40px;
    }

    .filter-chip {
        padding: 12px 24px;
        border-radius: var(--radius-full);
        font-weight: 700;
        font-size: 0.9rem;
        background: var(--bg-white);
        border: 2px solid var(--border);
        color: var(--text-secondary);
        cursor: pointer;
        transition: all var(--transition);
        font-family: inherit;
    }

    .filter-chip:hover {
        border-color: var(--primary);
        color: #fff;
        background: var(--primary);
    }

    .filter-chip--active {
        background: linear-gradient(135deg, var(--primary), var(--primary-hover));
        border-color: transparent;
        color: #fff;
        box-shadow: 0 4px 15px var(--primary-glow);
        transform: scale(0.97);
    }

    .filter-chip--active:hover {
        background: linear-gradient(135deg, var(--primary), var(--primary-hover));
        color: #fff;
    }
}

/* ===== AFISHA GRID ===== */
@layer components {
    .afisha-grid {
        display: flex;
        flex-direction: column;
        gap: 32px;
        max-width: 900px;
        margin: 0 auto;
    }

    .afisha-card {
        background: var(--bg-white);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: all var(--transition);
        border: 1px solid var(--border-light);
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
    }

    .afisha-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
        border-color: var(--primary-light-hover);
    }

    .afisha-card__image {
        position: relative;
        overflow: hidden;
        background: var(--bg-dark-secondary);
        min-height: 280px;
    }

    .afisha-card__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform var(--transition-slow);
    }

    .afisha-card:hover .afisha-card__image img {
        transform: scale(1.06);
    }

    .afisha-card__badge {
        position: absolute;
        top: 16px;
        left: 16px;
        padding: 7px 16px;
        border-radius: var(--radius-full);
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.5px;
        z-index: 2;
        color: #fff;
    }

    .afisha-card__badge--hot {
        background: rgba(95, 101, 160, 0.85);
        border: 1px solid rgba(95, 101, 160, 0.5);
    }

    .afisha-card__badge--concert {
        background: rgba(232, 67, 147, 0.85);
        border: 1px solid rgba(232, 67, 147, 0.5);
    }

    .afisha-card__badge--soon {
        background: rgba(0, 184, 148, 0.85);
        border: 1px solid rgba(0, 184, 148, 0.5);
    }

    .afisha-card__body {
        padding: 32px 28px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .afisha-card__meta {
        display: flex;
        gap: 16px;
        margin-bottom: 12px;
        flex-wrap: wrap;
    }

    .afisha-card__date,
    .afisha-card__category {
        font-size: 0.82rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 6px 14px;
        border-radius: var(--radius-full);
    }

    .afisha-card__date {
        background: var(--primary-light);
        color: var(--primary);
    }

    .afisha-card__date .svg-icon {
        font-size: 0.75rem;
    }

    .afisha-card__category {
        background: var(--bg-light);
        color: var(--text-secondary);
    }

    .afisha-card__category .svg-icon {
        font-size: 0.75rem;
    }

    .afisha-card__title {
        font-size: 1.6rem;
        font-weight: 900;
        color: var(--text-primary);
        margin-bottom: 8px;
        line-height: 1.2;
        letter-spacing: 0.5px;
    }

    .afisha-card__tagline {
        font-size: 0.95rem;
        color: var(--text-secondary);
        line-height: 1.6;
        margin-bottom: 20px;
        flex: 1;
    }

    .afisha-card__footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        flex-wrap: wrap;
    }

    .afisha-card__price {
        font-size: 1.3rem;
        font-weight: 800;
        color: var(--primary);
    }

    .afisha-card__price--soon {
        color: #00b894;
        font-size: 1rem;
        font-weight: 700;
    }
}

/* ===== SEO BLOCK ===== */
@layer components {
    .seo-block {
        background: var(--bg-white);
        border-radius: var(--radius-lg);
        padding: 48px 40px;
        box-shadow: var(--shadow);
        border: 1px solid var(--border-light);
    }

    .seo-block__content {
        max-width: 800px;
        margin: 0 auto;
    }

    .seo-block__content p {
        color: var(--text-secondary);
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 16px;
    }

    .seo-block__content p:last-child {
        margin-bottom: 0;
    }

    .seo-block__content strong {
        color: var(--text-primary);
    }
}

/* ===== INFO CARD ===== */
@layer components {
    .info-card {
        background: linear-gradient(135deg, var(--primary-light), var(--bg-white));
        border: 2px solid var(--primary-light-hover);
        border-radius: var(--radius-lg);
        padding: 32px;
        display: flex;
        gap: 24px;
        align-items: flex-start;
        margin-bottom: 48px;
    }

    .info-card__icon {
        width: 64px;
        height: 64px;
        min-width: 64px;
        background: linear-gradient(135deg, var(--primary), var(--primary-hover));
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 25px var(--primary-glow);
    }

    .info-card__icon .svg-icon {
        font-size: 1.8rem;
        color: #fff;
    }

    .info-card__content h3 {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 8px;
    }

    .info-card__content p {
        color: var(--text-secondary);
        line-height: 1.7;
        font-size: 0.95rem;
    }
}

/* ===== CONTACTS GRID ===== */
@layer components {
    .contacts-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 28px;
        max-width: 700px;
        margin: 0 auto;
    }

    .contact-card {
        background: var(--bg-white);
        border-radius: var(--radius-lg);
        padding: 36px 28px;
        box-shadow: var(--shadow);
        border: 1px solid var(--border-light);
        transition: all var(--transition);
        display: flex;
        flex-direction: column;
    }

    .contact-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

    .contact-card--support {
        border-top: 4px solid var(--primary);
    }

    .contact-card__icon {
        width: 56px;
        height: 56px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }

    .contact-card--support .contact-card__icon {
        background: var(--primary-light);
        color: var(--primary);
    }

    .contact-card__icon .svg-icon {
        font-size: 1.5rem;
    }

    .contact-card__title {
        font-size: 1.15rem;
        font-weight: 800;
        color: var(--text-primary);
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .contact-card__text {
        font-size: 0.95rem;
        color: var(--text-secondary);
        line-height: 1.7;
        margin-bottom: 20px;
        flex: 1;
    }

    .contact-card__btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 14px 24px;
        border-radius: var(--radius-full);
        font-weight: 700;
        font-size: 0.95rem;
        text-decoration: none;
        transition: all var(--transition);
        background: linear-gradient(135deg, var(--primary), var(--primary-hover));
        color: #fff;
        box-shadow: 0 4px 15px var(--primary-glow);
        align-self: flex-start;
    }

    .contact-card__btn:hover {
        background: linear-gradient(135deg, var(--primary-hover), var(--primary-dark));
        box-shadow: 0 8px 25px var(--primary-glow);
        transform: translateY(-2px);
    }
}

/* ===== RESPONSIVE ===== */

/* 1200px */
@media (max-width: 1200px) {
    .advantages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 1024px */
@media (max-width: 1024px) {
    /* Header */
    .header__nav {
        position: fixed;
        top: 0;
        left: -300px;
        width: 300px;
        height: 100vh;
        height: 100dvh;
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(20px);
        padding: 100px 24px 40px;
        transition: left var(--transition);
        z-index: 1001;
    }

    .header__nav--open {
        left: 0;
    }

    .header__nav-list {
        flex-direction: column;
        gap: 8px;
    }

    .header__nav-link {
        width: 100%;
        justify-content: flex-start;
    }

    .header__burger {
        display: flex;
    }

    /* Hero */
    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    /* Events */
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Advantages */
    .advantages-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Venue */
    .venue-short {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .transport-list {
        grid-template-columns: 1fr;
    }

    /* Fight block */
    .main-fight-block__versus {
        flex-direction: column;
        gap: 24px;
    }

    .main-fight-block__fighter {
        max-width: 100%;
    }
}

/* 768px */
@media (max-width: 768px) {
    /* Sections */
    .section {
        padding: 56px 0;
    }

    .section__icon {
        width: 56px;
        height: 56px;
    }

    .section__icon .svg-icon {
        font-size: 1.4rem;
    }

    /* Hero */
    .hero__title {
        letter-spacing: 2px;
    }

    .hero__subtitle {
        letter-spacing: 1px;
    }

    .hero__scroll {
        bottom: 60px;
    }

    .hero-lite {
        padding: 80px 0 32px;
    }

    /* Events */
    .events-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Advantages */
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Panorama & Map */
    .panorama-wrapper iframe,
    .map-wrapper iframe {
        height: 350px;
    }

    /* Venue Nav */
    .venue-nav {
        gap: 6px;
    }

    .venue-nav__link {
        padding: 10px 16px;
        font-size: 0.8rem;
    }

    .venue-section__title {
        font-size: 1.2rem;
        margin-bottom: 24px;
    }

    .venue-section__title::before,
    .venue-section__title::after {
        width: 30px;
    }

    /* Venue Gallery */
    .venue-gallery__item {
        width: calc(100% / 3 + 60px);
        margin: 0 -28px;
        clip-path: polygon(40px 0%, 100% 0%, calc(100% - 40px) 100%, 0% 100%);
    }

    .venue-gallery__item img {
        height: 200px;
    }

    .venue-gallery__item:hover {
        width: 150%;
    }

    /* Footer */
    .footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

    .footer__links {
        align-items: center;
    }

    .footer__col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* FAQ */
    .faq-item__question {
        padding: 16px 20px;
        font-size: 0.95rem;
    }

    .faq-item--open .faq-item__answer {
        padding: 16px 20px 20px;
    }

    /* CTA */
    .cta-block {
        padding: 48px 20px;
    }

    /* Buttons */
    .btn--tickets .btn__label .svg-icon {
        display: none;
    }

    /* Fight block */
    .main-fight-block {
        padding: 36px 20px;
    }

    .main-fight-block__fighter-photo {
        width: 120px;
        height: 120px;
    }

    .main-fight-block__fighter-name {
        font-size: 1.1rem;
    }

    .main-fight-block__vs-circle {
        width: 56px;
        height: 56px;
        font-size: 1.1rem;
    }

    /* Prices */
    .prices-table thead th,
    .prices-table tbody td {
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    /* Widget */
    .widget-placeholder {
        padding: 40px 20px;
    }

    /* Partner */
    .partner-block {
        padding: 32px 20px;
    }

    /* Event info */
    .event-info__row {
        padding: 14px 20px;
    }

    .event-info__icon {
        width: 40px;
        height: 40px;
    }

    .event-info__icon .svg-icon {
        font-size: 1.1rem;
    }

    .event-info__value {
        font-size: 1rem;
    }

    /* Afisha */
    .afisha-card {
        grid-template-columns: 1fr;
    }

    .afisha-card__image {
        min-height: 200px;
        max-height: 240px;
    }

    .afisha-card__body {
        padding: 24px 20px;
    }

    .afisha-card__title {
        font-size: 1.3rem;
    }

    .afisha-card__footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .afisha-card__footer .btn {
        width: 100%;
    }

    .seo-block {
        padding: 32px 20px;
    }

    .afisha-filters {
        gap: 8px;
    }

    .filter-chip {
        padding: 10px 18px;
        font-size: 0.8rem;
    }

    /* Contacts */
    .info-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .contact-card {
        padding: 28px 20px;
    }

    /* Steps */
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contacts-grid {
        grid-template-columns: 1fr;
    }

    .rules-block {
        padding: 24px 20px;
    }

    .refund-table th,
    .refund-table td {
        padding: 10px 14px;
        font-size: 0.85rem;
    }
}

/* 480px */
@media (max-width: 480px) {
    /* Container */
    .container {
        padding: 0 16px;
    }

    /* Buttons */
    .btn {
        padding: 12px 22px;
        font-size: 0.9rem;
    }

    .btn--lg {
        padding: 16px 32px;
        font-size: 1rem;
    }

    .btn--tickets {
        padding: 12px 18px;
        font-size: 0.85rem;
    }

    /* Events */
    .events-grid {
        max-width: 100%;
    }

    .event-card__body {
        padding: 20px 16px 16px;
    }

    /* Hero */
    .hero__content {
        padding: 30px 16px;
    }

    /* Advantages */
    .advantages-grid {
        grid-template-columns: 1fr;
    }

    /* Panorama & Map */
    .panorama-wrapper iframe,
    .map-wrapper iframe {
        height: 280px;
    }

    /* Venue Nav */
    .venue-nav {
        flex-direction: column;
        align-items: center;
    }

    .venue-section__title {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .venue-section__title::before,
    .venue-section__title::after {
        width: 24px;
        height: 2px;
    }

    /* Venue Gallery */
    .venue-gallery__item {
        width: calc(100% / 2 + 50px);
        margin: 0 -22px;
        clip-path: polygon(30px 0%, 100% 0%, calc(100% - 30px) 100%, 0% 100%);
    }

    .venue-gallery__item img {
        height: 160px;
    }

    .venue-gallery__item:hover {
        width: 180%;
    }

    /* Fight block */
    .main-fight-block {
        padding: 28px 16px;
    }

    .main-fight-block__fighter-photo {
        width: 100px;
        height: 100px;
    }

    .main-fight-block__vs-circle {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }

    /* Prices */
    .prices-table thead th,
    .prices-table tbody td {
        padding: 10px 12px;
        font-size: 0.8rem;
    }

    /* Event info */
    .event-info__row {
        padding: 12px 16px;
        gap: 12px;
    }

    .event-info__label {
        font-size: 0.75rem;
    }

    .event-info__value {
        font-size: 0.9rem;
    }

    /* About text */
    .about-text {
        font-size: 0.95rem;
    }

    /* Afisha */
    .afisha-card__image {
        min-height: 180px;
        max-height: 200px;
    }

    .afisha-card__body {
        padding: 20px 16px;
    }

    .afisha-card__title {
        font-size: 1.15rem;
    }

    .afisha-card__tagline {
        font-size: 0.85rem;
    }

    .afisha-card__meta {
        gap: 8px;
    }

    .afisha-card__date,
    .afisha-card__category {
        font-size: 0.75rem;
        padding: 5px 10px;
    }

    /* Contacts */
    .info-card {
        padding: 24px 16px;
    }

    .contact-card__btn {
        width: 100%;
        justify-content: center;
    }

    /* Steps */
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .step-card {
        padding: 24px 16px;
    }

    /* FAQ */
    .faq-item__question {
        padding: 16px 20px;
        font-size: 0.95rem;
    }

    .faq-item--open .faq-item__answer {
        padding: 16px 20px 20px;
    }
}