.page-main {
    width: 100%;
    overflow: visible;
}
.section {
    margin-bottom: 80px;
	margin-top: 104px;
}
.container-page {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
@media (max-width: 768px) {

    .section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}
@media (max-width: 768px) {

    .section-head > *:last-child {
        align-self: flex-start;
    }
	    .section-head > *:last-child {
        width: 100%;
    }
}
.pageh2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}
@media (max-width: 900px) {
    .pageh2 {
        font-size: 32px;
        line-height: 1.3;
    }
}
@media (max-width: 480px) {
    .pageh2 {
        font-size: 24px;
        line-height: 1.35;
    }
}
.section-link {
    display: inline-block;

    padding: 6px 12px;
    border: 1px solid rgba(255,255,255,0.6);
    min-width: 140px;
    text-align: center;

    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;

    transition: 0.3s ease;
}
.section-link-white {
    display: inline-block;

    padding: 6px 12px;
    border: 1px solid #0000004f;
    min-width: 140px;
    text-align: center;

    font-size: 14px;
    font-weight: 700;
    color: #000000;
    text-decoration: none;

    transition: 0.3s ease;
}
.section-link-white:hover{color:#fff;background:#000;}

/* убираем старую линию */
.section-link::after {
    display: none;
}

/* 🔥 glow как у телефона */
.section-link:hover {
    border-color: #fff;

    box-shadow:
        0 0 12px rgba(255,255,255,0.6),
        0 0 30px rgba(255,255,255,0.3);
}
.section-head {
    display: flex;
    align-items: center;
	margin-bottom: 20px;
}

.section-link {
    margin-left: auto;
    white-space: nowrap;
}
/* ===== WRAP ===== */
.reviews-wrap {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    margin-top: 30px;
}

/* ===== LEFT / RIGHT ===== */
.reviews-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ===== REVIEW CARD ===== */
.review-item {
	    display: flex !important;
    flex-direction: row !important;
    position: relative;
    background: linear-gradient(145deg, #1c1c1c, #121212);
    padding: 22px;
    border-radius: 18px;
    overflow: hidden;
	gap:16px;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-item:hover {
    transform: translateY(-4px);
    box-shadow:
        0 10px 30px rgba(0,0,0,0.6),
        0 0 20px rgba(255,255,255,0.06);
}

/* subtle glow border */
.review-item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 1px;
    background: linear-gradient(120deg, rgba(255,255,255,0.08), transparent);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
}

/* ===== TOP ===== */
.review-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.reviews-list {display: grid;gap: 12px;}
.review-avatar-wrap {
    flex: 0 0 60px;
}
.review-avatar {
    width: 100px;
    height: 100px;
    border-radius: 10%;
    object-fit: cover;
}
.review-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}


/* NAME */
.review-name {
    font-weight: 700;
    font-size: 15px;
}

/* STARS */
.review-stars {
    font-size: 14px;
    letter-spacing: 2px;
    color: #ffd54f;

    text-shadow: 0 0 6px rgba(255, 213, 79, 0.5);
}

/* TEXT */
.review-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
}

/* ===== FAQ ===== */
.faq-item {
    position: relative;
    background: #151515;
    padding: 20px 22px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.06);

    transition: 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 0 20px rgba(255,255,255,0.04);
}

/* ===== QUESTION ===== */
.faq-question {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 8px;
}

/* ===== ANSWER ===== */
.faq-answer {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.75);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.25s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    opacity: 1;
}

/* курсор */
.faq-question {
    cursor: pointer;
    position: relative;
}
.faq-list {display: grid;
    gap: 12px;}
/* плюсик */
.faq-question::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    transition: 0.3s;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

/* ===== INTRO ===== */
.section-intro {
    margin-bottom: 30px;
	font-size: 14px;
    line-height: 1.6;
}

.suptitle {
    font-size: 12px;
    opacity: 0.5;
    margin-bottom: 18px;
}

