/* ========================================
   RESET & BASE
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: #EFF3F5;
    overflow-x: hidden;
    font-weight: 400;
    line-height: 1.5;
    color: #3A5A6E;
}

/* ========================================
   WORKSPACE (РАБОЧАЯ ОБЛАСТЬ)
   ======================================== */
.workspace {
    width: 1024px;
    max-width: calc(100vw - 40px);
    height: 650px;
    max-height: calc(100vh - 40px);
    position: relative;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

/* ========================================
   DESKTOP (>=1024px)
   ======================================== */
@media (min-width: 1024px) {
    body {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
        overflow: hidden;
    }

    .horizontal-scroll {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        width: 100vw;
        height: 100vh;
        scrollbar-width: none;
        overscroll-behavior-x: contain;
        scroll-snap-stop: always;
        align-items: center;
    }

    .horizontal-scroll::-webkit-scrollbar {
        display: none;
    }

    .slide {
        flex: 0 0 100%;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        height: 100vh;
        overflow-y: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #EFF3F5 0%, #E4E8EC 100%);
    }

    .slide-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }

    /* ЛОГОТИП — фиксированный внутри рабочей области (не двигается при скролле слайдов) */
    .slide .logo-container {
        position: absolute !important;
        top: 20px;
        left: 20px;
        z-index: 200;
    }

    /* Навигационные стрелки */
    .nav-arrow {
        position: fixed;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        color: #3A5A6E;
        font-size: 3.5rem;
        font-weight: 400;
        cursor: pointer;
        z-index: 100;
        transition: opacity 0.2s ease, visibility 0.2s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: inherit;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .nav-arrow.visible {
        opacity: 0.6;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-arrow.visible:hover:not(.hidden) {
        opacity: 1;
        transform: translateY(-50%) scale(1.1);
    }

    .nav-arrow.hidden {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .nav-prev {
        left: 24px;
    }

    .nav-next {
        right: 24px;
    }

    /* Dots навигация */
    .nav-dots {
        position: fixed;
        bottom: 24px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 12px;
        z-index: 100;
    }

    .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(74, 92, 85, 0.4);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .dot.active {
        width: 24px;
        border-radius: 4px;
        background: rgba(74, 92, 85, 0.9);
    }

    /* Скролл-хинт над точками */
    .scroll-hint-desktop {
        position: fixed;
        bottom: 60px;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        z-index: 100;
    }

    .scroll-hint-desktop span {
        font-size: 0.75rem;
        letter-spacing: 2px;
        color: #6F8F9F;
        display: block;
        margin-bottom: 8px;
        font-weight: 300;
    }

    .scroll-hint-desktop .scroll-line {
        width: 1px;
        height: 30px;
        background: #A8BCC8;
        margin: 0 auto;
    }

    /* Копирайт */
    .copyright-wrapper {
        position: fixed;
        bottom: 24px;
        right: 24px;
        z-index: 100;
    }

    .copyright-text {
        color: #6F8F9F;
        font-size: 0.7rem;
        font-weight: 300;
        letter-spacing: 0.5px;
    }

    .footer-copyright-mobile,
    .slide-hero .scroll-hint {
        display: none !important;
    }
}

/* ========================================
   MOBILE (<1024px)
   ======================================== */
@media (max-width: 1023px) {
    body {
        overflow-y: auto;
        overflow-x: hidden;
    }

    .horizontal-scroll {
        display: block;
        overflow-y: scroll;
        overflow-x: hidden;
        scroll-snap-type: y mandatory;
        scroll-behavior: smooth;
        height: 100vh;
        width: 100%;
    }

    .slide {
        display: flex;
        flex-direction: column;
        height: 100vh;
        scroll-snap-align: start;
        overflow-y: auto;
        background: linear-gradient(135deg, #EFF3F5 0%, #E4E8EC 100%);
    }

    .slide-content {
        padding: 40px 24px;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .nav-arrow, .nav-dots, .copyright-wrapper, .scroll-hint-desktop {
        display: none !important;
    }

    .footer-copyright-mobile {
        display: block;
        text-align: center;
        margin-top: 32px;
        color: #6F8F9F;
        font-size: 0.7rem;
        font-weight: 300;
    }

    .vinyl-container {
        display: none !important;
    }

    .player-container {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
    }

    .player-controls {
        max-width: 100% !important;
        width: 100% !important;
    }

    .video-grid, .schedule-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 16px;
    }

    .video-item, .schedule-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }
}

/* ========================================
   ЛОГОТИП (ОБЩИЕ СТИЛИ)
   ======================================== */
.logo-container {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.logo-main {
    width: 100px;
    height: auto;
    opacity: 0.85;
}

/* На мобильных логотип только на hero */
@media (max-width: 1023px) {
    .slide-player .logo-container,
    .slide-video .logo-container,
    .slide-schedule .logo-container,
    .slide-footer .logo-container {
        display: none;
    }
}

/* Заголовки разделов */
.section-header {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 3px;
    color: #6F8F9F;
    text-transform: uppercase;
    z-index: 10;
}

@media (max-width: 1023px) {
    .section-header {
        position: relative;
        top: 0;
        right: 0;
        text-align: center;
        margin-bottom: 32px;
    }
}

/* ========================================
   SLIDE HERO
   ======================================== */
.slide-hero .workspace {
    justify-content: flex-start;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    padding-left: 20px;
}

.hero-announce {
    text-align: left;
    margin-bottom: 40px;
}

.announce-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #6F8F9F;
    margin-bottom: 20px;
}

.announce-date {
    display: inline-block;
    font-size: 3.2rem;
    font-weight: 400;
    color: #3A5A6E;
    line-height: 1.1;
    margin-bottom: 12px;
    cursor: pointer;
    border-bottom: 1px dashed #A8BCC8;
    transition: all 0.3s ease;
}

.announce-date:hover {
    color: #6F8F9F;
    border-bottom-color: #6F8F9F;
}

.announce-venue {
    display: block;
    font-size: 1.2rem;
    color: #6F8F9F;
}

.announce-address {
    display: inline-block;
    font-size: 0.95rem;
    color: #6F8F9F;
    text-decoration: none;
    margin-top: 8px;
    border-bottom: 1px dashed #A8BCC8;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.announce-address:hover {
    color: #3A5A6E;
    border-bottom-color: #3A5A6E;
}

.cta-button {
    background: none;
    border: none;
    padding: 0;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    cursor: pointer;
    color: #3A5A6E;
    border-bottom: 1px solid #A8BCC8;
    padding-bottom: 6px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    border-bottom-color: #3A5A6E;
    letter-spacing: 2px;
}

/* ========================================
   SLIDE PLAYER
   ======================================== */
.slide-player .workspace {
    justify-content: center;
}

.player-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    width: 100%;
    align-items: center;
}

.vinyl-container {
    position: relative;
    display: flex;
    justify-content: left;
    align-items: center;
}

.vinyl-record {
    position: relative;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: #111;
    box-shadow: 0 25px 45px -12px rgba(0,0,0,0.2), inset 0 0 20px rgba(0,0,0,0.2);
}

.vinyl-record.spinning {
    animation: spinVinyl 3.6s linear infinite;
}

@keyframes spinVinyl {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.vinyl-grooves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: repeating-radial-gradient(
        circle at center,
        rgba(100, 120, 110, 0.2) 0px,
        rgba(100, 120, 110, 0.2) 2px,
        transparent 2px,
        transparent 8px
    );
    pointer-events: none;
}

.vinyl-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: #EFF3F5;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.1), 0 2px 4px rgba(248,250,252,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.album-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.label-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: radial-gradient(circle, #A8BCC8, #6F8F9F);
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.2), 0 1px 2px rgba(255,255,255,0.5);
    pointer-events: none;
}

