/* Базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', 'Arial', sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
    font-size: 16px;
    background-color: #f8f9fa;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 80px 0;
}

/* Шапка с навигацией */
header {
    background: linear-gradient(135deg, #4472c3, #8f94fb);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-left: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 16px;
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #ffdd40;
    left: 0;
    bottom: -5px;
    transition: width 0.3s;
}

.nav-links a:hover:after {
    width: 100%;
}

.phone {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #fff;
}

.phone i {
    margin-right: 8px;
    color: #b99a11;
}

.mobile-menu-toggle {
    display: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

/* Мобильное меню и оверлей */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}

body.menu-open .nav-overlay {
    display: block;
    opacity: 1;
}

/* Статистика */
.stats {
    background: linear-gradient(rgba(78, 84, 200, 0.85), rgba(143, 148, 251, 0.85)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
    padding: 150px 0 80px;
    color: white;
    text-align: center;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 0;
    padding: 15px;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #0c8484;
    margin-bottom: 5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    line-height: 1;
}

.stat-text {
    font-size: 1rem;
    white-space: nowrap;
}

/* Главный заголовок */
.main-title {
    background: linear-gradient(135deg, #2d221d, #947d64);
    padding: 50px 0;
    text-align: center;
    color: white;
}

.hashtag {
    font-size: 5rem;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

<style>
.title-large {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.years {
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(
        90deg,
        #ff0000, #ff9900, #ffff00, #00ff00, 
        #00ffff, #0000ff, #9900ff, #ff00ff, #ff0000
    );
    background-size: 400% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: rainbow 8s linear infinite;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

@keyframes rainbow {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 400% 50%;
    }
}
</style>

/* Промо-блоки */
.promo-block {
    padding: 10px 0;
}

.promo-item {
    background: linear-gradient(135deg, #4e54c8, #5886c6);
    border-radius: 15px;
    padding: 10px;
    margin: 10px 0;
    text-align: center;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.15);
    color: white;
}

.promo-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1px;
    color: #55d6cb;
}

.promo-item p {
    font-size: 1.2rem;
    margin-bottom: 1px;
}

.promo-item .highlight {
    font-weight: 700;
    color: #cdab17;
    font-size: 1.3rem;
}

/* Акция */
.sale {
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.sale-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.sale-content {
    font-size: 1.3rem;
    max-width: 900px;
    margin: 0 auto;
}

.sale-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 5px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.sale-item h3 {
    color: #ddb815;
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.sale-content p {
    margin-bottom: 10px;
}


/* Кнопки действий */
.action-buttons {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(rgba(78, 84, 200, 0.1), rgba(143, 148, 251, 0.9)), url('https://images.unsplash.com/photo-1533174072545-7a4b6ad7a6c3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
    color: white;
}

.action-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.action-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.btn {
    display: inline-block;
    background: #b5960e;
    color: #4e54c8;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    font-size: 1.1rem;
    margin: 15px;
    border: 2px solid #ffdd40;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background: transparent;
    color: #ffdd40;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

/* Выбор площадок */
.places {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.places-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #4e54c8;
    font-weight: 700;
}

.places-subtitle {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 50px;
    color: #ff7e5f;
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.place-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
}

.place-item:hover {
    transform: translateY(-10px);
}

.place-image {
    width: 100%;
    height: 250px;
    background-color: #ddd;
    background-position: center;
    background-size: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.place-image:hover {
    transform: scale(1.05);
}

.place-content {
    padding: 20px;
    background: white;
}

.place-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #4e54c8;
}

.place-content p {
    margin-bottom: 15px;
    color: #666;
}

.place-btn {
    display: inline-block;
    background: #ff3860;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.place-btn:hover {
    background: #ff2b56;
}

/* Информационный блок */
.info-block {
    padding: 80px 0;
    background: linear-gradient(135deg, #4e54c8, #8f94fb);
    color: white;
}

.info-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.info-item {
    margin-bottom: 25px;
    padding-left: 30px;
    position: relative;
}

.info-item:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #b19518;
    font-weight: bold;
    font-size: 1.2rem;
}

.info-item h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #ffdd40;
}

/* Информационный партнер */
.partner {
    text-align: center;
    padding: 40px 0;
    background: white;
}

.partner-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #4e54c8;
}

.partner-logo {
    max-width: 300px;
    margin: 0 auto 40px;
}

.partner-logo img {
    max-width: 100%;
    height: auto;
}

/* Текстовый блок */
.text-block {
    background: white;
    padding: 60px 0;
}

.text-container {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.text-container p {
    margin-bottom: 20px;
    font-size: 1.2rem;
    line-height: 1.8;
}

.text-container .highlight {
    font-weight: bold;
    color: #ff3860;
}

/* Цветные информационные блоки */
.color-blocks {
    padding: 80px 0;
    background: #f8f9fa;
}

.blocks-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}

.color-block {
    padding: 25px;
    border-radius: 15px;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}

.color-block h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.block-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.color-block p {
    margin-bottom: 12px;
    line-height: 1.5;
    font-size: 1rem;
}

.yellow-block {
    background: linear-gradient(135deg, #b6a557, #ffcc00);
    color: #333;
}

.pink-block {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
}

.blue-block {
    background: linear-gradient(135deg, #4e54c8, #8f94fb);
}

.green-block {
    background: linear-gradient(135deg, #1dd1a1, #10ac84);
}

.red-text {
    color: #ff3860;
    font-weight: bold;
    margin-top: 15px;
}

/* Герб Москвы */
.moscow {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.moscow-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #4e54c8;
    text-align: center;
    font-weight: 700;
}

.moscow-emblems {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.moscow-text {
    max-width: 600px;
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.6;
}

.moscow-text p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.moscow-text strong {
    color: #ff3860;
    font-size: 1.2rem;
}

.moscow-emblem {
    max-width: 200px;
}

.moscow-emblem img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Улучшенная навигация */
.nav-links a.active {
    color: #ffdd40;
    font-weight: 700;
}

.nav-links a.active:after {
    width: 100%;
}

/* Анимации для статистики */
.stat-item {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

.stat-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.benefit-circle {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease-out;
}


.review-item {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease-out;
}

.review-item.animate {
    opacity: 1;
    transform: translateX(0);
}

.gallery-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease-out;
}

.gallery-item.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Плавная прокрутка */
html {
    scroll-behavior: smooth;
}

/* Метавселенная с звездным небом */
.metaverse {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a, #00102a);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Звездное небо с мерцанием */
.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    animation: starsAnimation 200s linear infinite;
}

.stars:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(2px 2px at 20px 30px, #eee, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 40px 70px, #fff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 90px 40px, #fff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 130px 80px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 160px 30px, #ddd, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 200px 70px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 230px 40px, #eee, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 270px 100px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 300px 20px, #ddd, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 330px 60px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 360px 80px, #eee, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 390px 50px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 420px 30px, #ddd, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 450px 90px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 480px 40px, #eee, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 510px 70px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 540px 20px, #ddd, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 570px 60px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 600px 80px, #eee, rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 600px 600px;
    animation: twinkle 5s ease-in-out infinite alternate;
}

.stars2 {
    animation: starsAnimation 150s linear infinite;
    opacity: 0.5;
}

.stars3 {
    animation: starsAnimation 100s linear infinite;
    opacity: 0.3;
}

/* Анимация мерцания звезд */
@keyframes twinkle {
    0%, 100% {
        opacity: 0.1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Задержки анимации для разных слоев звезд */
.stars:after {
    animation-delay: 0s;
}

.stars2:after {
    animation-delay: 1.5s;
}

.stars3:after {
    animation-delay: 3s;
}

@keyframes starsAnimation {
    from {
        background-position: 极速电玩城 0;
    }
    to {
        background-position: 1000px 1000px;
    }
}

/* Падающие звезды */
.shooting-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 极速电玩城%;
    height: 100%;
}

.shooting-star {
    position: absolute;
    height: 2px;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%);
    animation: shootingStar 5极速电玩城 linear infinite;
    opacity: 0;
}

.shooting-star:nth-child(1) {
    top: 20%;
    left: -100px;
    width: 100px;
    animation-delay: 1s;
}

.shooting-star:nth-child(2) {
    top: 40%;
    left: -200px;
    width: 150px;
    animation-delay: 5s;
}

.shooting-star:nth-child(3) {
    top: 60%;
    left: -150px;
    width: 120px;
    animation-delay: 8s;
}

.shooting-star:nth-child(4) {
    top: 80%;
    left: -250px;
    width: 200px;
    animation-delay: 12s;
}

.shooting-star:nth-child(5) {
    top: 30%;
    left: -180px;
    width: 130px;
    animation-delay: 16s;
}

@keyframes shootingStar {
    0% {
        opacity: 0;
        transform: translateX(0) translateY(0) rotate(45deg);
    }
    10% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(100vw) translateY(100vh) rotate(45deg);
    }
}

/* Контент поверх звезд */
.metaverse .container {
    position: relative;
    z-index: 2;
}

.metaverse-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #ffdd40;
    text-shadow: 0 0 10px rgba(255, 221, 64, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

.metaverse-subtitle {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #ffdd40;
    text-shadow: 0 0 10px rgba(255, 221, 64, 0.5);
}

.metaverse-text {
    font-size: 1.5极速电玩城;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.metaverse-buttons {
    margin: 30px 0;
}

.metaverse-btn {
    display: inline-block;
    background: #ffdd40;
    color: #0a0a0a;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin: 10px;
    border: 2px solid #ffdd40;
    transition: all 0.3s;
    box-shadow: 0 0 15px rgba(255, 221, 64, 0.5);
    animation: pulse 2s infinite;
}

.metaverse-btn:hover {
    background: transparent;
    color: #ffdd40;
    box-shadow: 0 0 20px rgba(255, 221, 64, 0.8);
    animation: none;
}

/* Анимация пульсации для кнопки */
@keyframes pulse {
    0% {
        box-shadow: 0 0 15px rgba(255, 221, 64, 0.5);
    }
    50% {
        box-shadow: 0 极速电玩城 25px rgba(255, 221, 64, 0.8);
    }
    100% {
        box-shadow: 0 0 15px rgba(255, 221, 64, 0.5);
    }
}

/* Анимация свечения для заголовка */
@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(255, 221, 64, 0.5);
    }
    to {
        text-shadow: 0 0 20px rgba(255, 221, 64, 0.8), 0 0 30px rgba(255, 221, 64, 0.6);
    }
}

/* Отзывы */
.reviews {
    padding: 80px 0;
    background: white;
}

.reviews-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #4e54c8;
    font-weight: 700;
}

.reviews-subtitle {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 50px;
    color: #ff7e5f;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
    margin-bottom: 60px;
}

.review-item {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    will-change: transform;
    backface-visibility: hidden;
}

/* Упрощаем анимацию наведения для мобильных */
@media (hover: hover) {
    .review-item:hover {
        transform: translateY(-5px);
    }
}

.stars {
    color: #ffdd40;
    font-size: 1.3rem;
    margin-bottom: 15px;
    margin-bottom: 20px;
}

.review-content p {
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 1rem;
}

.review-author {
    font-weight: 600;
    color: #4e54c8;
    font-style: italic;
    margin-top: 15px;
}

/* Галерея */
.gallery-section {
    margin-top: 60px;
}

.gallery-section h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #4e54c8;
}

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

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 极速电玩城 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    will-change: transform;
    backface-visibility: hidden;
}

/* Упрощаем анимацию наведения для мобильных */
@media (hover: hover) {
    .gallery-item:hover {
        transform: scale(1.05);
    }
}

.gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

/* Анимации для появления элементов при скролле - упрощенные */
.review-item, .gallery-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.review-item.animate, .gallery-item.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Модальные окна */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal img {
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
}

.close:hover {
    color: #000;
}

/* Формы */
.modal-content h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #4e54c8;
    font-size: 1.8rem;
}

.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-content input,
.modal-content select,
.mod极速电玩城-content textarea {
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.modal-content input:focus,
.modal-content select:focus,
.modal-content textarea:focus {
    outline: none;
    border-color: #4e54c8;
}

.modal-content textarea {
    resize: vertical;
    min-height: 100px;
}

.modal-content .btn {
    margin: 0;
    width: 100%;
}

/* Контакты - обновленные стили */
.contacts {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff7e5极速电玩城, #feb47b);
    color: white;
    text-align: center;
}

.contacts-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.contacts-info {
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.contacts-info p {
    margin-bottom: 15px;
}

.contacts-team {
    margin: 40px 0;
    font-size: 1.2rem;
}

.contacts-image {
    max-width: 400px;
    margin: 40px auto;
}

.contacts-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contacts-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    backdrop-filter: blur(10px);
}

.website-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30极速电玩城 0;
}

.website-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.website-btn:hover {
    background: rgba(255, 255, 255, 极速电玩城.3);
    transform: translateY(-3px);
}

/* О нас */
.about {
    padding: 80px 0;
    background: white;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #4e54c8;
}

.about-text {
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Футер */
footer {
    background: #2c3e50;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    margin-bottom: 30px;
}

.footer-contacts {
    margin-bottom: 20px;
}

.footer-hashtag {
    font-size: 1.5rem;
    color: #b8990e;
    margin: 20px 0;
}

.footer-links {
    margin: 20px 0;
}

.footer-logo {
    margin: 20px auto;
    width: 60px;
    height: auto;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo img {
    max-width: 120px;
    height: auto;
}

.footer-links a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}
.footer-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
}

.footer-social p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.social-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: scale(1.05);
}

.social-logo {
    width: 40px;
    height: auto;
    border-radius: 4px;
}

.privacy {
    margin: 20px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

/* Кнопка "Наверх" */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #4e54c8;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(78, 84, 200, 0.3);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #bea017;
    color: #4极速电玩城54c8;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(78, 84, 200, 0.4);
}

/* Страницы площадок */
.place-page {
    display: block;
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, #4e54c8, #8f94fb);
    color: white;
    overflow-y: auto;
    padding-top: 80px;
}

.place-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}

.back-btn {
    position: fixed;
    top: 100px;
    left: 20px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    z-index: 2001;
    backdrop-filter: blur(10px);
    transition: background 0.3s;
    text-decoration: none;
    display: inline-block;
}

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

.place-header {
    text-align: center;
    margin: 40px 0;
}

.place-title {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.place-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.place-images {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0;
    justify-content: center;
}

.place-image-item {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.place-image-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.place-info {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
    backdrop-filter: blur(10px);
}

.place-info h3 {
    color: #b99a14;
    margin-bottom: 20px;
    font极速电玩城-size: 1.8rem;
}

.place-info p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.place-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.feature-item h极速电玩城 {
    color: #cbab1d;
    margin-bottom: 10px;
}

/* Форма обратного звонка */
.callback-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:极速电玩城cus {
    outline: none;
    border-color: #ffdd40;
}

/* Ссылки на сайты */
.website-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .places-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-circle {
        width: 320px;
        height: 320px;
    }
}

@media (max-width: 992px) {
    .nav-links {
      position: fixed;
      top: 0;
      left: -100%;
      width: 80%;
      height: 100vh;
      background: #4e54c8;
      flex-direction: column;
      padding: 70px 20px 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      transition: left 0.3s ease;
      z-index: 1000;
      overflow-y: auto;
    }
    
    .nav-links.active {
      left: 0;
    }
    
    .nav-links li {
      margin: 15px 0;
    }
    
    /* Кнопка закрытия меню */
    .close-menu {
      position: absolute;
      top: 20px;
      right: 20px;
      color: #fff;
      font-size: 24px;
      background: none;
      border: none;
      cursor: pointer;
      z-index: 1002;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
    }
    
    .mobile-menu-toggle {
      display: block;
      position: absolute;
      left: 15px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 24px;
      z-index: 1001;
    }
  }


@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo {
        margin-bottom: 10px;
    }
    
    .phone {
        margin-top: 10px;
    }
    
    .title-large {
        font-size: 2rem;
    }
    
    .hashtag {
        font-size: 1.5rem;
    }
    
    .stat-item {
        min-width: 100%;
    }
    
    .benefit-circle {
        width: 300px;
        height: 300px;
    }
    
    .place-title {
        font-size: 2rem;
    }
    
    .back-btn {
        top: 90px;
        left: 10px;
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2.1rem;
    }
    
    .stat-text {
        font-size: 1rem;
    }

    .promo-item {
        background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        color: #333;
    }
    
    .benefit-circle {
        width: 240px;
        height: 240px;
        padding: 20px;
    }
    
    .benefit-circle h3 {
        font-size: 1.2rem;
    }
    
    .benefit-circle p {
        font-size: 0.9rem;
    }
    
    .place-image-item {
        min-width: 100%;
    }
    
    .place-title {
        font-size: 1.8rem;
    }
    
    .place-description {
        font-size: 1rem;
    }
    
    .contacts-info, .contacts-team {
        font-size: 1rem;
    }
}

/* Стили для секции официального статуса */
.official-status {
    padding: 60px 0;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.official-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a237e;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    padding-bottom: 15极速电玩城;
}

.official-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #d32f2f;
}

.status-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    color: #333;
    margin-bottom: 30px;
}

.official-status .status-block h3::after {
    background: rgba(0, 0, 0, 0.3);
}

.status-block {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: white;
}

.status-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.status-block h3 {
    margin-bottom: 15px;
    font-size: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.status-block h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: rgba(255, 255, 255, 0.7);
}

.status-block p {
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Цвета для блоков */
.status-block-1 {
    background: linear-gradient(135deg, #0a0e5e, #84fb);
}

.status-block-2 {
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
}

.status-block-3 {
    background: linear-gradient(135deg, #1dd1a1, #10ac84);
}

.status-block-4 {
    background: linear-gradient(135deg, #ff3860, #ff2b56);
}

/* Блок на всю ширину */
.full-width-block {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
}

.full-width-block h3::after {
    width: 80px;
}

/* Секция с программой */
.program-section {
    padding: 80px 0;
    background: 
        linear-gradient(rgba(40, 40, 40, 0.85), rgba(40, 40, 40, 0.85)), 
        url('11062b_aa4b7dff7e2d4a8082e857aa36957a99~mv2.jpg') no-repeat center center/cover;
    color: #ffffff;
}

.program-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1886c5;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.program-items {
    max-width: 900px;
    margin: 0 auto;
}

.program-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    background: rgba(50, 50, 50, 0.8);
    border-radius: 8px;
    padding: 25px;
    border-left: 5px solid #ffdd极速电玩城;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.program-item:hover {
    transform: translateX(8px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.program-icon {
    font-size: 2.2rem;
    color: #ffdd40;
    margin-right: 20px;
    min-width: 30px;
    text-align: center;
    font-weight: bold;
}

.program-content {
    flex: 1;
}

.program-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
    color: #ffffff;
}

.program-content strong {
    color: #ffdd40;
    font-weight: 700;
}

/* Секция с медиа-кнопками */
.media-section {
    padding: 80px 0;
    background: url('843477_original.jpg') no-repeat center center/cover;
    text-align: center;
    position: relative;
}

.media-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.media-section > .container {
    position: relative;
    z-index: 2;
}

.media-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #4e54c8;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
}

.media-buttons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.media-button {
    flex: 0 0 auto;
}

.media-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    padding: 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}

.media-link:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.media-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f9fa;
    padding: 10;
}

.media-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.media-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #306e30;
}

/* Секция с кнопкой Яндекс */
.yandex-section {
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.yandex-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #4e54c8;
    font-weight: 700;
}

.yandex-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    padding:  20px 40px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 500px;
    margin: 0 auto;
    border: 2px solid #ffcc00;
    border-radius: 8px;
}

