* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    width: 100%;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    overflow-x: hidden;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: clamp(0.5rem, 2vw, 1rem) clamp(1rem, 3vw, 2rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(0.5rem, 2vw, 1rem);
}

.navbar-logo img {
    height: clamp(35px, 6vw, 50px);
    width: auto;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: clamp(1rem, 3vw, 2.5rem);
}

.navbar-menu a {
    color: #fff;
    text-decoration: none;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3), 0 0 8px rgba(0, 0, 0, 0.2);
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.navbar-menu a:hover::after {
    width: 100%;
}

.navbar-lang {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: clamp(0.4rem, 1vw, 0.5rem) clamp(0.7rem, 1.5vw, 1rem);
    border-radius: 5px;
    cursor: pointer;
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lang-btn.active {
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.6);
}

.hero {
    position: relative;
    width: 100%;
    max-width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
}

.slide-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

.slide-content h2 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    margin-bottom: clamp(0.5rem, 2vw, 1rem);
    text-transform: uppercase;
    letter-spacing: clamp(1px, 0.3vw, 3px);
    animation: fadeInUp 1s ease-out;
}

.slide-content h3 {
    font-size: clamp(1.3rem, 3.5vw, 2.4rem);
    font-weight: 300;
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
    letter-spacing: clamp(0.5px, 0.2vw, 1px);
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.btn-buy {
    background: #fff;
    color: #000;
    border: none;
    padding: clamp(0.7rem, 1.5vw, 1rem) clamp(1.5rem, 4vw, 3rem);
    font-size: clamp(0.9rem, 1.8vw, 1.2rem);
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.4s backwards;
    text-transform: uppercase;
    letter-spacing: clamp(0.5px, 0.2vw, 1px);
}

.btn-buy:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.slider-controls {
    position: absolute;
    bottom: clamp(1.5rem, 4vw, 3rem);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: clamp(1rem, 3vw, 2rem);
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: clamp(40px, 6vw, 50px);
    height: clamp(40px, 6vw, 50px);
    border-radius: 50%;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

.slider-dots {
    display: flex;
    gap: 1rem;
}

.dot {
    width: clamp(10px, 1.5vw, 12px);
    height: clamp(10px, 1.5vw, 12px);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #fff;
    transform: scale(1.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-section {
    min-height: 100vh;
    background: #ffffff;
    padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 3vw, 2rem);
    display: flex;
    align-items: center;
    overflow-x: hidden;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 4rem);
    align-items: center;
}

.about-image {
    position: relative;
    width: 100%;
    height: clamp(400px, 60vw, 600px);
    overflow: visible;
}

.about-image img#about-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.about-mask {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: clamp(120px, 20vw, 180px);
    height: clamp(120px, 20vw, 180px);
    background: #2563EB;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1rem, 2vw, 1.5rem);
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.3);
}

.about-mask img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
}

.about-label {
    color: #666;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 400;
    letter-spacing: 1px;
}

.about-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #000;
    margin: 0;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
}

.about-text p {
    color: #333;
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    line-height: 1.7;
    margin: 0;
}

.about-details {
    color: #2563EB;
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    display: inline-block;
    width: fit-content;
    transition: color 0.3s ease;
}

.about-details::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #2563EB;
    transition: transform 0.3s ease;
}

.about-details:hover {
    color: #1d4ed8;
}

.about-details:hover::after {
    transform: scaleX(0);
}

.about-theatre {
    margin-top: clamp(1rem, 2vw, 1.5rem);
    display: flex;
    flex-direction: column;
    gap: clamp(0.5rem, 1vw, 0.75rem);
}

.about-theatre h4 {
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    font-weight: 600;
    color: #000;
    margin: 0;
}

.about-theatre p {
    color: #666;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    margin: 0;
}

.btn-directions {
    background: #2563EB;
    color: #fff;
    border: none;
    padding: clamp(0.8rem, 1.5vw, 1rem) clamp(1.8rem, 3vw, 2.5rem);
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: clamp(0.5rem, 1vw, 0.75rem);
    width: fit-content;
}