.tonearm {
    position: absolute;
    top: -20px;
    right: 60px;
    width: 140px;
    height: 160px;
    pointer-events: none;
    z-index: 10;
}

.tonearm-base {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 28px;
    height: 28px;
    background: radial-gradient(circle, #6B8A9A, #4A6C7A);
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.tonearm-arm {
    position: absolute;
    bottom: 32px;
    right: 32px;
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #6F8F9F, #4A6C7A);
    transform-origin: left center;
    transform: rotate(-32deg);
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tonearm-head {
    position: absolute;
    bottom: 28px;
    right: 110px;
    width: 12px;
    height: 12px;
    background: #A8BCC8;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #6F8F9F;
}

.vinyl-record.spinning ~ .tonearm .tonearm-arm,
.vinyl-record.spinning + .tonearm .tonearm-arm {
    transform: rotate(-18deg);
}

.player-controls {
    width: 100%;
}

.track-list {
    max-height: 220px;
    overflow-y: auto;
    margin-bottom: 24px;
    scrollbar-width: thin;
    overscroll-behavior: contain;
}

.track-list::-webkit-scrollbar {
    width: 4px;
}

.track-list::-webkit-scrollbar-track {
    background: #A8BCC8;
    border-radius: 4px;
}

.track-list::-webkit-scrollbar-thumb {
    background: #6F8F9F;
    border-radius: 4px;
}

.track-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s;
}

.track-item:hover {
    background: rgba(58, 90, 110, 0.1);
}

.track-item.active {
    background: rgba(58, 90, 110, 0.15);
}

.track-play-icon {
    width: 24px;
    font-size: 0.8rem;
    color: #6F8F9F;
}

.track-title {
    flex: 1;
    font-size: 0.9rem;
    color: #3A5A6E;
}

.player-progress {
    margin: 20px 0 16px;
}

.progress-bar-bg {
    width: 100%;
    height: 6px;
    background: #A8BCC8;
    cursor: pointer;
    border-radius: 3px;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: #3A5A6E;
    border-radius: 3px;
    transition: width 0.1s linear;
}

.time-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: #6F8F9F;
    margin-top: 6px;
}

.player-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.play-button, .lyrics-button, .track-nav-button, .volume-button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    cursor: pointer;
}

