/* Club page hero — фон-слайдер как карта на главной */
.club-hero {
    position: relative;
    min-height: clamp(600px, 72vh, 820px);
    padding-top: var(--header-height);
    overflow: hidden;
}

.club-hero__bg {
    position: absolute;
    inset: 0;
    top: var(--header-height);
    z-index: 0;
}

.club-hero__slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.club-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    overflow: hidden;
    transition: opacity 1.6s ease-in-out;
    backface-visibility: hidden;
    will-change: opacity;
    z-index: 0;
}

.club-hero__slide--active {
    opacity: 1;
    z-index: 1;
}

.club-hero__slide-bg {
    position: absolute;
    inset: 0;
    background-color: var(--accent-light);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(1);
    will-change: transform;
}

.club-hero__slide--active .club-hero__slide-bg {
    animation: clubHeroKenBurns 8s ease-out forwards;
}

.club-hero__slide--leaving .club-hero__slide-bg {
    animation: none;
}

@keyframes clubHeroKenBurns {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}

.club-hero__gradient {
    position: absolute;
    inset: 0;
    top: var(--header-height);
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            transparent 0%,
            transparent 45%,
            rgba(15, 15, 30, 0.35) 72%,
            rgba(15, 15, 30, 0.88) 100%
        ),
        linear-gradient(
            90deg,
            var(--bg-primary) 0%,
            rgba(15, 15, 30, 0.96) 26%,
            rgba(15, 15, 30, 0.82) 42%,
            rgba(15, 15, 30, 0.45) 58%,
            rgba(15, 15, 30, 0.1) 75%,
            transparent 90%
        );
}

.club-hero__content {
    position: relative;
    z-index: 2;
    padding-block: calc(24px + var(--page-title-margin-top, 24px)) 202px;
    min-height: calc(clamp(600px, 72vh, 820px) - var(--header-height));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.breadcrumbs a {
    color: var(--text-secondary);
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: var(--text-primary);
}

.club-hero__main {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
    min-width: 0;
    max-width: 640px;
}

.club-hero__layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    width: 100%;
}

.club-hero__title-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
}

.club-hero__title {
    font-size: var(--detail-title-size);
    font-weight: var(--detail-title-weight);
    line-height: var(--detail-title-lh);
    letter-spacing: -0.02em;
}

.club-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-bottom: 16px;
    font-size: 14px;
}

.club-hero__address {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-secondary);
}

.club-hero__address svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--accent-light);
}

.club-hero__metro {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 8px;
    white-space: nowrap;
}

.club-hero__rating {
    color: var(--warning);
    font-weight: 700;
}

.club-hero__reviews,
.club-hero__verified {
    color: var(--text-secondary);
}

.club-hero__verified {
    color: var(--accent-light);
}

.club-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.tag {
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(94, 72, 249, 0.15);
    border: 1px solid rgba(94, 72, 249, 0.25);
    color: var(--accent-light);
    font-size: 14px;
    font-weight: 600;
}

.club-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.club-hero__actions form {
    display: inline;
}

.btn--favorite-active {
    border-color: rgba(255, 100, 130, 0.5);
    color: #ff8fab;
}

.club-hero__text {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-secondary);
}

.club-hero__live {
    flex-shrink: 0;
    width: min(100%, 320px);
    padding: 18px 18px 16px;
    border-radius: var(--radius-lg);
    background: rgba(12, 12, 24, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.club-hero__live-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
}

.club-hero__live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
    animation: club-hero-live-pulse 1.6s ease-in-out infinite;
}

@keyframes club-hero-live-pulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
    }

    50% {
        opacity: 0.75;
        box-shadow: 0 0 0 7px rgba(34, 197, 94, 0);
    }
}

.club-hero__live-name {
    display: block;
    margin-bottom: 6px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
    text-decoration: none;
}

.club-hero__live-name:hover {
    color: var(--accent-light);
}

.club-hero__live-time {
    margin: 0 0 4px;
    font-size: 13px;
    color: var(--text-secondary);
}

.club-hero__live-countdown {
    margin: 0 0 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-light);
}

.club-hero__live-countdown--live {
    color: #4ade80;
}