.btn-directions:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

@media (max-width: 968px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: clamp(2rem, 4vw, 3rem);
    }
    
    .about-image {
        height: clamp(300px, 50vw, 500px);
    }
    
    .about-content {
        order: 2;
    }
}

.repertoire-section {
    width: 100%;
    max-width: 100vw;
    background: linear-gradient(135deg, #1a1d3a 0%, #2d1b3d 50%, #1a1d3a 100%);
    padding: clamp(4rem, 8vw, 6rem) 0;
    overflow-x: hidden;
}

.repertoire-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

.repertoire-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    text-align: center;
}

.repertoire-list {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
}

.repertoire-list--empty {
    align-items: center;
    justify-content: center;
    min-height: clamp(200px, 28vw, 320px);
}

.repertoire-empty {
    width: 100%;
    max-width: 36rem;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2.5rem);
}

.repertoire-empty-title {
    font-size: clamp(1.15rem, 2.2vw, 1.5rem);
    font-weight: 600;
    color: #fff;
    margin: 0 0 clamp(0.75rem, 2vw, 1rem);
    line-height: 1.4;
}

.repertoire-empty-text {
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.55;
}

.repertoire-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: clamp(1rem, 2vw, 1.5rem);
    display: grid;
    grid-template-columns: auto auto 1fr auto auto;
    gap: clamp(1rem, 3vw, 2rem);
    align-items: center;
    transition: all 0.3s ease;
    max-width: 100%;
    overflow: hidden;
}

.repertoire-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.repertoire-image {
    width: clamp(80px, 12vw, 120px);
    height: clamp(80px, 12vw, 120px);
    border-radius: 12px;
    overflow: hidden;
}

.repertoire-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.repertoire-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: clamp(60px, 8vw, 80px);
}

.date-number {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.date-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(0.75rem, 1.2vw, 0.9rem);
    text-align: center;
}

.repertoire-info {
    display: flex;
    flex-direction: column;
    gap: clamp(0.5rem, 1vw, 0.75rem);
}

.repertoire-info h3 {
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.4;
}

.age-rating {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.75rem, 1.2vw, 0.85rem);
    font-weight: 600;
    padding: clamp(0.25rem, 0.5vw, 0.35rem) clamp(0.5rem, 1vw, 0.7rem);
    border-radius: 6px;
    width: fit-content;
}

.repertoire-location {
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(0.85rem, 1.4vw, 1rem);
    line-height: 1.5;
}

.repertoire-location p {
    margin: 0;
}

.repertoire-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: clamp(0.5rem, 1vw, 0.75rem);
    min-width: fit-content;
}

.repertoire-price span {
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
}

.btn-tickets {
    background: #2563EB;
    color: #fff;
    border: none;
    padding: clamp(0.7rem, 1.5vw, 0.9rem) clamp(1.5rem, 3vw, 2rem);
    font-size: clamp(0.85rem, 1.4vw, 1rem);
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-tickets:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

@media (max-width: 1024px) {
    .repertoire-item {
        grid-template-columns: auto auto 1fr;
        grid-template-rows: auto auto;
        gap: clamp(1rem, 2vw, 1.5rem);
    }
    
    .repertoire-location {
        grid-column: 1 / 3;
        grid-row: 2;
    }
    
    .repertoire-price {
        grid-column: 3;
        grid-row: 1 / 3;
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    .repertoire-item {
        gap: clamp(0.5rem, 1.5vw, 1rem);
        padding: clamp(0.75rem, 1.5vw, 1rem);
    }
    
    .repertoire-date {
        min-width: clamp(50px, 10vw, 70px);
    }
}

@media (max-width: 768px) {
    .repertoire-item {
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto auto;
        gap: clamp(0.75rem, 2vw, 1rem);
    }
    
    .repertoire-image {
        grid-column: 1;
        grid-row: 1 / 3;
    }
    
    .repertoire-date {
        grid-column: 2;
        grid-row: 1;
        align-items: flex-start;
    }
    
    .repertoire-info {
        grid-column: 2;
        grid-row: 2;
    }
    
    .repertoire-location {
        grid-column: 1 / 3;
        grid-row: 3;
    }
    
    .repertoire-price {
        grid-column: 1 / 3;
        grid-row: 4;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.news-section {
    background: #ffffff;
    padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 3vw, 2rem);
    max-width: 100vw;
    overflow: hidden;
}

.news-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 4rem);
    align-items: flex-start;
}

.news-image-wrapper {
    position: relative;
    width: 100%;
    height: auto;
}

.news-image {
    width: 100%;
    height: clamp(400px, 50vh, 600px);
    border-radius: 0;
    overflow: hidden;
    transition: none;
}

.news-image.sticky {
    position: fixed;
    top: 120px;
    z-index: 100;
}

.news-image.bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    top: auto;
    width: 100%;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
}