.play-button {
    background: #3A5A6E;
    border: none;
    color: #EFF3F5;
    font-size: 1.2rem;
}

.play-button:hover {
    background: #4A6C7A;
    transform: scale(1.02);
}

.lyrics-button, .track-nav-button, .volume-button {
    background: transparent;
    border: 1px solid #A8BCC8;
    color: #3A5A6E;
}

.lyrics-button:hover, .track-nav-button:hover, .volume-button:hover {
    background: #3A5A6E;
    color: #EFF3F5;
    border-color: #3A5A6E;
    transform: scale(1.02);
}

.track-nav-button.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.volume-container {
    position: relative;
    display: inline-block;
}

.volume-slider {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 6px;
    background: #A8BCC8;
    border-radius: 3px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.volume-container:hover .volume-slider,
.volume-slider:hover {
    opacity: 1;
    visibility: visible;
}

.volume-fill {
    height: 100%;
    background: #3A5A6E;
    border-radius: 3px;
    width: 70%;
    transition: width 0.05s linear;
}

/* ========================================
   SLIDE VIDEO & SCHEDULE
   ======================================== */
.slide-video .workspace,
.slide-schedule .workspace {
    justify-content: center;
}

.video-grid, .schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

@media (max-width: 1023px) {
    .video-grid, .schedule-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 16px;
    }

    .video-item, .schedule-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }
}

.video-item {
    cursor: pointer;
    transition: transform 0.3s ease;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.video-item:hover {
    transform: translateY(-6px);
}

.video-preview {
    background: #1A1A1A;
    border-radius: 20px;
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-size: cover !important;
    background-position: left 15% !important;
    background-color: #2A2A2A;
    flex-shrink: 0;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.video-preview:hover .video-play-button {
    opacity: 1;
}

.video-play-button svg {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
}

.video-title {
    padding: 14px 12px;
    font-size: 0.95rem;
    color: #FFFFFF;
    background: rgba(0, 0, 0, 0.6);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

.schedule-card {
    position: relative;
    background-size: cover;
    background-position: top;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    min-height: 280px;
}

.schedule-card:hover {
    transform: translateY(-6px);
}

.schedule-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 63, 0.75);
    backdrop-filter: blur(2px);
    transition: background 0.25s ease;
    z-index: 0;
}

.schedule-card:hover .schedule-card-overlay {
    background: rgba(44, 62, 63, 0.85);
}

.schedule-card-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 280px;
}

.schedule-date-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #FFFFFF;
    width: fit-content;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.schedule-venue {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: #FFFFFF;
    line-height: 1.3;
}

.schedule-info {
    margin-bottom: 16px;
    flex: 1;
}

.schedule-info-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
}

.info-icon {
    font-size: 0.75rem;
    color: #C4D0CA;
    width: 18px;
    flex-shrink: 0;
}

.info-text {
    font-size: 0.8rem;
    color: #C4D0CA;
    line-height: 1.4;
    flex: 1;
}

.event-link {
    color: #C4D0CA;
    text-decoration: none;
    border-bottom: 1px dotted rgba(196, 208, 202, 0.5);
    transition: all 0.2s ease;
    word-break: break-all;
}

.event-link:hover {
    color: #FFFFFF;
    border-bottom-color: #FFFFFF;
}

