        {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0a0a0a;
            color: #fff;
            line-height: 1.6;
        }

        .header {
    background: rgba(0,0,0,0.95);
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 2px solid #ff3366;
    position: sticky;
    top: 0;
    z-index: 100;
	
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    border-radius: 8px;
}

.logo-text h1 {
    font-size: 1rem;
    margin: 0;
    color: #ff3366;
    font-weight: bold;
    border-bottom: 2px solid #289b3c;
    display: inline-block;
}

.logo-text p {
    font-size: 0.7rem;
    color: #fff;
    margin: 0;
}

.nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.nav a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.85rem;
}

.nav a:hover {
    color: #ff3366;
}

.phone {
    color: #ff3366;
    font-weight: bold;
    font-size: 0.8rem;
}

/* Адаптив для планшетов (до 768px) */
@media (max-width: 768px) {
    .header {
        padding: 8px 15px;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .logo-img {
        width: 35px;
        height: 35px;
    }
    
    .logo-text h1 {
        font-size: 0.85rem;
    }
    
    .logo-text p {
        font-size: 0.6rem;
    }
    
    .nav {
        gap: 8px;
        justify-content: center;
        width: 100%;
    }
    
    .nav a {
        font-size: 0.75rem;
        padding: 4px 6px;
    }
    
    .phone {
        font-size: 0.7rem;
    }
}

/* Адаптив для маленьких телефонов (до 480px) */
@media (max-width: 480px) {
    .header {
        padding: 6px 10px;
    }
    
    .logo-area {
        gap: 6px;
    }
    
    .logo-img {
        width: 28px;
        height: 28px;
    }
    
    .logo-text h1 {
        font-size: 0.7rem;
    }
    
    .logo-text p {
        font-size: 0.5rem;
    }
    
    .nav {
        gap: 5px;
    }
    
    .nav a {
        font-size: 0.65rem;
        padding: 3px 5px;
    }
    
    .phone {
        font-size: 0.6rem;
    }
}

        /* Секция Hero с видео на весь экран */
.hero {
    position: relative;
    height: 100vh; /* На всю высоту экрана */
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(175deg, rgba(6, 6, 13, 0.7) 0%, rgba(3, 8, 21, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    color: #fff;
    line-height: 1.3;
}

.hero-content p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.hero-content .btn {
    background: #ff3366;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.hero-content .btn:hover {
    background: #ff5c88;
    transform: scale(1.05);
}

/* Адаптив для мобильных */
@media (max-width: 768px)
 .header {
        max-height: none; /* убираем ограничение, чтобы контент не обрезался */
    }
 {
    .hero {
        min-height: 500px;
        height: auto;
    }
    .hero-content h1 {
        font-size: 1.6rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
}

        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
        }

        .hero p {
            font-size: 1.2rem;
            color: #fff;
            margin-bottom: 30px;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
        }

        .btn {
            background: #ff3366;
            color: #fff;
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: 0.3s;
            display: inline-block;
        }

        .btn:hover {
            background: #ff5c88;
            transform: scale(1.05);
        }

        .slider-section {
            padding: 60px 20px;
            background: #0f0f0f;
            scroll-margin-top: 80px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 40px;
            color: #ff3366;
        }

        .slider-container {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 0 30px rgba(255,51,102,0.3);
        }

        .slider {
            display: flex;
            transition: transform 0.5s ease;
        }

        .slide {
            min-width: 100%;
        }

        .slide img {
            width: 100%;
            height: 500px;
            object-fit: contain;
            background: #1a1a1a;
        }

        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.7);
            color: #fff;
            border: none;
            padding: 15px 20px;
            cursor: pointer;
            font-size: 1.5rem;
            border-radius: 50%;
            transition: 0.3s;
        }

        .slider-btn:hover {
            background: #ff3366;
        }

        .prev {
            left: 10px;
        }

        .next {
            right: 10px;
        }

        .docs-section {
            padding: 60px 20px;
            background: #1a1a1a;
            scroll-margin-top: 80px;
        }

        .docs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .doc-card {
            background: #2a2a2a;
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            transition: 0.3s;
            border: 1px solid #333;
            cursor: pointer;
        }

        .doc-card:hover {
            transform: translateY(-5px);
            border-color: #ff3366;
            box-shadow: 0 0 20px rgba(255,51,102,0.3);
        }

        .doc-icon {
            font-size: 3rem;
            margin-bottom: 15px;
        }

        .calendar-section {
            padding: 60px 20px;
            background: #0f0f0f;
            scroll-margin-top: 80px;
        }

        .events-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .event-item {
            background: #1a1a1a;
            margin-bottom: 15px;
            padding: 20px;
            border-radius: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            border-left: 4px solid #ff3366;
        }

        .event-date {
            background: #ff3366;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: bold;
        }

        .event-name {
            font-size: 1.1rem;
            flex: 1;
            margin-left: 20px;
        }

        .event-place {
            color: #ccc;
        }

        .news-section {
            padding: 60px 20px;
            background: #0a0a0a;
            scroll-margin-top: 80px;
        }

        .news-list {
            max-width: 900px;
            margin: 0 auto;
        }

        .news-item {
            background: #1a1a1a;
            margin-bottom: 15px;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #333;
            transition: 0.3s;
        }

        .news-item:hover {
            border-color: #ff3366;
        }

        .news-header {
            display: flex;
            align-items: center;
            padding: 20px;
            cursor: pointer;
            gap: 15px;
            flex-wrap: wrap;
        }

        .news-date {
            background: #ff3366;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: bold;
            white-space: nowrap;
        }

        .news-title {
            flex: 1;
            font-size: 1.1rem;
            margin: 0;
        }

        .news-toggle {
            font-size: 1.2rem;
            transition: transform 0.3s;
            color: #ff3366;
        }

        .news-item.active .news-toggle {
            transform: rotate(180deg);
        }

        .news-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out;
            padding: 0 20px;
            background: #252525;
            border-top: none;
        }

        .news-item.active .news-body {
            max-height: 500px;
            padding: 20px;
            border-top: 1px solid #444;
        }

        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.9);
            backdrop-filter: blur(5px);
        }

        .modal-content {
            position: relative;
            background: #1a1a1a;
            margin: 30px auto;
            padding: 20px;
            width: 90%;
            max-width: 1200px;
            border-radius: 15px;
            border: 1px solid #ff3366;
        }

        .modal-close {
            position: absolute;
            top: 15px;
            right: 25px;
            color: #fff;
            font-size: 45px;
            font-weight: bold;
            cursor: pointer;
            transition: 0.3s;
            z-index: 10;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #ff3366;
            border-radius: 50%;
            line-height: 1;
        }

        .modal-close:hover {
            color: #fff;
            background: #ff5c88;
            transform: scale(1.1);
        }

        .go-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 55px;
            height: 55px;
            background: #ff3366;
            color: #fff;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s;
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            box-shadow: 0 0 15px rgba(255,51,102,0.5);
        }

        .go-top.show {
            opacity: 1;
            visibility: visible;
        }

        .go-top:hover {
            background: #ff5c88;
            transform: scale(1.1);
        }

        .footer {
            background: #000;
            padding: 40px 20px;
            text-align: center;
            border-top: 1px solid #333;
        }

        .footer a {
            color: #ff3366;
            text-decoration: none;
        }

        @media (max-width: 768px) {
            .header {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            .nav {
                justify-content: center;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .event-item {
                flex-direction: column;
                text-align: center;
            }
            .event-name {
                margin: 10px 0;
            }
            .logo-img {
                width: 40px;
                height: 40px;
            }
            .news-header {
                flex-direction: column;
                text-align: center;
            }
            .go-top {
                width: 45px;
                height: 45px;
                font-size: 22px;
            }
        }
    