.section-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.section-desc {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
	margin-bottom:20px;
}
@media (max-width: 900px) {

    .section-intro {
        margin-bottom: 20px;
        font-size: 13px;
        line-height: 1.6;
    }

    .suptitle {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .section-title {
        font-size: 20px;
        line-height: 1.3;
        margin-bottom: 8px;
    }
.section-head {align-items:start;}
    .section-desc {
        font-size: 13px;
        margin-bottom: 15px;
    }
	.section-head-left {text-align:left;}
}
@media (max-width: 480px) {

    .section-intro {
        margin-bottom: 16px;
    }

    .suptitle {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .section-title {
        font-size: 18px;
    }

    .section-desc {
        font-size: 12.5px;
        line-height: 1.5;
    }
	.section {margin-top:20px;margin-bottom:20px;}
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
    .reviews-wrap {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
.section-events {
    background: #fff;
    color: #111;
    padding: 80px 0;
	margin-top:0;
}

.section-events .pageh2 {
    color: #111;
}

.section-events .section-desc {
    color: rgba(0,0,0,0.7);
}

/* === LAYOUT === */
.events-wrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-top: 40px;
}

/* === LIST === */
.events-list {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 14px;
}

/* === ITEM === */
.event-item {
    position: relative;
    font-size: 18px;
    padding: 14px 0;
    cursor: pointer;
    color: #555;
    transition: 0.3s ease;
}

/* линия */
.event-item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 0;
    background: #000;
    transition: 0.35s ease;
}

/* hover */
.event-item:hover {
    color: #000;
    transform: translateX(8px);
}

.event-item:hover::after {
    width: 100%;
}

/* active */
.event-item.active {
    color: #000;
}

.event-item.active::after {
    width: 100%;
}

/* === IMAGE WRAP === */
.events-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

/* изображение */
.events-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;

    transition: opacity 0.35s ease, transform 0.6s ease;
}

/* анимация смены */
.events-image img.fade-out {
    opacity: 0;
    transform: scale(1.05);
}

/* лёгкий hover эффект */
.events-image:hover img {
    transform: scale(1.03);
}

/* === BUTTON === */
.events-cta {
    margin-top: auto;
    padding-top: 20px;
}

.events-btn {
    display: inline-flex;
    align-items: center;
    color: #000;
    text-decoration: none;
    transition: 0.3s ease;
}
.btn-text,
.btn-icon {
    border: 1px solid #000;
    transition: 0.3s ease;
}
.btn-text {padding: 10px 18px;}
.btn-icon {padding: 10px 12px;}

.btn-text {
    margin-right: 6px;
}

.events-btn:hover .btn-text,
.events-btn:hover .btn-icon {
    background: #000;
    color: #fff;
}
.events-btn img {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.events-btn:hover img {
    filter: invert(1);
}

/* === MOBILE === */
@media (max-width: 900px) {
    .events-wrap {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .events-image img {
        height: 280px;
    }
}
/* === SECTION === */
.section-gallery {
    background: #F8F8F8;
    padding: 80px 0;
    color: #111;
	margin-bottom:0;
}

.section-gallery .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-gallery .section-desc {
    margin: 20px 0 40px;
    color: rgba(0,0,0,0.7);
}

/* === GRID === */
.gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
    align-items: stretch;
	margin-top:40px;
}

/* === MAIN === */
.gallery-main {
    display: block;
    height: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

/* === RIGHT SIDE === */
.gallery-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: 100%;
}

/* === ITEMS === */
.gallery-item {
    display: block;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

/* === HOVER === */
.gallery-item:hover img,
.gallery-main:hover img {
    transform: scale(1.05);
}

/* === MOBILE === */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-main {
        height: 280px;
    }

    .gallery-side {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
}
.gallery-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 9999;
}

.gallery-modal.active {
    opacity: 1;
    visibility: visible;
}

.gallery-modal-inner {
    text-align: center;
    max-width: 900px;
}

.gallery-modal-img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 12px;
}

.gallery-modal-caption {
    margin-top: 15px;
    color: rgba(255,255,255,0.75);
}

.gallery-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}
/* HERO */
.hero {
    position: relative;
    min-height: 90vh;
    color: #fff;
    overflow: hidden;
	margin-top:0;
}

/* фон */
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* затемнение */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

/* GRID */
.hero-inner {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;

    min-height: 90vh;
    align-items: stretch; /* 👈 важно */
}

/* ЛЕВАЯ ЧАСТЬ */
.hero-content {
    display: flex;
flex-direction: column;
    justify-content: flex-start;
    padding: 210px 0 50px;
}

/* ПРАВАЯ ЧАСТЬ */
.hero-image {
    display: flex;
    align-items: flex-end; /* 👈 прижали вниз */
    justify-content: flex-end;
}