.club-hero__live-stats {
    display: flex;
    align-items: flex-end;
    gap: 18px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.club-hero__live-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.club-hero__live-stat strong {
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    color: var(--text-primary);
}

.club-hero__live-stat span {
    font-size: 12px;
    line-height: 1.35;
    color: var(--text-muted);
}

.club-hero__live-stat--main strong {
    font-size: 34px;
    color: var(--accent-light);
}

.badge--closed {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
}

/* Quick info — парящие карточки поверх hero */
.club-quick {
    position: relative;
    z-index: 4;
    margin-top: -50px;
    padding-block: 0 24px;
}

.club-quick__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.club-quick__card {
    position: relative;
    background: var(--surface-blur-bg);
    backdrop-filter: var(--surface-blur-filter);
    -webkit-backdrop-filter: var(--surface-blur-filter);
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: none;
    padding: 20px;
    min-height: 168px;
}

.club-quick__card h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}

.club-quick__card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.club-quick__card strong {
    color: var(--text-primary);
}

.club-quick__accent {
    color: var(--text-primary) !important;
    font-weight: 600;
}

.club-quick__metro {
    display: flex;
    align-items: center;
    gap: 8px;
}

.club-quick__link {
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
    color: var(--accent-light);
    font-weight: 600;
}

.club-quick__card .badge {
    margin-top: 10px;
}

.club-quick__note {
    font-size: 14px;
    color: var(--text-muted);
}

/* Visit reasons */
.club-visit-reasons {
    padding-block: 8px 32px;
}

.club-visit-reasons__title {
    margin: 0 0 20px;
    font-size: clamp(22px, 2.4vw, 28px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.club-visit-reasons__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.club-visit-reason {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    min-height: 168px;
    padding: 22px 16px 20px;
    text-align: center;
    border-radius: var(--radius-lg);
    background: var(--surface-blur-bg);
    backdrop-filter: var(--surface-blur-filter);
    -webkit-backdrop-filter: var(--surface-blur-filter);
    border: 1px solid var(--border);
}

.club-visit-reason__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    color: var(--text-primary);
}

.club-visit-reason__icon::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    opacity: 0.55;
    filter: blur(14px);
    z-index: 0;
}

.club-visit-reason__icon svg {
    position: relative;
    z-index: 1;
}

.club-visit-reason--gift .club-visit-reason__icon {
    background: rgba(236, 72, 153, 0.16);
    color: #f9a8d4;
}

.club-visit-reason--gift .club-visit-reason__icon::before {
    background: radial-gradient(circle, rgba(236, 72, 153, 0.55) 0%, rgba(236, 72, 153, 0) 72%);
}

.club-visit-reason--fire .club-visit-reason__icon {
    background: rgba(249, 115, 22, 0.16);
    color: #fdba74;
}

.club-visit-reason--fire .club-visit-reason__icon::before {
    background: radial-gradient(circle, rgba(249, 115, 22, 0.55) 0%, rgba(249, 115, 22, 0) 72%);
}

.club-visit-reason--players .club-visit-reason__icon {
    background: rgba(34, 197, 94, 0.16);
    color: #86efac;
}

.club-visit-reason--players .club-visit-reason__icon::before {
    background: radial-gradient(circle, rgba(34, 197, 94, 0.5) 0%, rgba(34, 197, 94, 0) 72%);
}

.club-visit-reason--xp .club-visit-reason__icon {
    background: rgba(245, 158, 11, 0.16);
    color: #fcd34d;
}

.club-visit-reason--xp .club-visit-reason__icon::before {
    background: radial-gradient(circle, rgba(245, 158, 11, 0.55) 0%, rgba(245, 158, 11, 0) 72%);
}

.club-visit-reason--seats .club-visit-reason__icon {
    background: rgba(59, 130, 246, 0.16);
    color: #93c5fd;
}

.club-visit-reason--seats .club-visit-reason__icon::before {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.5) 0%, rgba(59, 130, 246, 0) 72%);
}

.club-visit-reason__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
    color: var(--text-secondary);
}

.club-visit-reason__text strong {
    color: var(--text-primary);
    font-weight: 700;
}

.club-visit-reason__mark {
    color: #fbbf24;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.club-visit-reason__link {
    color: var(--accent-light);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.club-visit-reason__link:hover {
    color: var(--text-primary);
}

/* Tabs */
.club-tabs-wrap {
    position: sticky;
    top: var(--header-height);
    z-index: 25;
    margin-bottom: 32px;
    background: rgba(15, 15, 30, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.club-tabs-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 32px;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(270deg, rgba(15, 15, 30, 0.98) 20%, transparent);
}

.club-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-block: 16px;
    padding-right: 32px;
    position: relative;
    z-index: 1;
}

.club-tabs::-webkit-scrollbar {
    display: none;
}

.club-tabs__link {
    flex-shrink: 0;
    padding: 10px 16px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: background 0.2s, color 0.2s;
}

.club-tabs__link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.club-tabs__link--active {
    color: #fff;
    background: rgba(94, 72, 249, 0.2);
}

/* Layout */
.club-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    padding-bottom: 64px;
}