.news-label {
    color: #666;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 400;
    letter-spacing: 1px;
}

.news-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #000;
    margin: 0;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
}

.news-item {
    background: #f8f9fa;
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: clamp(0.75rem, 1.5vw, 1rem);
    transition: all 0.3s ease;
}

.news-item:hover {
    background: #f1f3f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.news-item p {
    color: #333;
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    line-height: 1.7;
    margin: 0;
}

.news-link {
    color: #2563EB;
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    display: inline-block;
    width: fit-content;
    transition: color 0.3s ease;
}

.news-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #2563EB;
    transition: transform 0.3s ease;
}

.news-link:hover {
    color: #1d4ed8;
}

.news-link:hover::after {
    transform: scaleX(0);
}

@media (max-width: 968px) {
    .news-container {
        grid-template-columns: 1fr;
        gap: clamp(2rem, 4vw, 3rem);
    }
    
    .news-image {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: clamp(300px, 50vw, 500px);
    }
}

.faq-section {
    width: 100%;
    max-width: 100vw;
    background: #f8f9fa;
    padding: clamp(4rem, 8vw, 6rem) clamp(1rem, 3vw, 2rem);
    overflow-x: hidden;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #000;
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: clamp(0.75rem, 1.5vw, 1rem);
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: clamp(1.2rem, 2.5vw, 1.5rem) clamp(1.5rem, 3vw, 2rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(1rem, 2vw, 1.5rem);
    cursor: pointer;
    text-align: left;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 600;
    color: #000;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #2563EB;
}

.faq-icon {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 300;
    color: #2563EB;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2rem);
    color: #555;
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-question {
        padding: clamp(1rem, 2vw, 1.2rem) clamp(1rem, 2vw, 1.5rem);
    }
    
    .faq-answer p {
        padding: 0 clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem);
    }
}

.reviews-section {
    width: 100%;
    max-width: 100vw;
    background: #fff;
    padding: clamp(4rem, 8vw, 6rem) 0;
    overflow-x: hidden;
}

.reviews-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.reviews-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #000;
    margin: 0;
}

.reviews-navigation {
    display: flex;
    gap: 0.75rem;
}

.reviews-btn-prev,
.reviews-btn-next {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    color: #000;
    width: clamp(40px, 5vw, 50px);
    height: clamp(40px, 5vw, 50px);
    border-radius: 50%;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-btn-prev:hover,
.reviews-btn-next:hover {
    background: #2563EB;
    color: #fff;
    border-color: #2563EB;
}

.reviews-btn-prev.swiper-button-disabled,
.reviews-btn-next.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.reviews-swiper {
    overflow: hidden;
}

.review-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: clamp(1.5rem, 3vw, 2rem);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
    transition: all 0.3s ease;
}

.review-card:hover {
    background: #f1f3f5;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.review-stars {
    color: #ffd700;
    font-size: clamp(1rem, 2vw, 1.3rem);
    letter-spacing: 2px;
}