/* персонаж */
.hero-image img {
    max-height: 75vh;
    width: auto;
    object-fit: contain;
    display: block;

    /* тень */
    filter: drop-shadow(0 25px 50px rgba(0,0,0,0.6));
}

/* текст */
.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 500px;
	opacity:0.75;
}

/* кнопки */
.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.hero-btn {
    padding: 12px 20px;
    border: 1px solid #fff;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

.hero-btn:hover {
    background: #fff;
    color: #000;
}

/* теги */
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
	margin-top: auto;
}

/* тег */
.hero-tag {
    font-size: 13px;
    padding: 6px 12px;

    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.25);

    color: rgba(255,255,255,0.85);
    background: rgba(255,255,255,0.05);

    backdrop-filter: blur(6px);

    transition: 0.25s ease;
}

/* hover мягкий */
.hero-tag:hover {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.1);
    color: #fff;
}

@media (max-width: 900px) {

    .hero {
        min-height: auto;
		padding: 0 20px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 20px;
    }

    /* 👇 всё по левому краю */
    .hero-content {
        padding: 120px 0 20px;
        align-items: flex-start;
        text-align: left;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .hero-desc {
        font-size: 14px;
        max-width: 100%;
        margin-bottom: 20px;
    }

    /* кнопки тоже влево */
    .hero-buttons {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    /* 👇 ПЕРСОНАЖ КРУПНЕЕ */
    .hero-image {
        justify-content: center;
        align-items: flex-end;
        margin-top: 10px;
    }

    .hero-image img {
        max-height: 420px; /* было 300, стало больше */
        width: auto;
    }

    /* теги влево */
    .hero-tags {
        justify-content: flex-start;
        margin-top: 15px;
    }

    .hero-tag {
        font-size: 12px;
        padding: 5px 10px;
    }

    /* чуть темнее фон */
    .hero::after {
        background: rgba(0,0,0,0.45);
    }
}
@media (max-width: 480px) {

    .hero-content {
        padding: 30px 0 10px;
    }

    .hero-title {
        font-size: 24px;
    }

    /* 👇 ещё сильнее акцент */
    .hero-image img {
        max-height: 460px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
    }

    .hero-btn {
        width: 100%;
        text-align: center;
    }
}
.section-why {background: #00000033;
    padding-top: 104px;
    padding-bottom: 80px;
}
/* GRID */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
}

/* ITEM */
.why-card {
    position: relative;
    padding: 40px 30px;
    overflow: hidden;

    border: 1px solid rgba(255,255,255,0.1);

    transition: 0.4s ease;
}

/* hover glow */
.why-card:hover {
    border-color: rgba(120, 80, 255, 0.4);

    box-shadow:
        0 0 0 1px rgba(120, 80, 255, 0.3),
        0 0 20px rgba(120, 80, 255, 0.2),
        0 0 40px rgba(120, 80, 255, 0.1);
}

/* 🔥 ФОНОВАЯ ИКОНКА */
.why-icon {
    position: absolute;
    top: 50%;
    left: 10%;
    z-index: 0;
}
.why-title {
    transition: 0.35s ease;
}
.why-icon img {
    width: 140px;
    height: 140px;
    opacity: 0.05;
    filter: drop-shadow(0 0 30px rgba(120, 80, 255, 0.25));
    transition: 0.4s ease;
	transform: translateY(-50%)
}

/* лёгкое усиление при hover */
.why-card:hover .why-icon img {
    opacity: 0.2;
    filter:
        drop-shadow(0 0 20px rgba(120, 80, 255, 0.4))
        drop-shadow(0 0 40px rgba(120, 80, 255, 0.2));
}
.why-card:hover .why-title {
    text-shadow:
        0 0 8px rgba(120, 80, 255, 0.5),
        0 0 16px rgba(120, 80, 255, 0.3);
}

/* TITLE */
.why-title {
    position: relative;
    z-index: 2;

    font-size: 20px;
    margin-bottom: 14px;
}

/* 🔥 ЛИНИЯ (как ты хотел) */
.why-title::after {
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    margin-top: 12px;

    background: linear-gradient(
        90deg,
        rgba(120, 80, 255, 0.8),
        rgba(255,255,255,0.3)
    );

    transition: 0.4s ease;
}

/* hover линия */
.why-card:hover .why-title::after {
    width: 80px;
}

/* TEXT */
.why-desc {
    position: relative;
    z-index: 2;

    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    max-width: 360px;
}

@media (max-width: 900px) {

    .section-why {
        padding-top: 60px;
        padding-bottom: 50px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .why-card {
        padding: 24px 20px;
    }
    .why-icon {
        left: auto;
        right: 10px;
        top: 20px;
        transform: none;
    }

    .why-icon img {
        width: 80px;
        height: 80px;
        opacity: 0.06;
        transform: none;
    }

    /* текст */
    .why-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .why-title::after {
        margin-top: 8px;
        width: 30px;
    }

    .why-desc {
        font-size: 14px;
        line-height: 1.6;
        max-width: 100%;
    }
}
@media (max-width: 480px) {

    .section-why {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .why-card {
        padding: 20px 16px;
    }

    .why-title {
        font-size: 16px;
    }

    .why-desc {
        font-size: 13px;
    }

    .why-icon img {
        width: 60px;
        height: 60px;
        opacity: 0.05;
    }
}
@media (max-width: 900px) {
    .why-card {
        border-color: rgba(120, 80, 255, 0.2);

        box-shadow:
            0 0 10px rgba(120, 80, 255, 0.08);
    }
}
/* GRID */
.formats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.format-card {
    position: relative;
    height: 420px;
    overflow: hidden;
    cursor: pointer;
}

/* фон */
.format-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;

    transform: scale(1);
    transition: 0.6s ease;
}

/* затемнение */
.format-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.2)
    );
    z-index: 1;
}