.club-block,
.club-aside[id] {
    scroll-margin-top: calc(var(--header-height) + 72px);
}

.club-block {
    margin-bottom: 48px;
}

.club-block h2,
.club-aside h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.club-block__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.club-block__head h2 {
    margin-bottom: 0;
}

/* Schedule slider */
.club-block__head--schedule {
    align-items: flex-start;
    gap: 16px;
}

.club-block__head--schedule .club-block__head-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
}

.club-schedule-slider {
    position: relative;
    margin: -4px 0 0;
    padding: 4px 0 8px;
}

.club-schedule-slider__track {
    display: flex;
    align-items: stretch;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 2px 8px;
}

.club-schedule-slider__track::-webkit-scrollbar {
    display: none;
}

.club-schedule-slider__slide {
    flex: 0 0 calc((100% - 32px) / 3);
    min-width: 0;
    display: flex;
    scroll-snap-align: start;
}

.club-schedule-slider__slide .club-schedule-card {
    width: 100%;
}

.club-schedule-card {
    display: flex;
    flex-direction: column;
    min-height: 248px;
    padding: 18px;
    background: var(--surface-blur-bg);
    backdrop-filter: var(--surface-blur-filter);
    -webkit-backdrop-filter: var(--surface-blur-filter);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.club-schedule-card__badge {
    align-self: flex-start;
    margin-bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

.club-schedule-card__badge--today {
    background: rgba(94, 72, 249, 0.18);
    border-color: rgba(94, 72, 249, 0.35);
    color: #c4b5fd;
}

.club-schedule-card__title {
    margin: 0 0 16px;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.club-schedule-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.club-schedule-card__title a:hover {
    color: var(--accent-light);
}

.club-schedule-card__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 14px;
}

.club-schedule-card__stat-label {
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    color: var(--text-muted);
}

.club-schedule-card__stat-value {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

.club-schedule-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.club-schedule-card__chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    font-size: 12px;
    line-height: 1.2;
    color: var(--text-secondary);
}

.club-schedule-card__chip svg {
    flex-shrink: 0;
    opacity: 0.75;
}

.club-schedule-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 4px;
}

.club-schedule-card__seats {
    font-size: 13px;
    color: var(--text-secondary);
}

.club-schedule-card__seats--muted {
    color: var(--text-muted);
}

.club-schedule-card__cta {
    flex-shrink: 0;
}

/* About */
.club-about__text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Contacts */
.club-contacts {
    list-style: none;
}

.club-contacts li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.club-contacts li span:first-child {
    color: var(--text-muted);
}

/* Sidebar */
.club-aside {
    background: var(--surface-blur-bg);
    backdrop-filter: var(--surface-blur-filter);
    -webkit-backdrop-filter: var(--surface-blur-filter);
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: none;
    padding: 20px;
    margin-bottom: 20px;
}

.club-aside__list,
.club-aside__checks {
    list-style: none;
}

.club-aside__list li,
.club-aside__checks li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.club-aside__list li:last-child,
.club-aside__checks li:last-child {
    border-bottom: none;
}

.club-aside__facts {
    list-style: none;
}

.club-aside__facts li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
}

.club-aside__facts li:last-child {
    border-bottom: none;
}

.club-aside__facts li span {
    color: var(--text-secondary);
}

.club-aside__facts li strong {
    color: var(--text-primary);
    font-weight: 700;
}

.club-aside__since {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-muted);
}

.club-map {
    height: 180px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 12px;
    background: var(--bg-secondary);
}

.club-aside .btn--full {
    width: 100%;
}

.club-promotions {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    padding: 4px 2px 12px;
    margin: 0 -2px;
}

.club-promotions::-webkit-scrollbar {
    height: 6px;
}

.club-promotions::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 999px;
}