.schedule-btn {
    background: none;
    border: none;
    padding: 0;
    font-size: 0.85rem;
    cursor: pointer;
    font-family: inherit;
    color: #C4D0CA;
    border-bottom: 1px solid rgba(196, 208, 202, 0.5);
    padding-bottom: 4px;
    width: fit-content;
    transition: all 0.2s;
    margin-top: auto;
}

.schedule-btn:hover {
    color: #FFFFFF;
    border-bottom-color: #FFFFFF;
}

/* ========================================
   SLIDE FOOTER
   ======================================== */
.slide-footer .workspace {
    position: relative;
}

.slide-footer .logo-container {
    position: absolute;
    top: 20px;
    left: 20px;
    display: block !important;
}

.slide-footer .footer-brand {
    display: none;
}

.footer-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    gap: 100px;
    margin-top: 40px;
}

.footer-links-group {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.footer-row {
    display: flex;
    gap: 100px;
    justify-content: flex-end;
}

.footer-col {
    text-align: right;
    min-width: 140px;
}

.footer-col h4 {
    font-weight: 400;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 14px;
    color: #6F8F9F;
}

.footer-col a {
    display: block;
    color: #5A7A8A;
    text-decoration: none;
    margin: 8px 0;
    font-size: 0.95rem;
    font-weight: 300;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #3A5A6E;
}

@media (max-width: 1023px) {
    .slide-footer .logo-container {
        position: relative;
        top: 0;
        left: 0;
        text-align: center;
        margin-bottom: 40px;
    }

    .footer-container {
        justify-content: center;
        margin-top: 0;
        gap: 40px;
    }

    .footer-links-group {
        width: 100%;
        align-items: center;
        gap: 0;
    }

    .footer-row {
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }

    .footer-row .footer-col {
        text-align: center;
    }

    .slide-footer .logo-container {
        display: none !important;
    }

    .slide-footer .workspace {
        justify-content: center;
    }

    /* Логотип на мобилке - показываем только на hero */
    .slide-hero .logo-container {
        display: block !important;
        position: absolute;
        top: 20px;
        left: 20px;
        z-index: 10;
    }

    .slide-player .logo-container,
    .slide-video .logo-container,
    .slide-schedule .logo-container,
    .slide-footer .logo-container {
        display: none !important;
    }
}

/* ========================================
   MODAL WINDOWS
   ======================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 63, 0.6);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-card {
    position: relative;
    background: #F8FAFC;
    max-width: 480px;
    width: 90%;
    padding: 40px;
    border-radius: 32px;
    border: 1px solid #A8BCC8;
    overflow: hidden;
}

.modal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    z-index: 0;
}

.modal-card > * {
    position: relative;
    z-index: 1;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #6F8F9F;
    transition: color 0.2s;
    z-index: 2;
}

.modal-close:hover {
    color: #3A5A6E;
}

.modal-card h3 {
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 16px;
    color: #3A5A6E;
}

.modal-date, .modal-time {
    color: #6F8F9F;
    margin-bottom: 6px;
    font-size: 0.95rem;
    font-weight: 300;
}

.modal-time {
    margin-bottom: 20px;
}

.modal-desc {
    color: #5A7A8A;
    margin-bottom: 16px;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 300;
}

.modal-address {
    color: #5A7A8A;
    margin-bottom: 20px;
    font-size: 0.95rem;
    font-weight: 300;
}

.modal-link {
    display: inline-block;
    background: none;
    color: #3A5A6E;
    text-decoration: none;
    border-bottom: 1px solid #A8BCC8;
    padding-bottom: 4px;
    font-size: 0.95rem;
    transition: all 0.2s;
    cursor: pointer;
}

.modal-link:hover {
    border-bottom-color: #3A5A6E;
}

.lyrics-modal-card {
    max-width: 600px;
    max-height: 80vh;
}

.lyrics-content {
    margin-top: 20px;
    line-height: 1.8;
    font-size: 0.95rem;
    color: #3A5A6E;
    white-space: pre-wrap;
    max-height: 50vh;
    overflow-y: auto;
    padding-right: 8px;
}

.lyrics-content::-webkit-scrollbar {
    width: 4px;
}

.lyrics-content::-webkit-scrollbar-track {
    background: #A8BCC8;
    border-radius: 4px;
}

.lyrics-content::-webkit-scrollbar-thumb {
    background: #6F8F9F;
    border-radius: 4px;
}

.video-modal {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.video-modal-content {
    position: relative;
    max-width: 90vw;
    width: 900px;
    background: #1A1A1A;
    border-radius: 24px;
    padding: 20px;
}

.video-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 28px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    z-index: 10;
}

.video-modal-title {
    color: white;
    margin-bottom: 16px;
    font-size: 0.9rem;
    padding-right: 30px;
}

.video-modal-player {
    width: 100%;
}

.video-modal-player iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    border: none;
}

/* ========================================
   COOKIE NOTICE
   ======================================== */
.cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(220, 230, 240, 0.92);
    backdrop-filter: blur(4px);
    padding: 8px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1000;
    border: 1px solid rgba(168, 188, 200, 0.4);
    max-width: 380px;
}