.review-text {
    color: #333;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: clamp(0.75rem, 1.5vw, 1rem);
    border-top: 1px solid #e9ecef;
}

.review-author span {
    font-size: clamp(0.9rem, 1.4vw, 1rem);
    font-weight: 600;
    color: #000;
}

.review-quote-icon {
    color: #2563EB;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .reviews-header {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
    
    .reviews-navigation {
        align-self: flex-end;
    }
}

.seo-section {
    width: 100%;
    max-width: 100vw;
    background: #f8f9fa;
    padding: clamp(4rem, 8vw, 6rem) clamp(1rem, 3vw, 2rem);
    overflow-x: hidden;
}

.seo-container {
    max-width: 1200px;
    margin: 0 auto;
}

.seo-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #000;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    text-align: center;
}

.seo-content {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
}

.seo-text-columns {
    column-count: 2;
    column-gap: clamp(2rem, 4vw, 3rem);
    text-align: justify;
}

.seo-text-columns p {
    color: #333;
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
    line-height: 1.8;
    margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
    break-inside: avoid;
}

.seo-expand-btn {
    background: #2563EB;
    color: #fff;
    border: none;
    padding: clamp(0.8rem, 1.5vw, 1rem) clamp(2rem, 4vw, 3rem);
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
}

.seo-expand-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.seo-additional-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.seo-additional-content.expanded {
    max-height: 5000px;
}

.seo-additional-content h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 600;
    color: #000;
    margin: clamp(1.5rem, 3vw, 2rem) 0 clamp(0.75rem, 1.5vw, 1rem) 0;
}

.seo-additional-content h3:first-child {
    margin-top: 0;
}

.seo-additional-content p {
    color: #333;
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
    line-height: 1.8;
    margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
    text-align: justify;
}

.seo-additional-content ul {
    margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
    padding-left: clamp(1.2rem, 2.5vw, 1.8rem);
    list-style: none;
}

.seo-additional-content li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.65rem;
    color: #333;
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
    line-height: 1.8;
    text-align: justify;
}

.seo-additional-content li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #2563EB;
    font-weight: 600;
}

.seo-additional-content li:last-child {
    margin-bottom: 0;
}

.season-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.season-table thead {
    background: #1a1d3a;
}

.season-table th {
    padding: clamp(0.8rem, 1.5vw, 1.1rem) clamp(1rem, 2vw, 1.5rem);
    text-align: left;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.season-table td {
    padding: clamp(0.8rem, 1.5vw, 1.1rem) clamp(1rem, 2vw, 1.5rem);
    color: #333;
    border-bottom: 1px solid #e9ecef;
    vertical-align: top;
    line-height: 1.6;
}

.season-table tbody tr:last-child td {
    border-bottom: none;
}

.season-table tbody tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.02);
}

.season-table tbody tr {
    transition: background 0.2s ease;
}

.season-table tbody tr:hover {
    background: #f1f3f5;
}

.production-tag {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 0.85em;
    font-weight: 500;
    margin: 2px 3px;
}

.production-tag.tchaik {
    background: rgba(37, 99, 235, 0.1);
    color: #2563EB;
}

.production-tag.onegin {
    background: rgba(139, 92, 246, 0.1);
    color: #7c3aed;
}