.club-promo {
    display: flex;
    flex-direction: column;
    flex: 0 0 280px;
    width: 280px;
    background: var(--surface-blur-bg);
    backdrop-filter: var(--surface-blur-filter);
    -webkit-backdrop-filter: var(--surface-blur-filter);
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: none;
    overflow: hidden;
    scroll-snap-align: start;
    padding: 0;
    text-align: left;
    font: inherit;
    color: inherit;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.club-promo:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.club-promo:focus-visible {
    outline: 2px solid var(--accent-light);
    outline-offset: 2px;
}

.club-promo--expired {
    opacity: 0.72;
}

.club-promo__image {
    position: relative;
    height: 168px;
    flex-shrink: 0;
    overflow: hidden;
    background: var(--bg-secondary);
}

.club-promo__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.club-promo__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 15, 30, 0.12) 0%, rgba(15, 15, 30, 0.82) 100%);
    pointer-events: none;
}

.club-promo__image-title {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 12px;
    z-index: 1;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
}

.club-promo__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 14px 16px 16px;
}

.club-promo__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.club-promo__date {
    font-size: 14px;
    color: var(--text-muted);
}

.club-promo__badge {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
}

.club-promo__badge--expired {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
}

.club-promo__badge--upcoming {
    background: rgba(94, 72, 249, 0.15);
    color: var(--accent-light);
}

.club-promo__body h3 {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.35;
}

.club-promo__body p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.club-promo__more {
    display: inline-block;
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-light);
}

.content-modal__dialog--promo {
    width: min(640px, 100%);
    padding: 0;
    overflow: auto;
}

.content-modal__dialog--promo .content-modal__close {
    z-index: 2;
    background: rgba(8, 8, 18, 0.72);
}

.club-promo-modal__image {
    background: var(--bg-secondary);
    line-height: 0;
}

.club-promo-modal__image img {
    width: 100%;
    height: auto;
    display: block;
}

.club-promo-modal__content {
    padding: 24px;
}

.club-promo-modal__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.club-promo-modal__title {
    margin: 0 0 16px;
    font-size: 24px;
    line-height: 1.3;
}

.club-promo-modal__text {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.65;
}

.club-promo-modal--expired .club-promo-modal__image {
    opacity: 0.85;
}

.club-faq {
    display: grid;
    gap: 10px;
}

.club-faq__item {
    background: var(--surface-blur-bg);
    backdrop-filter: var(--surface-blur-filter);
    -webkit-backdrop-filter: var(--surface-blur-filter);
    border: none;
    border-radius: var(--radius-md);
    box-shadow: none;
    overflow: hidden;
}

.club-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border: none;
    background: transparent;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.club-faq__question svg {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform 0.2s;
}

.club-faq__item--open .club-faq__question svg {
    transform: rotate(180deg);
}

.club-faq__answer {
    display: none;
    padding: 0 18px 16px;
}

.club-faq__item--open .club-faq__answer {
    display: block;
}

.club-faq__answer p {
    color: var(--text-secondary);
    line-height: 1.65;
}