.cookie-text {
    font-size: 0.8rem;
    color: #4A6A6F;
}

.cookie-link {
    color: #6F8F9F;
    text-decoration: none;
    border-bottom: 1px dotted #A8BCC8;
}

.cookie-button {
    background: rgba(58, 90, 110, 0.1);
    color: #4A6A6F;
    border: 1px solid rgba(58, 90, 110, 0.2);
    padding: 4px 14px;
    border-radius: 20px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.8rem;
}

/* ========================================
   TICKET BUTTONS
   ======================================== */
.ticket-button-hero, .ticket-button-modal {
    background: #D99C9C !important;
    border: none !important;
    padding: 10px 28px !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    color: #FFFFFF !important;
    font-family: inherit !important;
    border-radius: 40px !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    text-align: center !important;
}

.ticket-button-hero {
    margin-top: 20px !important;
}

.ticket-button-hero:hover, .ticket-button-modal:hover {
    background: #C47A7A !important;
    transform: translateY(-2px) !important;
}

.video-loading {
    text-align: center;
    padding: 40px;
    color: #6F8F9F;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* ========================================
   ГЛОБАЛЬНЫЙ ФИКСИРОВАННЫЙ ЛОГОТИП (только ПК)
   ======================================== */
.global-logo-container {
    display: none;
}

@media (min-width: 1024px) {
    .global-logo-container {
        display: block;
        position: fixed;
        top: calc(50vh - 325px + 20px);
        left: calc(50vw - 512px + 20px);
        z-index: 300;
    }

    .global-logo-main {
        width: 100px;
        height: auto;
        opacity: 0.85;
    }

    /* Скрываем внутренний логотип на hero-слайде на ПК */
    .slide-hero .mobile-logo {
        display: none !important;
    }
}

/* ========================================
   МОБИЛЬНАЯ ВЕРСИЯ
   ======================================== */
@media (max-width: 1023px) {
    /* Скрываем глобальный логотип на мобилке */
    .global-logo-container {
        display: none !important;
    }

    /* Показываем логотип только на hero-слайде */
    .slide-hero .mobile-logo {
        display: block !important;
        position: absolute;
        top: 20px;
        left: 20px;
        z-index: 10;
    }
}

/* ========================================
   АНИМАЦИЯ ДЛЯ ЛОГОТИПА
   ======================================== */

/* Плавное появление логотипа на месте — заканчивается на 1 */
.global-logo-container {
    opacity: 0;
    animation: fadeInLogo 0.8s ease-out 0.2s forwards;
}

@keyframes fadeInLogo {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Мерцание логотипа — стартует с 1, плавно колеблется */
.global-logo-main {
    transition: all 0.2s ease;
    animation: logoGlowPulse 8s ease-in-out 1s infinite;
}

@keyframes logoGlowPulse {
    0% {
        opacity: 1;
        filter: drop-shadow(0 0 0px rgba(220, 230, 240, 0));
    }
    25% {
        opacity: 0.85;
        filter: drop-shadow(0 0 4px rgba(220, 230, 240, 0.4));
    }
    50% {
        opacity: 0.9;
        filter: drop-shadow(0 0 2px rgba(217, 156, 156, 0.3));
    }
    75% {
        opacity: 0.85;
        filter: drop-shadow(0 0 4px rgba(220, 230, 240, 0.4));
    }
    100% {
        opacity: 1;
        filter: drop-shadow(0 0 0px rgba(220, 230, 240, 0));
    }
}

/* Для мобильного логотипа (на hero-слайде) */
@media (max-width: 1023px) {
    .slide-hero .mobile-logo .logo-main {
        animation: logoGlowPulse 8s ease-in-out 1s infinite;
    }
}