.production-tag.seagull {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.break-accent {
    color: #666;
    font-style: italic;
}

@media (max-width: 768px) {
    .season-table th,
    .season-table td {
        padding: clamp(0.6rem, 1.2vw, 0.8rem) clamp(0.7rem, 1.5vw, 1rem);
        font-size: clamp(0.8rem, 1.3vw, 0.9rem);
    }
}

@media (max-width: 968px) {
    .seo-text-columns {
        column-count: 1;
    }
}

.footer {
    width: 100%;
    max-width: 100vw;
    background: #000;
    color: #fff;
    padding: clamp(3rem, 6vw, 4rem) 0 clamp(1.5rem, 3vw, 2rem) 0;
    overflow-x: hidden;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: flex-start;
    padding-bottom: clamp(2rem, 4vw, 3rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
}

.footer-logo img {
    height: clamp(40px, 6vw, 50px);
    width: auto;
}

.footer-heading {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: clamp(0.75rem, 1.5vw, 1rem);
}

.footer-newsletter p {
    font-size: clamp(0.85rem, 1.4vw, 0.95rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
}

.newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: clamp(0.7rem, 1.5vw, 0.9rem) clamp(1rem, 2vw, 1.5rem);
    border-radius: 8px;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: clamp(0.7rem, 1.5vw, 0.9rem) clamp(1.5rem, 3vw, 2rem);
    border-radius: 8px;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.footer-middle {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(2rem, 4vw, 3rem);
    padding-bottom: clamp(2rem, 4vw, 3rem);
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: clamp(0.75rem, 1.5vw, 1rem);
}

.footer-phone {
    color: #fff;
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-phone:hover {
    color: rgba(255, 255, 255, 0.7);
}

.footer-email {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-email:hover {
    color: #fff;
}

.footer-hours {
    color: rgba(255, 255, 255, 0.6);
    font-size: clamp(0.85rem, 1.4vw, 0.95rem);
    line-height: 1.6;
    margin: 0;
}

.footer-nav-title {
    margin: 0 0 clamp(0.5rem, 1vw, 0.65rem);
    color: #fff;
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
    font-weight: 600;
    line-height: 1.3;
}

.footer-nav-muted {
    color: rgba(255, 255, 255, 0.45);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    line-height: 1.4;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: clamp(0.6rem, 1.2vw, 0.8rem);
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #fff;
}

.footer-bottom {
    padding-top: clamp(1.5rem, 3vw, 2rem);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: clamp(0.8rem, 1.3vw, 0.9rem);
    line-height: 1.6;
    margin: 0;
}

.event-page {
    background: #ffffff;
    color: #000;
    padding-top: 80px;
}

.event-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 0;
    font-size: 14px;
    color: #999;
}

.breadcrumbs a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: #2563EB;
}

.breadcrumb-separator {
    color: #ccc;
}

.breadcrumb-current {
    color: #000;
}

.event-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 40px 0 60px;
}

.event-hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.event-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-hero-logo {
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 80px;
    height: 80px;
    background: #2563EB;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.event-hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.event-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.event-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.event-meta-item {
    font-size: 16px;
    color: #666;
}

.event-meta-separator {
    color: #ccc;
}

.age-rating {
    background: rgba(37, 99, 235, 0.1);
    color: #2563EB;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
}

.event-dates {
    font-size: 18px;
    color: #000;
    font-weight: 500;
}

.event-tabs {
    display: flex;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 40px;
    gap: 40px;
}

.event-tab {
    background: none;
    border: none;
    color: #999;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 20px 0;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    transition: color 0.3s ease;
}

.event-tab:hover {
    color: #666;
}

.event-tab.active {
    color: #2563EB;
}

.event-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: #2563EB;
}

.event-tab-content {
    display: none;
    padding-bottom: 80px;
}

.event-tab-content.active {
    display: block;
}

.event-tickets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}


.event-ticket-card {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    user-select: none;
}