@media (max-width: 1100px) {
    .club-quick__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .club-visit-reasons__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .club-reviews-slider__slide {
        flex-basis: calc((100% - 32px) / 3);
    }

    .club-schedule-slider__slide {
        flex-basis: calc((100% - 16px) / 2);
    }

    .club-layout {
        grid-template-columns: 1fr;
    }

    .club-layout__aside {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .club-aside {
        margin-bottom: 0;
    }

    .club-aside--map {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    /* Mobile: галерея сверху (в потоке), текст сразу под ней — без padding-bottom-пустоты */
    .club-hero {
        display: flex;
        flex-direction: column;
        min-height: 0;
        padding-bottom: 0;
        padding-top: var(--header-height);
        overflow: visible;
    }

    .club-hero__bg {
        position: relative;
        top: 0;
        inset: auto;
        width: 100%;
        height: clamp(200px, 48vw, 280px);
        flex-shrink: 0;
    }

    .club-hero__gradient {
        top: var(--header-height);
        left: 0;
        right: 0;
        height: clamp(200px, 48vw, 280px);
        bottom: auto;
        background:
            linear-gradient(
                180deg,
                rgba(15, 15, 30, 0.08) 0%,
                transparent 42%,
                rgba(15, 15, 30, 0.28) 78%,
                rgba(15, 15, 30, 0.55) 100%
            ),
            linear-gradient(
                90deg,
                rgba(15, 15, 30, 0.35) 0%,
                transparent 48%
            );
    }

    .club-hero__slide-bg {
        background-color: #1a1a2e;
    }

    .club-hero__content {
        position: relative;
        min-height: 0;
        padding-block: 14px 18px;
        justify-content: flex-start;
    }

    .club-hero__content .breadcrumbs {
        margin-bottom: 12px;
    }

    .club-hero__text {
        margin-bottom: 0;
    }

    .club-hero__main {
        flex-direction: column;
        align-items: flex-start;
        max-width: none;
        gap: 16px;
    }

    .club-hero__layout {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
    }

    .club-hero__live {
        width: 100%;
    }

    .club-hero__actions {
        width: 100%;
    }

    .club-hero__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .club-quick {
        margin-top: 0;
        padding-bottom: 16px;
    }

    .club-quick__grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .club-quick__card:first-child {
        grid-column: 1 / -1;
    }

    .club-quick__card {
        min-height: 0;
        padding: 16px;
    }

    .club-visit-reasons {
        padding-block: 4px 24px;
    }

    .club-visit-reasons__title {
        margin-bottom: 16px;
        font-size: 22px;
    }

    .club-visit-reasons__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .club-visit-reason {
        min-height: 0;
        padding: 18px 14px 16px;
        gap: 12px;
    }

    .club-visit-reason__icon {
        width: 50px;
        height: 50px;
        border-radius: 16px;
    }

    .club-visit-reason__text {
        font-size: 13px;
    }

    .club-block__head--reviews {
        flex-direction: column;
        align-items: stretch;
    }

    .club-block__head--reviews .slider-nav {
        align-self: flex-end;
    }

    .club-reviews-slider__slide {
        flex-basis: calc((100% - 16px) / 2);
    }

    .club-review--compact {
        min-height: 200px;
    }

    .club-block__head--schedule {
        flex-direction: column;
        align-items: stretch;
    }

    .club-block__head--schedule .slider-nav {
        align-self: flex-end;
    }

    .club-schedule-slider__slide {
        flex-basis: calc(100% - 48px);
        min-width: calc(100% - 48px);
    }

    .club-schedule-slider {
        margin-inline: -16px;
        padding-inline: 16px;
    }

    .club-schedule-card {
        min-height: 0;
    }

    .club-schedule-card__title {
        font-size: 18px;
    }

    .club-tabs-wrap {
        margin-bottom: 20px;
    }

    .club-tabs-wrap::after {
        width: 28px;
    }

    .club-tabs {
        padding-block: 10px;
        padding-right: 28px;
    }

    .club-tabs__link {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        padding: 8px 12px;
    }

    .club-block,
    .club-aside[id] {
        scroll-margin-top: calc(var(--header-height) + 56px);
    }

    .club-layout__aside {
        grid-template-columns: 1fr;
    }
}

/* Reviews */
.club-review-form {
    margin-bottom: 24px;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.03);
}

.club-review-form--hidden {
    display: none;
}

.club-review-stars {
    border: none;
    margin: 0 0 16px;
    padding: 0;
}

.club-review-stars legend {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.club-review-stars__input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 4px;
}

.club-review-stars__radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.club-review-stars__label {
    cursor: pointer;
    color: var(--text-muted);
    font-size: 24px;
    line-height: 1;
}

.club-review-stars__radio:checked ~ .club-review-stars__label,
.club-review-stars__label:hover,
.club-review-stars__label:hover ~ .club-review-stars__label {
    color: #f5c542;
}

.club-review-form__field {
    display: grid;
    gap: 6px;
    margin-bottom: 12px;
}

.club-review-form__field span {
    font-size: 14px;
    color: var(--text-secondary);
}

.club-review-form__field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    font: inherit;
    resize: vertical;
}

.club-review-form__field--error textarea {
    border-color: #ff7a7a;
}

.club-review-form__error {
    font-size: 13px;
    color: #ff9b9b;
}

.club-review-form__error[hidden] {
    display: none;
}

.club-review-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 14px;
}

.club-review-form__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.club-block__head--reviews {
    align-items: flex-start;
    gap: 16px;
}

.club-block__head-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.club-reviews-slider {
    position: relative;
    margin: -4px 0 0;
    padding: 4px 0 8px;
}

.club-reviews-slider__track {
    display: flex;
    align-items: stretch;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 2px 8px;
}

.club-reviews-slider__track::-webkit-scrollbar {
    display: none;
}

.club-reviews-slider__slide {
    flex: 0 0 calc((100% - 48px) / 4);
    min-width: 0;
    display: flex;
    scroll-snap-align: start;
}

