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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.7;
            color: #fff;
            /* Фоновое изображение */
            background: url('/bg.png') center / cover fixed;
            position: relative;
            min-height: 100vh;
        }

        /* Затемнение для читаемости */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background: linear-gradient(rgba(20, 40, 20, .45), rgba(0, 0, 0, .7));
            z-index: -1;
            pointer-events: none;
        }

        /* ===== Стеклянный липкий хедер ===== */
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 20px 20px 14px;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            background: rgba(0, 0, 0, .25);
            border-bottom: 1px solid rgba(255, 255, 255, .15);
            text-align: center;
        }

        header .site-title {
            font-weight: 700;
            font-size: 2em;
            letter-spacing: 1px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            margin-bottom: 0.2rem;
        }

        nav {
            margin-top: 10px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 5px;
        }

        nav a {
            color: #fff;
            text-decoration: none;
            margin: 0 12px;
            font-weight: 600;
            position: relative;
            transition: color 0.3s;
            white-space: nowrap;
        }

        nav a::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -5px;
            width: 0;
            height: 2px;
            background: #ffd700;
            transition: 0.3s;
            transform: translateX(-50%);
        }

        nav a:hover {
            color: #ffd700;
        }

        nav a:hover::after {
            width: 100%;
        }

        /* ===== Герой-секция ===== */
        .hero {
            height: 85vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .hero-box {
            max-width: 900px;
            text-align: center;
            padding: 50px 40px;
            border-radius: 30px;
            background: rgba(255, 255, 255, .08);
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            border: 1px solid rgba(255, 255, 255, .2);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 0.8s ease-out;
        }

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

        .hero-box h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            font-weight: 800;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        }

        .hero-box p {
            font-size: 1.2rem;
            font-weight: 300;
            opacity: 0.9;
            margin-bottom: 10px;
        }

        .hero-btn {
            display: inline-block;
            margin-top: 25px;
            padding: 15px 40px;
            background: linear-gradient(135deg, #2c5e2e, #5a9e5d);
            color: #fff;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 10px 25px rgba(44, 94, 46, 0.4);
            border: none;
            cursor: pointer;
        }

        .hero-btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 35px rgba(44, 94, 46, 0.6);
        }

        /* ===== Контейнер ===== */
        .container {
            max-width: 1200px;
            margin: auto;
            padding: 0 20px 30px;
            position: relative;
            z-index: 1;
        }

        /* ===== Стеклянные карточки ===== */
        .glass-card {
            padding: 35px 30px;
            border-radius: 25px;
            background: rgba(255, 255, 255, .08);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, .2);
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
            margin-bottom: 30px;
        }

        .glass-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
        }

        /* Статистика */
        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            margin: 50px 0 30px;
        }

        .stats .glass-card {
            text-align: center;
            padding: 30px 20px;
            margin-bottom: 0;
        }

        .stats h2 {
            font-size: 2.5rem;
            margin-bottom: 5px;
            font-weight: 800;
            background: linear-gradient(135deg, #ffd700, #f0c040);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stats p {
            font-weight: 600;
            font-size: 1.1rem;
            opacity: 0.85;
        }

        /* Заголовки */
        h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            font-weight: 700;
            position: relative;
            padding-bottom: 10px;
            color: #fff;
        }

        h2::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 3px;
            background: #ffd700;
            border-radius: 2px;
        }

        /* Новости */
        .news-item {
            background: rgba(255, 255, 255, .06);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 20px 25px;
            border-radius: 18px;
            margin-bottom: 20px;
            border-left: 4px solid #ffd700;
            transition: transform 0.3s, background 0.3s;
        }

        .news-item:hover {
            background: rgba(255, 255, 255, .12);
            transform: translateX(5px);
        }

        .news-date {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 4px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .news-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #ffd700;
            margin-bottom: 8px;
        }

        .news-item p {
            opacity: 0.9;
            line-height: 1.6;
        }

        /* Карусель */
        .carousel-section {
            margin: 40px 0 30px;
        }

        .carousel {
            position: relative;
            width: 100%;
            max-width: 850px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .carousel-track img {
            width: 100%;
            flex-shrink: 0;
            display: block;
            object-fit: cover;
            height: 450px;
            cursor: pointer;
            transition: filter 0.3s;
        }

        .carousel-track img:hover {
            filter: brightness(1.08);
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.55);
            color: #fff;
            border: none;
            font-size: 2rem;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            transition: background 0.3s, transform 0.3s;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .carousel-btn:hover {
            background: rgba(0, 0, 0, 0.8);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn.prev {
            left: 15px;
        }
        .carousel-btn.next {
            right: 15px;
        }

        .carousel-dots {
            text-align: center;
            margin-top: 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 6px;
        }

        .carousel-dots .dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            margin: 0 2px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            cursor: pointer;
            transition: background 0.3s, transform 0.3s;
        }

        .carousel-dots .dot.active {
            background: #ffd700;
            transform: scale(1.4);
            box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
        }

        /* Кнопка скачивания */
        .download-btn {
            display: inline-block;
            background: linear-gradient(135deg, #2c5e2e, #5a9e5d);
            color: #fff;
            padding: 1rem 2.5rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 10px 28px rgba(44, 94, 46, 0.45);
            margin: 10px 0;
            border: none;
        }

        .download-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 18px 38px rgba(44, 94, 46, 0.65);
        }

        /* Контакты */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 1.05rem;
            background: rgba(255, 255, 255, .05);
            padding: 15px 20px;
            border-radius: 16px;
            transition: background 0.3s;
        }

        .contact-item:hover {
            background: rgba(255, 255, 255, .12);
        }

        .contact-icon {
            font-size: 2rem;
            flex-shrink: 0;
        }

        .contact-item a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-item a:hover {
            color: #ffd700;
        }

        /* График */
        .schedule-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .schedule-list li {
            font-size: 1.05rem;
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.05);
            padding: 12px 18px;
            border-radius: 14px;
            transition: background 0.3s;
        }

        .schedule-list li:hover {
            background: rgba(255, 255, 255, 0.12);
        }

        .schedule-day {
            font-weight: 700;
            min-width: 130px;
            color: #ffd700;
        }

        .schedule-time {
            opacity: 0.9;
        }

        /* Футер */
        footer {
            margin-top: 40px;
            padding: 25px;
            text-align: center;
            background: rgba(0, 0, 0, .45);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-top: 1px solid rgba(255, 255, 255, .1);
            font-size: 0.9rem;
            position: relative;
            z-index: 1;
        }

        /* Лайтбокс */
        .lightbox {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.92);
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox img {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
            border-radius: 12px;
            box-shadow: 0 0 60px rgba(0, 0, 0, 0.6);
            animation: zoomIn 0.3s ease-out;
        }

        @keyframes zoomIn {
            from {
                transform: scale(0.9);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 40px;
            font-size: 3rem;
            color: #fff;
            cursor: pointer;
            z-index: 2001;
            background: none;
            border: none;
            line-height: 1;
            transition: transform 0.3s;
        }

        .lightbox-close:hover {
            transform: scale(1.2);
        }

        .lightbox-prev,
        .lightbox-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 2.5rem;
            color: #fff;
            background: rgba(255, 255, 255, 0.15);
            border: none;
            cursor: pointer;
            padding: 0.4rem 1rem;
            border-radius: 50%;
            z-index: 2001;
            transition: background 0.3s, transform 0.3s;
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
        }

        .lightbox-prev:hover,
        .lightbox-next:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-50%) scale(1.1);
        }

        .lightbox-prev {
            left: 30px;
        }
        .lightbox-next {
            right: 30px;
        }

        /* Анимация появления */
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== ДОБАВЛЕНИЯ ===== */

        /* Волны-разделители */
        .wave-divider {
            position: relative;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            margin: 0;
            z-index: 1;
        }
        .wave-divider svg {
            display: block;
            width: 100%;
            height: 80px;
        }
        .wave-divider.light svg path {
            fill: rgba(255, 255, 255, 0.1);
        }
        .wave-divider.dark svg path {
            fill: rgba(0, 0, 0, 0.3);
        }

        /* Кнопка наверх */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: rgba(44, 94, 46, 0.8);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffd700;
            font-size: 1.8rem;
            cursor: pointer;
            z-index: 999;
            opacity: 0;
            transition: opacity 0.3s, transform 0.3s;
            pointer-events: none;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        .scroll-top.visible {
            opacity: 1;
            pointer-events: auto;
        }
        .scroll-top:hover {
            transform: scale(1.1);
            background: rgba(44, 94, 46, 1);
        }

        /* Секция "Почему выбирают нас" */
        .reasons-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
            margin-top: 15px;
        }
        .reason-item {
            flex: 1 1 200px;
            text-align: center;
            padding: 25px 15px;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 20px;
            transition: background 0.3s, transform 0.3s;
        }
        .reason-item:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
        }
        .reason-icon {
            font-size: 3rem;
            margin-bottom: 10px;
        }
        .reason-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin: 10px 0 5px;
            color: #ffd700;
        }
        .reason-text {
            font-size: 0.95rem;
            opacity: 0.85;
        }

        /* Адаптивность */
        @media (max-width: 768px) {
            .hero-box h1 {
                font-size: 2.5rem;
            }
            .hero-box {
                padding: 30px 20px;
            }
            .hero {
                height: 70vh;
            }
            nav a {
                margin: 0 8px;
                font-size: 0.9rem;
            }
            .carousel-track img {
                height: 280px;
            }
            .stats h2 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .glass-card {
                padding: 25px 18px;
            }
            .lightbox-prev {
                left: 10px;
            }
            .lightbox-next {
                right: 10px;
            }
            .reasons-grid {
                flex-direction: column;
            }
            .schedule-day {
                min-width: 100px;
            }
        }

/* Компенсация высоты sticky header для якорных ссылок */
section[id],
div[id] {
    scroll-margin-top: 90px;
}

/* Исправление цвета опций в select на тёмном фоне */
select option {
    background: #1e2a1e;
    color: #fff;
}