/* контент */
.format-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 2;
}

/* заголовок */
.format-title {
    font-size: 22px;
    margin-bottom: 10px;
}

/* текст */
.format-text {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
}

/* hover */
.format-card:hover .format-bg {
    transform: scale(1.08);
}

/* glow */
.format-card:hover::after {
    background: linear-gradient(
        to top,
        rgba(120, 80, 255, 0.5),
        rgba(0,0,0,0.2)
    );
}

/* MOBILE */
@media (max-width: 900px) {
    .formats-grid {
        grid-template-columns: 1fr;
    }

    .format-card {
        height: 300px;
    }
}
/* кнопка */
.format-btn {
    display: inline-flex;
    align-items: center;
    margin-top: 18px;

    text-decoration: none;
    color: #fff;
}

.format-btn .btn-text,
.format-btn .btn-icon {
    border: 1px solid rgba(255,255,255,0.3);
    padding: 10px 16px;
    transition: 0.3s ease;
}

.format-btn .btn-text {
    margin-right: 6px;
}
.format-card:hover .format-btn .btn-text,
.format-card:hover .format-btn .btn-icon {
    background: #fff;
    color: #000;
}
.format-btn img {
    width: 16px;
    transition: 0.3s ease;
}
.format-card:hover .format-btn img {
    filter: invert(1);
}
@media (max-width: 900px) {

    .formats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .format-card {
        height: 280px;
    }
    .format-content {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }

    .format-title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .format-text {
        font-size: 13px;
        line-height: 1.5;
    }
    .format-bg {
        transform: scale(1.05);
    }

    .format-card::after {
        background: linear-gradient(to top, rgb(120 80 255 / 76%), rgba(0, 0, 0, 0.2));
    }

    /* кнопка */
    .format-btn {
        margin-top: 12px;
    }

    .format-btn .btn-text,
    .format-btn .btn-icon {
        padding: 8px 14px;
        font-size: 13px;
    }
}
@media (max-width: 480px) {
.menu-weight {min-width: 40px;
    margin-left: 10px;text-align: right;}
    .format-card {
        height: 240px;
    }

    .format-title {
        font-size: 16px;
    }

    .format-text {
        font-size: 12.5px;
    }

    /* кнопка на всю ширину */
    .format-btn {
        width: 100%;
    }

    .format-btn .btn-text {
        flex: 1;
        justify-content: center;
    }

    .format-btn .btn-icon {
        width: 44px;
        justify-content: center;
    }
}

.menu-covers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.menu-cover {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}
.menu-cover img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: 0.5s ease;
}
.menu-cover span {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    font-size: 20px;
    z-index: 2;
}
.menu-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}
.menu-cover:hover img {
    transform: scale(1.06);
}
.menu-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.96);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;

    z-index: 9999;
}
.menu-modal.active {
    opacity: 1;
    visibility: visible;
}

.menu-modal-inner {
    text-align: center;
    max-width: 1000px;
}
.menu-modal-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
}
.menu-modal-caption {
    margin-top: 16px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}