.club-reviews-slider__slide .club-review {
    width: 100%;
}

.club-reviews {
    display: grid;
    gap: 14px;
}

.club-review {
    display: flex;
    flex-direction: column;
    padding: 18px;
    background: var(--surface-blur-bg);
    backdrop-filter: var(--surface-blur-filter);
    -webkit-backdrop-filter: var(--surface-blur-filter);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: none;
}

.club-review--compact {
    min-height: 220px;
}

.club-review__head {
    margin-bottom: 12px;
}

.club-review__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.club-review__author a {
    color: inherit;
    text-decoration: none;
}

.club-review__author a:hover {
    color: var(--accent-light);
}

.club-review__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.club-review__avatar--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(94, 72, 249, 0.2);
    color: var(--accent-light);
    font-weight: 700;
}

.club-review__meta strong {
    display: block;
    font-size: 15px;
    line-height: 1.3;
}

.club-review__date {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
}

.club-review__rating-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.club-review__stars {
    display: inline-flex;
    gap: 2px;
}

.club-review__star {
    font-size: 14px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.18);
}

.club-review__star--filled {
    color: #f5c542;
}

.club-review__verified {
    font-size: 12px;
    font-weight: 600;
    color: #8debb0;
}

.club-review__text {
    flex: 1;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-secondary);
    margin: 0 0 12px;
}

.club-review--compact .club-review__text {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.club-review__cols {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 10px;
}

.club-review__label {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.club-review__cols p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
}

.club-review__reply-toggle {
    align-self: flex-start;
    margin-top: auto;
    padding: 0;
    border: 0;
    background: none;
    color: var(--text-secondary);
    font: inherit;
    font-size: 13px;
    line-height: 1.4;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 3px;
    cursor: pointer;
    transition: color 0.2s;
}

.club-review__reply-toggle:hover,
.club-review__reply-toggle[aria-expanded='true'] {
    color: var(--text-primary);
}

.club-review__reply {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border);
}

.club-review__reply p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.club-review__reply time {
    font-size: 13px;
    color: var(--text-muted);
}

.club-hero__slide-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

.club-media-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
}

.club-media-gallery__item {
    position: relative;
    aspect-ratio: 4 / 3;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    transition: border-color 0.2s, transform 0.2s;
}

.club-media-gallery__item:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.club-media-gallery__item img,
.club-media-gallery__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.club-media-gallery__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.club-media-gallery__item--more {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(94, 72, 249, 0.12);
    border-color: rgba(94, 72, 249, 0.35);
}

.club-media-gallery__more {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-light);
}

#club-ratings .rating-period-wrap {
    margin-bottom: 14px;
}

#club-ratings .players-rating {
    margin-top: 4px;
}

.club-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(8, 8, 18, 0.88);
    backdrop-filter: blur(8px);
}

.club-lightbox.hidden {
    display: none;
}

body.club-lightbox-open {
    overflow: hidden;
}

.club-lightbox__stage {
    width: min(960px, 100%);
    max-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.club-lightbox__image,
.club-lightbox__video {
    max-width: 100%;
    max-height: calc(100vh - 120px);
    border-radius: var(--radius-md);
    background: #000;
}

.club-lightbox__video {
    width: min(960px, 100%);
}

.club-lightbox__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: rgba(15, 15, 30, 0.85);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.club-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: rgba(15, 15, 30, 0.85);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.club-lightbox__nav--prev {
    left: 20px;
}

.club-lightbox__nav--next {
    right: 20px;
}

@media (max-width: 640px) {
    .club-lightbox {
        padding: 12px;
    }

    .club-lightbox__nav {
        top: auto;
        bottom: 20px;
        transform: none;
    }

    .club-lightbox__nav--prev {
        left: 12px;
    }

    .club-lightbox__nav--next {
        right: 12px;
    }
}

@media (max-width: 480px) {
    .club-quick__grid {
        grid-template-columns: 1fr;
    }

    .club-visit-reasons__grid {
        grid-template-columns: 1fr;
    }

    .club-reviews-slider__slide {
        flex-basis: calc(100% - 48px);
        min-width: calc(100% - 48px);
    }

    .club-reviews-slider {
        margin-inline: -16px;
        padding-inline: 16px;
    }

    .club-review-form__grid,
    .club-review__cols {
        grid-template-columns: 1fr;
    }
}