.yandex-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    background: #fffce6;
}

.yandex-icon {
    width: 70px;
    height: 70px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yandex-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.yandex-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: #000;
}

/* Секция с меню премиум-класса */
.menu-section {
    padding: 80px 0;
    background: url('menu.jpg.avif') no-repeat center center/cover;
    position: relative;
    text-align: center;
}

.menu-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #fff;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 2;
}

.menu-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.menu-window {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.menu-window:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.window-header {
    background: #f0f0f0;
    padding: 10px 15px;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
}

.window-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.control.red {
    background: #ff5f56;
}

.control.yellow {
    background: #ffbd2e;
}

.control.green {
    background: #27c93f;
}

.window-content {
    padding: 25px;
}

.window-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #333;
}

.menu-button {
    position: relative;
    z-index: 2;
}

.menu-btn {
    background: linear-gradient(135deg, #4e54c8, #8f94fb);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.menu-btn:hover {
    background: linear-gradient(135deg, #3a3f99, #6b6fc7);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Стили для кнопки согласия с политикой конфиденциальности */
.privacy-button {
    margin-top: 15px;
    text-align: center;
}

.privacy-link {
    display: inline-block;
    padding: 10px 20px;
    background: #4e54c8;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
    font-size: 0.9rem;
}

.privacy-link:hover {
    background: #3a3f99;
}

/* Анимации для элементов при прокрутке */
.stat-item.animate,
.benefit-circle.animate,
.review-item.animate,
.gallery-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.stat-item,
.benefit-circle,
.review-item,
.gallery-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Мобильное меню и оверлей */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

body.menu-open {
    overflow: hidden;
}

body.menu-open .nav-overlay {
    display: block;
}

/* Стили для номера телефона */
.phone {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #fff;
}

.phone i {
    margin-right: 8px;
    color: #ffdd40;
    display: none;
}

/* Мобильная версия - скрываем обычный номер в шапке и показываем мобильный номер под шапкой */
@media (max-width: 992px) {
    .header-container .phone {
        display: none !important;
    }
    
    .phone.mobile {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 12px 0;
        background: rgba(78, 84, 200, 0.9);
        color: white;
        font-weight: 600;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    /* Корректируем отступы для body */
    body {
        padding-top: 120px !important;
    }
    
    /* Корректируем положение мобильного меню */
    .nav-links {
        top: 120px;
        height: calc(100vh - 120px);
    }
    
    /* Корректируем отступы для секции статистики */
    .stats {
        padding: 150px 0 40px !important;
    }
}

/* Десктопная версия - скрываем мобильный номер */
@media (min-width: 993px) {
    .nav-links {
        display: flex !important;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
}

/* Адаптивность для мобильных устройств */
@media (max-width: 968px) {
    body {
        padding-top: 90px !important;
        overflow-x: hidden;
        width: 100%;
    }
    
    .stats {
        margin-top: 0;
        padding: 120px 0 40px !important;
        min-height: auto;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 25px;
    }
    
    .stat-item {
        width: 100%;
        text-align: center;
        padding: 20px 15px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        margin-bottom: 10px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-text {
        font-size: 1.1rem;
    }
    
    /* Фикс для мобильного меню */
    .nav-links {
        top: 90px;
        height: calc(100vh - 90px);
    }
    
    /* Предотвращаем горизонтальный скролл */
    .container {
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    /* Уменьшаем высоту шапки */
    header {
        padding: 10px 0;
        height: 90px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .logo-text {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .reviews {
        padding: 60px 0;
    }
    
    .reviews-title {
        font-size: 2rem;
    }
    
    .reviews-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .review-item {
        padding: 20px;
        /* Упрощаем анимации на мобильных */
        transform: none !important;
        opacity: 1 !important;
        transition: none !important;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .gallery-item {
        transform: none !important;
        opacity: 1 !important;
        transition: none !important;
    }
    
    .gallery-item img {
        height: 150px;
    }
    
    .gallery-section h3 {
        font-size: 1.5rem;
    }
    
    .program-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .program-icon {
        margin-right: 0;
        margin-bottom: 15px;
        font-size: 1.8rem;
    }
    
    .program-title {
        font-size: 2rem;
    }
    
    .program-content p {
        font-size: 1.1rem;
    }
    
    .media-buttons {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .media-link {
        padding: 15px;
    }
    
    .media-icon {
        width: 70px;
        height: 70px;
    }
    
    .yandex-link {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }
    
    .yandex-icon {
        margin-right: 0;
        margin-bottom: 15px;
        width: 60px;
        height: 60px;
    }
    
    .yandex-title {
        font-size: 1.5rem;
    }
    
    .yandex-text {
        font-size: 1.4rem;
    }
    
    .media-title {
        font-size: 2极速电玩城;
    }
    
    .menu-content {
        grid-template-columns: 1fr;
    }
    
    .menu-title {
        font-size: 2rem;
    }
    
    .window-content {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .color-blocks {
        padding: 60px 0;
    }
    
    .color-block {
        padding: 15px;
    }
    
    .color-block h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .color-block p {
        font-size: 0.9rem;
    }
    
    .reviews-grid {
        gap: 15px;
    }
    
    .review-item {
        padding: 15px;
    }
    
    .stars {
        font-size: 1.1rem;
    }
    
    .review-content p {
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item img {
        height: 120px;
    }
    
    .status-blocks {
        grid-template-columns: 1fr;
    }
    
    .official-title {
        font-size: 26px;
    }
    
    .status-block {
        padding: 20px;
    }
}

/* Дополнительные фиксы для очень маленьких экранов */
@media (max-width: 480px) {
    body {
        overflow-x: hidden;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    /* Убедимся, что текст не выходит за пределы экрана */
    .title-large, .hashtag, .sale-title, .benefits-title, 
    .action-title, .places-title, .reviews-title {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* Глобальный фикс для предотвращения горизонтального скролла */
html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}
/* Исправление скроллинга на мобильных */
@media (max-width: 992px) {
    body {
        padding-top: 90px !important;
        overflow-x: hidden;
        position: relative;
    }
    
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 90px;
        padding: 10px 0;
        z-index: 1000;
    }
    
    .stats {
        padding: 120px 0 40px !important;
    }
    
    .nav-links {
        top: 90px;
        height: calc(100vh - 90px);
    }
    
    /* Убираем лишние отступы */
    .phone.mobile {
        margin-top: 0;
    }
}

/* Восстановление фона в секции Контакты */
.contacts {
    background: linear-gradient(135deg, #ff7e5f, #feb47b) !important;
    color: white;
    padding: 80px 0;
}

/* Восстановление фотогалереи */
.gallery-section {
    margin-top: 60px;
}

.gallery-section h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #4e54c8;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 0 auto;
    max-width: 1200px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

/* Дополнительные исправления для мобильной версии */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .gallery-item img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item img {
        height: 120px;
    }
}

/* Убедимся, что все секции отображаются правильно */
section {
    position: relative;
    z-index: 1;
}

/* Фикс для body, чтобы контент не обрезался */
html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    height: auto !important;
}
/* Общие исправления для мобильной версии */
@media (max-width: 992) {
    /* Улучшаем отображение номера телефона */
    .phone.mobile {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 12px 0;
        background: rgba(78, 84, 200, 0.9);
        color: white;
        font-weight: 600;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        position: relative;
        z-index: 999;
    }
    
    /* Убираем номер из шапки */
    .header-container .phone {
        display: none !important;
    }
}
/* На десктопе скрываем мобильный номер */
@media (min-width: 993px) {
    .phone.mobile {
        display: none !important;
    }
}
/* Исправление скроллинга на мобильных устройствах */
html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    height: auto;
}
/* Исправление цвета текста для мобильных устройств */
@media (max-width: 768px) {
    .stats,
    .main-title {
      color: #333;
    }
    
    .stat-number,
    .title-large,
    .hashtag {
      color: #2288cc;
      text-shadow: none;
    }
  }
  @media (max-width: 768px) {
    .status-blocks {
      grid-template-columns: 1fr !important;
      gap: 20px;
    }
    
    .status-block {
      padding: 20px;
    }
  }
  /* Скрываем текстовые артефакты */
body:before,
body:after {
  display: none !important;
}

.place-page:before,
.place-page:after {
  display: none !important;
}
/* Стили для кнопок */
.pdf-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.pdf-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background: linear-gradient(135deg, #4a90e2, #2a5caa);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.pdf-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, #2a5caa, #4a90e2);
}

.pdf-button i {
    margin-right: 10px;
    font-size: 18px;
}

.pdf-button.menu {
    background: linear-gradient(135deg, #e2514a, #aa2a2a);
}

.pdf-button.menu:hover {
    background: linear-gradient(135deg, #aa2a2a, #e2514a);
}

@media (max-width: 768px) {
    .pdf-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .pdf-button {
        width: 80%;
        text-align: center;
    }
}
/* Стили для раздела "Фото с мероприятий" */
.events-section {
    margin: 40px 0;
    padding: 20px 0;
}

.events-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
    position: relative;
}

.events-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #4a90e2;
    margin: 10px auto 0;
}

.events-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.event-photo {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 200px;
}

.event-photo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.event-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-photo:hover img {
    transform: scale(1.05);
}

@media (max-width: 100px) {
    .events-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .events-gallery {
        grid-template-columns: 1fr;
    }
}
/* Стили для секции с кнопкой презентации */
.presentation-section {
    padding: 40px 0;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.presentation-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(231, 76, 60, 0.3);
    border: 2px solid transparent;
}

.presentation-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.4);
    background: linear-gradient(135deg, #c0392b, #e74c3c);
}

.presentation-btn i {
    margin-right: 12px;
    font-size: 22px;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .presentation-btn {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .presentation-btn i {
        font-size: 20px;
        margin-right: 10px;
    }
}
/* Стили для секции видео */
.video-section {
    padding: 40px 20px;
    background: linear-gradient(135deg, #1a2a6c 0%, #b21f1f 50%, #fdbb2d 100%);
    color: white;
    text-align: center;
  }
  
  .video-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .video-title {
    font-size: 2.2rem;
    margin-bottom: 25px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }
  
  .video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 соотношение сторон */
    margin: 0 auto 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  }
  
  .video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
  }
  
  .video-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
  }
  
  .control-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .control-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
  }
  
  .video-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 15px;
  }
  
  /* Адаптивность для мобильных устройств */
  @media (max-width: 600px) {
    .video-title {
      font-size: 1.8rem;
    }
    
    .video-controls {
      flex-direction: column;
      align-items: center;
    }
    
    .control-btn {
      width: 80%;
      justify-content: center;
    }
  }
  /* Стили для секции stats с фоновым изображением */
.stats {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 80px 0;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.0); /* Затемнение для лучшей читаемости текста */
    z-index: 1;
}

.stats-container {
    position: relative;
    z-index: 2;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .stats {
        min-height: 300px;
        padding: 60px 0;
    }
}
.stats .stat-number,
.stats .stat-text {
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}
/* Стили для секции benefits с фоновым изображением */
.benefits {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Эффект параллакса */
    color: white;
    padding: 80px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
}


.benefits .container {
    position: relative;
    z-index: 2;
}

/* Обновленные стили для кругов преимуществ */


.benefit-circle {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    color: #333;
}



/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .benefits {
        min-height: auto;
        background-attachment: scroll; /* Отключаем параллакс на мобильных */
        padding: 60px 0;
    }
    
    .benefit-circle {
        width: 250px;
        height: 250px;
    }
    
   
}

@media (max-width: 576px) {
    .benefit-circle {
        width: 220px;
        height: 220px;
        padding: 20px;
    }
    
    .benefit-circle p {
        font-size: 1rem;
    }
}
/* Преимущества в кругах - ОБНОВЛЕННЫЕ СТИЛИ */
.benefits {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(78, 84, 200, 0.2), rgba(143, 68, 173, 0.5));
    z-index: 0;
}


.benefits-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 70px;
    color: #fff;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
}

.benefits-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    perspective: 1000px;
}

.benefit-circle {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-align: center;
    margin: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 6px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(50px) scale(0.9);
}

/* Градиентные фоны для кругов */
.benefit-circle:nth-child(1) {
    background: linear-gradient(135deg, #4472c3, #8a2387);
}

.benefit-circle:nth-child(2) {
    background: linear-gradient(135deg, #4e54c8, #f27121);
}

.benefit-circle:nth-child(3) {
    background: linear-gradient(135deg, #2193b0, #6dd5ed);
}

/* Вращающиеся градиенты (псевдоэлементы) */
.benefit-circle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
    animation: rotateGradient 15s linear infinite;
    z-index: 1;
}

/* Контейнер для текста (останавливает вращение текста) */
.benefit-content {
    position: relative;
    z-index: 2;
}

.benefit-circle h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.benefit-circle p {
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.5;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

/* Анимации */
@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Анимация появления при скролле */
.benefit-circle.animate {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
}

/* Эффекты при наведении */
.benefit-circle:hover {
    transform: scale(1.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 10;
    border-color: rgba(255, 255, 255, 0.8);
}

.benefit-circle:hover::before {
    animation-duration: 5s;
}

/* Адаптивность */
@media (max-width: 992px) {
    .benefits-container {
        justify-content: center;
    }
    
    .benefit-circle {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .benefits-title {
        font-size: 2.2rem;
    }
    
    .benefit-circle {
        width: 220px;
        height: 220px;
        padding: 20px;
    }
    
    .benefit-circle p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .benefits {
        padding: 60px 0;
    }
    
    .benefits-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .benefit-circle {
        width: 280px;
        height: 280px;
        margin: 20px 0;
    }
}
/* Стили для бегущей строки */
.marquee-container {
    overflow: hidden;
    width: 100%;
    background: linear-gradient(135deg, #4e54c8, #8f94fb);
    padding: 25px 0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 40px;
    position: relative;
}

.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, #4a69bd, transparent);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, #4a69bd, transparent);
}

.marquee {
    display: flex;
    animation: marqueeAnimation 20s linear infinite;
    white-space: nowrap;
}

.marquee-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    padding: 0 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

/* Стиль для круглой точки */
.marquee-text::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: white;
    border-radius: 50%;
    margin-left: 15px;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
}

@keyframes marqueeAnimation {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Адаптивность для бегущей строки */
@media (max-width: 768px) {
    .marquee-text {
        font-size: 2rem;
    }
    
    .marquee-container {
        padding: 20px 0;
    }
}

@media (max-width: 480px) {
    .marquee-text {
        font-size: 1.5rem;
    }
    
    .marquee-text::after {
        width: 10px;
        height: 10px;
        margin-left: 10px;
    }
    
    .marquee-container {
        padding: 15px 0;
    }
}