:root {
    --bg:           #1E1E1E;
    --bg-card:      #252525;
    --bg-card-2:    #2D2D2D;
    --red:          #C41E3A;
    --red-hover:    #A0152A;
    --white:        #ffffff;
    --muted:        #6b6b6b;
    --border:       #333333;
    --radius:       12px;
    --max-w:        1200px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}
body {
    background: var(--bg);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}
.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    gap: 40px;
}
.header__nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}
.header__nav-link {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 100px;
    transition: color 0.2s, background 0.2s;
}
.header__nav-link:hover {
    color: var(--white);
    background: rgba(255,255,255,0.06);
}
.header__cta {
    margin-left: auto;
    background: var(--red);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 22px;
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}
.header__cta:hover {
    background: var(--white);
    color: var(--bg);
    border-color: var(--white);
}
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 110;
}
.header__burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    opacity: 1;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.header__burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.header__burger.active span:nth-child(2) {
    opacity: 0;
}
.header__burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
.hero {
    position: relative;
    background: #222;
    overflow: hidden;
    padding-top: 72px; 
}
.hero__chess {
    display: none;
}
.hero__inner {
    position: relative;
    z-index: 2;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    min-height: 420px;
}
.hero__text {
    flex: 0 0 auto;
    padding: 52px 0 0;
    z-index: 3;
}
.hero__eyebrow {
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.hero__title {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.hero__title-white {
    font-size: clamp(3.5rem, 4vw, 8rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -2px;
    text-transform: uppercase;
    color: var(--white);
}
.hero__title .hero__title-white:first-child {
    color: var(--red);
    font-size: clamp(3rem, 3.6vw, 4.4rem);
}
.hero__title-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 4px;
}
.hero__title-x {
    font-size: clamp(2.5rem, 6vw, 6rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}
.hero__photo-wrap {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 48%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transform: translateX(5%);
}
.hero__photo-placeholder {
    width: 100%;
    height: 100%;
    background-color: #2A2020;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.2);
    font-size: 1rem;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    -webkit-mask-image:
        linear-gradient(to left, rgba(0,0,0,1) 97%, rgba(0,0,0,0) 100%),
        linear-gradient(to bottom, rgba(0,0,0,1) 97%, rgba(0,0,0,0) 100%);
    mask-image:
        linear-gradient(to left, rgba(0,0,0,1) 97%, rgba(0,0,0,0) 100%),
        linear-gradient(to bottom, rgba(0,0,0,1) 97%, rgba(0,0,0,0) 100%);
    -webkit-mask-composite: intersect;
    mask-composite: intersect;
}
.hero__photo-placeholder img {
    width: 65%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.hero-feedback {
    background: #f5f5f5;
    padding: 56px 24px 52px;
}
.hero-feedback__inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}
.hero-feedback__title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: #111;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}
.hero-feedback__sub {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 28px;
}
.hero-feedback__form {
    display: flex;
    gap: 0;
    max-width: 600px;
    margin: 0 auto 16px;
    border: 1px solid #ccc;
    border-radius: 100px;
    overflow: hidden;
    background: #fff;
}
.hero-feedback__input {
    flex: 1;
    border: none;
    outline: none;
    padding: 16px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #111;
    background: transparent;
}
.hero-feedback__input::placeholder { color: #aaa; }
.hero-feedback__btn {
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 100px;
    padding: 14px 28px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: background 0.2s;
    margin: 4px;
}
.hero-feedback__btn:hover { background: var(--red-hover); }
.hero-feedback__check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    justify-content: center;
    font-size: 0.78rem;
    color: #999;
    cursor: pointer;
}
.hero-feedback__check input { margin-top: 2px; accent-color: var(--red); }
.hero-feedback__check a { color: #999; text-decoration: underline; }
.btn__arrow {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1;
}
.about-section {
    padding: 100px 0;
    border-top: 1px solid var(--border);
}
.about-section__inner {
    max-width: 860px;
}
.about-section__label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 20px;
}
.about-section__title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.about-section__text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    max-width: 680px;
    margin-bottom: 52px;
}
.about-section__stats {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}
.artists-section {
    padding: 100px 0;
    border-top: 1px solid var(--border);
}
.artist-card {
    display: flex;
    align-items: center;
    gap: 48px;
    margin-top: 40px;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.artist-card:hover {
    border-color: var(--red);
    box-shadow: 0 0 30px rgba(196,30,58,0.12);
}
.artist-card__photo {
    flex-shrink: 0;
    width: 260px;
    border-radius: 8px;
    overflow: hidden;
    background: transparent;
}
.artist-card__photo img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}
.artist-card:hover .artist-card__photo img {
    transform: scale(1.06);
}
.artist-card__info {
    flex: 1;
    min-width: 0;
}
.artist-card__name {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 16px;
}
.artist-card__songs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.song-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    background: var(--bg-card-2);
    border: 1px solid var(--border);
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
    cursor: pointer;
}
.song-card:hover {
    border-color: var(--red);
    background: rgba(196,30,58,0.06);
    transform: translateX(4px);
}
.song-card__cover {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-card);
}
.song-card__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.song-card__title {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 600;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.song-card__arrow {
    flex-shrink: 0;
    color: var(--red);
    font-size: 1.2rem;
    font-weight: 700;
    transition: transform 0.2s;
}
.song-card:hover .song-card__arrow {
    transform: translateX(3px);
}
.artist-card__empty {
    color: var(--muted);
    font-size: 0.9rem;
}
.artists-empty {
    color: var(--muted);
    font-size: 1rem;
    margin-top: 20px;
}
@media (max-width: 768px) {
    .artist-card {
        flex-direction: column-reverse;
        gap: 20px;
        padding: 20px;
        text-align: center;
    }
    .artist-card__photo {
        width: 180px;
    }
    .artist-card__songs {
        align-items: center;
    }
    .song-card {
        width: 100%;
        max-width: 360px;
    }
}
.stat__val {
    font-size: 3rem;
    font-weight: 900;
    color: var(--red);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 6px;
}
.stat__label {
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 500;
}
.section-header {
    margin-bottom: 40px;
}
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
    line-height: 1.05;
}
.slider-section {
    padding: 80px 0;
    border-top: 1px solid var(--border);
}
.slider-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}
.slider-container {
    flex: 1;
    height: 460px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-track-3d {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    transform-style: preserve-3d;
}
.basta-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    position: absolute;
    width: 320px;
    max-width: 82%;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1),
                opacity 0.55s ease,
                border-color 0.3s ease,
                box-shadow 0.3s ease;
    will-change: transform, opacity;
    cursor: pointer;
}
.basta-card.active-center {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0) translateZ(50px) scale(1.08);
    border-color: var(--red);
    box-shadow: 0 0 40px rgba(196,30,58,0.18), 0 20px 40px rgba(0,0,0,0.5);
    z-index: 5;
}
.basta-card.side-left {
    opacity: 0.35;
    pointer-events: auto;
    transform: translateX(-270px) translateZ(-100px) scale(0.85) rotateY(18deg);
    z-index: 3;
}
.basta-card.side-right {
    opacity: 0.35;
    pointer-events: auto;
    transform: translateX(270px) translateZ(-100px) scale(0.85) rotateY(-18deg);
    z-index: 3;
}
.basta-card.hidden-slide {
    opacity: 0;
    transform: translateZ(-200px) scale(0.5);
    z-index: 1;
}
.slider-track-3d.static-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    height: auto;
    perspective: none;
    transform-style: flat;
}
.slider-track-3d.static-grid .basta-card {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    transform: none !important;
    border-color: var(--border);
    box-shadow: none;
    width: calc(33.333% - 16px);
}
.card-image-container {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: var(--bg-card-2);
}
.card-image-container--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
}
.placeholder-text {
    font-size: 1.8rem;
    font-weight: 900;
    color: rgba(255,255,255,0.08);
    letter-spacing: 4px;
    text-transform: uppercase;
}
.student-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
    will-change: transform;
}
.interactive-card:hover .student-photo {
    transform: scale(1.06);
}
.card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20,20,20,0.8) 0%, transparent 50%);
}
.hover-info {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(12, 12, 12, 0.97) 0%,
        rgba(12, 12, 12, 0.85) 50%,
        rgba(20, 0, 0, 0.7) 100%
    );
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 2;
    border-radius: var(--radius);
}
.hover-info::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 24px;
    width: 32px;
    height: 3px;
    background: var(--red);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease 0.1s;
}
.hover-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.92);
    transform: translateY(10px);
    opacity: 0;
    transition: transform 0.35s ease 0.05s, opacity 0.35s ease 0.05s;
}
.interactive-card:hover .hover-info {
    opacity: 1;
    visibility: visible;
}
.interactive-card:hover .hover-info::before {
    transform: scaleX(1);
}
.interactive-card:hover .hover-info p {
    transform: translateY(0);
    opacity: 1;
}
.card-content {
    padding: 18px 20px 20px;
    background: var(--bg-card);
    position: relative;
}
.card-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.card-meta {
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 500;
}
.basta-card.active-center .card-name::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--red);
    margin-top: 8px;
}
.slide-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--white);
    font-size: 1.6rem;
    line-height: 42px;
    text-align: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
    z-index: 10;
}
.slide-btn:hover {
    background: var(--red);
    border-color: var(--red);
    transform: scale(1.08);
}
.cta-section {
    padding: 100px 0;
    border-top: 1px solid var(--border);
    background: linear-gradient(135deg, rgba(196,30,58,0.06) 0%, transparent 60%);
}
.cta-section__inner {
    max-width: 680px;
}
.cta-section__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 16px;
}
.cta-section__sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 32px;
}
.cta-section__form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}
.cta-section__form .hero__input {
    flex: 0 0 260px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 6px;
    padding: 13px 18px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
}
.cta-section__form .hero__input::placeholder { color: var(--muted); }
.cta-section__form .hero__input:focus { border-color: rgba(255,255,255,0.5); }
.cta-section__form .hero__btn {
    flex-shrink: 0;
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 6px;
    padding: 13px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
}
.cta-section__form .hero__btn:hover { background: var(--red-hover); }
.footer {
    padding: 48px 0 36px;
    border-top: 1px solid var(--border);
}
.footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.footer__logo {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: -1px;
}
.footer__nav {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.footer__nav-link {
    color: var(--muted);
    font-size: 0.88rem;
    padding: 6px 14px;
    border-radius: 100px;
    transition: color 0.2s, background 0.2s;
}
.footer__nav-link:hover {
    color: var(--white);
    background: rgba(255,255,255,0.06);
}
.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.footer__copy, .footer__hotline {
    font-size: 0.82rem;
    color: var(--muted);
}
.footer__hotline a {
    color: var(--white);
    font-weight: 600;
}
.footer__hotline a:hover { color: var(--red); }
.footer__socials {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: var(--muted);
    transition: color 0.2s, background 0.2s, transform 0.2s;
}
.social-icon:hover {
    color: var(--white);
    background: rgba(255,255,255,0.12);
    transform: translateY(-2px);
}
.social-icon svg {
    width: 20px;
    height: 20px;
}
@media (max-width: 768px) {
    .header__burger { display: flex; }
    .header__nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px 24px 20px;
        background: rgba(12, 12, 12, 0.95);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-bottom: 1px solid var(--border);
    }
    .header__nav--open { display: flex; }
    .header__nav-link {
        padding: 12px 16px;
        border-radius: 10px;
        font-size: 1rem;
    }
    .header__cta {
        margin-left: 0;
    }
    .hero__inner { min-height: calc(100dvh - 72px); padding: 72px 24px 0; flex-direction: column-reverse; align-items: stretch; }
    .hero__text { padding: 20px 0 40px; width: 100%; }
    .hero__photo-wrap { width: 100%; position: relative; right: auto; bottom: auto; transform: none; height: auto; margin-top: 0; }
    .hero__photo-placeholder { height: auto; }
    .hero__photo-placeholder img { min-width: auto; width: 100%; height: auto; display: block; }
    .hero__title-white { font-size: clamp(2rem, 10vw, 4rem); }
    .hero__title .hero__title-white:first-child { font-size: clamp(1.9rem, 7.2vw, 3rem); }
    .hero__title-x { font-size: clamp(2rem, 7vw, 3rem); }
    .hero__eyebrow { font-size: 0.8rem; }
    .hero-feedback__form { flex-direction: column; border-radius: 16px; gap: 8px; border: none; background: transparent; }
    .hero-feedback__input { border: 1px solid #ccc; border-radius: 100px; background: #fff; }
    .hero-feedback__btn { justify-content: center; border-radius: 100px; }
    .about-section__stats { gap: 32px; }
    .stat__val { font-size: 2.2rem; }
    .slider-container { height: 420px; }
    .basta-card { width: 260px; }
    .basta-card.side-left {
        transform: translateX(-130px) translateZ(-50px) scale(0.78) rotateY(10deg);
        opacity: 0.15;
    }
    .basta-card.side-right {
        transform: translateX(130px) translateZ(-50px) scale(0.78) rotateY(-10deg);
        opacity: 0.15;
    }
    .slider-track-3d.static-grid { flex-direction: column; align-items: center; }
    .slider-track-3d.static-grid .basta-card { width: 100%; }
    .slide-btn { width: 36px; height: 36px; font-size: 1.2rem; line-height: 34px; }
    .footer__top { flex-direction: column; align-items: flex-start; }
    .footer__bottom { flex-direction: column; align-items: flex-start; }
    .cta-section__form { flex-direction: column; }
}
.concert-card {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.concert-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: linear-gradient(
        to top,
        rgba(12,12,12,0.85) 0%,
        rgba(12,12,12,0.5) 50%,
        rgba(0,0,0,0.3) 100%
    );
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 2;
    border-radius: var(--radius);
}
.concert-play-btn {
    width: 64px;
    height: 64px;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 4px 20px rgba(196,30,58,0.5));
}
.concert-play-btn svg {
    width: 100%;
    height: 100%;
}
.concert-play-label {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    transform: translateY(6px);
    opacity: 0;
    transition: transform 0.3s ease 0.05s, opacity 0.3s ease 0.05s;
}
.concert-card:hover .concert-play-overlay {
    opacity: 1;
    visibility: visible;
}
.concert-card:hover .concert-play-btn {
    transform: scale(1);
}
.concert-card:hover .concert-play-label {
    transform: translateY(0);
    opacity: 1;
}
.concert-card.active-center:hover {
    border-color: var(--red);
    box-shadow: 0 0 40px rgba(196,30,58,0.3), 0 20px 40px rgba(0,0,0,0.5);
}
.concert-card .hover-info {
    display: none;
}
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.modal-window {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    width: 100%;
    max-width: 440px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}