.event-ticket-card:hover {
    background: #f1f3f5;
    border-color: #2563EB;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.event-ticket-card.primary {
    background: linear-gradient(135deg, #2563EB 0%, #1d4ed8 100%);
    border-color: #2563EB;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25);
}

.event-ticket-card.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.ticket-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-indicator.available {
    background: #4CAF50;
}

.ticket-day {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.event-ticket-card.primary .ticket-day {
    color: rgba(255, 255, 255, 0.9);
}

.ticket-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.ticket-date {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.ticket-date-number {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    color: #000;
}

.event-ticket-card.primary .ticket-date-number {
    color: #fff;
}

.ticket-date-text {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.event-ticket-card.primary .ticket-date-text {
    color: rgba(255, 255, 255, 0.8);
}

.ticket-time {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.event-ticket-card.primary .ticket-time {
    color: #fff;
}

.ticket-action {
    font-size: 13px;
    font-weight: 600;
    color: #2563EB;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ticket-action span {
    margin-top: 7px;
}

.event-ticket-card.primary .ticket-action {
    color: #fff;
    opacity: 0.9;
}

.no-events {
    text-align: center;
    padding: 60px 30px;
    color: #666;
    font-size: 18px;
    font-weight: 500;
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 16px;
    margin-top: 30px;
}

.event-description {
    max-width: 900px;
}

.event-description h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
}

.event-description h4 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 12px;
}

.event-description p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 16px;
}

.event-description ul,
.event-description ol {
    margin: 0 0 20px 0;
    padding-left: 24px;
    color: #333;
}

.event-description ul {
    list-style: disc;
}

.event-description ol {
    list-style: decimal;
}

.event-description li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.event-description table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 15px;
    line-height: 1.6;
}

.event-description thead th {
    background: #1a1a2e;
    color: #fff;
    font-weight: 600;
    text-align: left;
    padding: 14px 16px;
}

.event-description thead th:first-child {
    border-radius: 8px 0 0 0;
}

.event-description thead th:last-child {
    border-radius: 0 8px 0 0;
}

.event-description tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid #e9ecef;
    color: #333;
    vertical-align: top;
}

.event-description tbody tr:last-child td {
    border-bottom: none;
}

.event-description tbody tr:nth-child(even) {
    background: #f8f9fa;
}

.event-description tbody tr:hover {
    background: #f1f3f5;
}

@media (max-width: 768px) {
    .event-description h3 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .event-description h4 {
        font-size: 18px;
    }

    .event-description table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .event-description thead th,
    .event-description tbody td {
        padding: 10px 12px;
        font-size: 14px;
        white-space: nowrap;
    }
}

.event-advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.advantage-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    background: #f1f3f5;
    border-color: #dee2e6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.advantage-icon {
    width: 50px;
    height: 50px;
    background: #2563EB;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
}

.advantage-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000;
}

.advantage-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.upcoming-events {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.js-modal-order-btn, .modal__form-btn {
    border-color: #2563EB;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25);
    background: #2060a9;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    user-select: none;
    color: #FFFFFF;
    justify-content: center;
}

.text-confirm-wrapper {
    padding: 7px;
}

.tg-minimal-white, .contact-link-white{
    color: #FFFFFF;
    text-decoration: none;
}


.map-section {
    padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 4vw, 2rem);
    background-color: #1a1a1a;
}

.map-container {
    max-width: 1400px;
    margin: 0 auto;
}

.map-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    color: #fff;
    text-align: center;
}

.map-info {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.map-info h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.map-info p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

#map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    #map {
        height: 400px !important;
    }
}

@media (max-width: 1024px) {
    .event-hero {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .event-title {
        font-size: 36px;
    }

    .event-tickets {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .upcoming-events {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .event-container {
        padding: 0 20px;
    }

    .event-title {
        font-size: 28px;
    }

    .event-tabs {
        gap: 20px;
    }

    .event-tab {
        font-size: 12px;
        padding: 15px 0;
    }

    .event-advantages {
        grid-template-columns: 1fr;
    }

    .event-ticket-card {
        align-items: flex-start;
    }

    .ticket-info {
        width: 100%;
    }
}


@media (max-width: 968px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: clamp(2rem, 4vw, 3rem);
    }
    
    .footer-middle {
        grid-template-columns: 1fr 1fr;
        gap: clamp(1.5rem, 3vw, 2rem);
    }
    
    .footer-contacts {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .footer-middle {
        grid-template-columns: 1fr;
    }
    
    .footer-contacts {
        grid-column: 1;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .newsletter-form button {
        width: 100%;
    }
}