.menu-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}
.menu-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    padding: 20px;
}

.menu-prev {
    left: 20px;
}

.menu-next {
    right: 20px;
}

.menu-nav img {
    width: 28px;
    transition: 0.3s ease;
}

.menu-nav:hover img {
    transform: scale(1.2);
    filter: brightness(1.3);
}
.menu-tabs {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.menu-tab {
    cursor: pointer;
    color: #888;
    position: relative;
}

.menu-tab.active {
    color: #fff;
}

.menu-tab::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: 0.3s;
}

.menu-tab.active::after {
    width: 100%;
}
.menu-content {
    display: none;
}

.menu-content.active {
    display: block;
}
.menu-row {
    display: flex;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.menu-img img {
    width: 70px;
    height: 70px;
    object-fit: cover;
}
.menu-info {
    flex: 1;
}
.menu-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.menu-name {
    font-weight: 500;
}

.menu-price {
    opacity: 0.8;
}
.menu-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}
@media (max-width: 900px) {
    .menu-covers {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .menu-cover img {
        height: 240px;
    }

    .menu-cover span {
        font-size: 18px;
        bottom: 15px;
        left: 15px;
    }
    .menu-tabs {
        gap: 20px;
        overflow-x: auto;
        padding-bottom: 5px;
    }

    .menu-tabs::-webkit-scrollbar {
        display: none;
    }

    .menu-tab {
        white-space: nowrap;
        font-size: 14px;
    }
    .menu-row {
        gap: 12px;
        padding: 12px 0;
    }

    .menu-img img {
        width: 60px;
        height: 60px;
    }

    .menu-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .menu-name {
        font-size: 15px;
    }

    .menu-price {
        font-size: 14px;
    }

    .menu-meta {
        font-size: 12px;
    }

    .menu-modal-inner {
        max-width: 100%;
        padding: 0 15px;
    }

    .menu-modal-img {
        max-height: 65vh;
    }
    .menu-nav {
        padding: 10px;
    }

    .menu-nav img {
        width: 22px;
    }
    .menu-close {
        top: 15px;
        right: 15px;
        font-size: 32px;
    }
}
.section-tournament {
    background: #ffffff;
    padding: 80px 0;
	color: black;
}

.tournament-wrap {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

/* TABLE */

.tournament-table {
    border: 1px solid #eee;
    border-radius: 16px;
    overflow: hidden;
}

.tournament-table-head {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: #f8f8f8;
    font-weight: 600;
    font-size: 14px;
    padding: 16px 20px;
}

.tournament-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 18px 20px;
    border-top: 1px solid #f1f1f1;
    transition: 0.2s;
}

.tournament-row:hover {
    background: #fafafa;
}

.t-date {
    font-weight: 600;
}

.t-prize {
    font-weight: 600;
}

/* STEPS */

.tournament-steps {
    background: #fafafa;
    border-radius: 16px;
    padding: 30px;
    height: fit-content;
}

.tournament-steps-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.tournament-step {
    display: flex;
    gap: 15px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-text {
    font-size: 15px;
    line-height: 1.5;
}

/* BUTTON */

.btn-main {
    display: block;
    margin-top: 25px;
    text-align: center;
    padding: 14px 20px;
    background: #000;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.2s;
}

.btn-main:hover {
    background: #333;
}

/* MOBILE */

@media (max-width: 900px) {

    /* скрываем шапку */
    .tournament-table-head {
        display: none;
    }

    /* строка → карточка */
    .tournament-row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 16px;
        border-radius: 12px;
        margin-bottom: 10px;
        border: 1px solid #f1f1f1;
    }

    .tournament-row:hover {
        background: transparent;
    }

    /* каждый элемент строки */
    .tournament-row > div {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        font-size: 14px;
    }

    /* 👇 добавляем подписи */
    .tournament-row > div::before {
        content: attr(data-label);
        font-weight: 600;
        color: #888;
    }

    /* акценты */
    .t-date,
    .t-prize {
        font-weight: 600;
    }
.tournament-wrap {display:block}
}
.section-tour {display: grid;
    align-items: center;
    margin-bottom: 20px;}
.tour-suptitle {font-size: 12px;
    opacity: 0.5;
    margin-bottom: 18px;}
.tour-desc {margin: 20px 0;
    opacity: 0.5;font-size: 14px;
    line-height: 1.6;}