.modal-overlay.active .modal-window {
    transform: translateY(0);
}
.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--muted);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s;
}
.modal-close:hover {
    color: var(--white);
}
.modal-title {
    font-size: 1.6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
    color: var(--white);
    line-height: 1.2;
}
.modal-sub {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 24px;
    line-height: 1.4;
}
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.modal-field-group {
    position: relative;
    display: flex;
    flex-direction: column;
}
.modal-input {
    width: 100%;
    background: var(--bg-card-2);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 15px 18px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.modal-input::placeholder {
    color: var(--muted);
}
.modal-input:focus {
    border-color: rgba(255, 255, 255, 0.25);
}
.modal-input.invalid {
    border-color: var(--red) !important;
    box-shadow: 0 0 8px rgba(196, 30, 58, 0.3);
}
.modal-error-message {
    color: var(--red);
    font-size: 0.78rem;
    margin-top: 5px;
    display: none;
    text-align: left;
    font-weight: 500;
}
.modal-input.invalid + .modal-error-message {
    display: block;
}
.modal-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b6b6b' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}
.modal-select option {
    background: var(--bg-card-2);
    color: var(--white);
}
.modal-textarea {
    resize: vertical;
    min-height: 80px;
    font-family: 'Inter', sans-serif;
}
.modal-submit-btn {
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 15px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 5px;
}
.modal-submit-btn:hover {
    background: var(--red-hover);
}
.success-window {
    max-width: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.success-icon {
    width: 60px;
    height: 60px;
    background: rgba(196, 30, 58, 0.1);
    border: 2px solid var(--red);
    color: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.cta__btn-container {
    display: flex;
    justify-content: flex-start;
    margin-top: 30px;
}
.cta__btn-modal {
    background: var(--red);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 22px;
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.cta__btn-modal:hover {
    background: var(--white);
    color: var(--bg);
    border-color: var(--white);
}
.cta__btn-modal .btn__arrow {
    font-size: 1.1rem;
    line-height: 1;
    transition: transform 0.2s;
}
.cta__btn-modal:hover .btn__arrow {
    transform: translateX(3px);
}

.modal-window--video {
    max-width: 860px;
    padding: 30px;
}

.concert-video-player-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.concert-video-player-wrap #concertVideoPlayer {
    flex: 1;
    min-width: 0;
}

.concert-video-side-btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-card-2);
    color: var(--white);
    border: 1px solid var(--border);
    font-size: 1.4rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
    position: relative;
    line-height: 1;
}

.concert-video-side-btn:hover {
    background: var(--red);
    border-color: var(--red);
}

.concert-video-side-btn.hidden {
    visibility: hidden;
    pointer-events: none;
}

.concert-side-label {
    font-size: 0.55rem;
    font-weight: 600;
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.2;
    margin-top: 2px;
}

.concert-video-info {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.concert-video-label {
    font-weight: 700;
    font-size: 1.1rem;
}

.concert-video-date {
    color: var(--muted);
    font-size: 0.85rem;
}

.concert-video-nav {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.concert-video-counter {
    color: var(--muted);
    font-size: 0.85rem;
}

.concert-concert-nav {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.concert-nav-btn {
    background: none;
    color: var(--white);
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 45%;
}

.concert-nav-btn:hover {
    background: var(--red);
    border-color: var(--red);
}

.concert-nav-btn.hidden {
    visibility: hidden;
    pointer-events: none;
}

.concert-nav-label {
    color: var(--muted);
    font-size: 0.85rem;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#concertVideosList input,
#concertVideosList select {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
}

#concertVideosList select option {
    background: var(--bg-card);
    color: var(--white);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(36px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
    from { opacity: 0; transform: translateX(-36px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeRight {
    from { opacity: 0; transform: translateX(36px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeScale {
    from { opacity: 0; transform: scale(0.92); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes heroPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50%      { transform: translate(-50%, -50%) scale(1.06); }
}
@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}

/* Hero entrance (on load) */
.hero__eyebrow {
    opacity: 0;
    animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}
.hero__title .hero__title-white:first-child {
    opacity: 0;
    animation: fadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}
.hero__title .hero__title-white:last-child {
    opacity: 0;
    animation: fadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.45s forwards;
}
.hero__photo-wrap {
    opacity: 0;
    animation: fadeScale 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}

/* Scroll-triggered base */
.anim {
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}
.anim--up    { transform: translateY(36px); }
.anim--left  { transform: translateX(-36px); }
.anim--right { transform: translateX(36px); }
.anim--scale { transform: scale(0.92); }

.anim.is-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}
.anim.is-visible.anim--stagger-1 { transition-delay: 0.08s; }
.anim.is-visible.anim--stagger-2 { transition-delay: 0.16s; }
.anim.is-visible.anim--stagger-3 { transition-delay: 0.24s; }
.anim.is-visible.anim--stagger-4 { transition-delay: 0.32s; }
.anim.is-visible.anim--stagger-5 { transition-delay: 0.40s; }
.anim.is-visible.anim--stagger-6 { transition-delay: 0.48s; }

/* Header entrance */
.header {
    animation: fadeUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Artist card photo */
/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 190;
    max-width: 780px;
    margin: 0 auto;
    background: rgba(20, 20, 20, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    padding: 24px 28px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(24px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.4s ease;
}
.cookie-banner.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.cookie-banner.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(24px);
}
.cookie-banner__close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 26px;
    height: 26px;
    background: var(--bg-card-2);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: color 0.2s, border-color 0.2s, transform 0.2s, background 0.2s;
}
.cookie-banner__close:hover {
    color: var(--white);
    border-color: var(--white);
    transform: rotate(90deg);
}
.cookie-banner__content {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-right: 28px;
}
.cookie-banner__text {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease 0.15s, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}
.cookie-banner.visible .cookie-banner__text {
    opacity: 1;
    transform: translateY(0);
}
.cookie-banner__actions {
    flex-shrink: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease 0.3s, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}
.cookie-banner.visible .cookie-banner__actions {
    opacity: 1;
    transform: translateY(0);
}
.cookie-banner__btn {
    background: var(--red);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 11px 30px;
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}
.cookie-banner__btn:hover {
    background: var(--red-hover);
    border-color: var(--white);
    transform: scale(1.04);
}
.cookie-banner__link {
    background: none;
    border: none;
    padding: 0;
    color: var(--red);
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}
.cookie-banner__link:hover {
    color: var(--white);
}

/* ===== POLICY MODAL ===== */
.modal-window--policy {
    max-width: 720px;
    padding: 40px 40px 32px;
}
.policy-scroll {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 12px;
    margin-bottom: 24px;
    scrollbar-width: thin;
    scrollbar-color: var(--red) var(--bg-card-2);
}
.policy-scroll::-webkit-scrollbar {
    width: 6px;
}
.policy-scroll::-webkit-scrollbar-track {
    background: var(--bg-card-2);
    border-radius: 3px;
}
.policy-scroll::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 3px;
}
.policy-scroll h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--white);
    margin: 20px 0 6px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.policy-scroll h4:first-child {
    margin-top: 0;
}
.policy-scroll p {
    font-size: 0.88rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
}
.modal-window--policy .modal-submit-btn {
    width: 100%;
}

@media (max-width: 768px) {
    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 20px 18px;
    }
    .cookie-banner__content {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding-right: 0;
    }
    .cookie-banner__actions {
        display: flex;
    }
    .cookie-banner__btn {
        width: 100%;
    }
    .modal-window--policy {
        padding: 32px 20px 24px;
        max-height: 88vh;
        overflow-y: auto;
    }
    .policy-scroll {
        max-height: none;
    }
}

/* ===== TEAM SECTION ===== */
.team-section {
    padding: 80px 0;
}
.team-section__inner {
    max-width: var(--max-w);
    margin: 0 auto;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 28px;
    margin-top: 44px;
    justify-items: center;
}
.team-card {
    width: 100%;
    max-width: 200px;
}
.team-card__photo {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    border-radius: 14px;
    overflow: hidden;
    background: var(--bg-card-2);
    border: 3px solid var(--border);
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.team-card:hover .team-card__photo {
    border-color: var(--red);
    box-shadow: 0 0 30px rgba(196, 30, 58, 0.25);
    transform: translateY(-6px);
}
.team-card__photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}
.team-card:hover .team-card__photo img {
    transform: scale(1.07);
}
.team-empty {
    color: var(--muted);
    font-size: 1rem;
    margin-top: 20px;
}
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 20px;
    }
}
