/* Сброс стилей и базовые настройки */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* ЗИМНЯЯ ЦВЕТОВАЯ ПАЛИТРА */
    --primary-color: #0c2b50; /* Темно-синий вместо красного */
    --secondary-color: #1e3a6a;
    --accent-color: #4dabf7; /* Светло-голубой акцент */
    --accent-warm: #ff6b6b; /* Теплый акцент для контраста */
    --text-color: #ffffff;
    --glass-bg: rgba(12, 43, 80, 0.15);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --snow-color: rgba(255, 255, 255, 0.9);
    --ice-color: rgba(173, 216, 230, 0.7);
}

/* Плавный скролл */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    font-family: 'Roboto', 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3b6d 100%);
    color: var(--text-color);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* ========== СНЕЖИНКИ ========== */
.snowflakes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    color: var(--snow-color);
    font-size: 1.5rem;
    opacity: 0.8;
    animation: fall linear infinite;
    user-select: none;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

/* Позиционирование снежинок */
.snowflake:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 10s; font-size: 1.2rem; }
.snowflake:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 12s; font-size: 1.5rem; }
.snowflake:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 8s; font-size: 1rem; }
.snowflake:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 15s; font-size: 1.8rem; }
.snowflake:nth-child(5) { left: 50%; animation-delay: 5s; animation-duration: 11s; font-size: 1.3rem; }
.snowflake:nth-child(6) { left: 60%; animation-delay: 3s; animation-duration: 9s; font-size: 1.4rem; }
.snowflake:nth-child(7) { left: 70%; animation-delay: 6s; animation-duration: 13s; font-size: 1.6rem; }
.snowflake:nth-child(8) { left: 80%; animation-delay: 0.5s; animation-duration: 7s; font-size: 1.1rem; }
.snowflake:nth-child(9) { left: 90%; animation-delay: 2.5s; animation-duration: 14s; font-size: 1.7rem; }
.snowflake:nth-child(10) { left: 15%; animation-delay: 7s; animation-duration: 10s; font-size: 1.2rem; }
.snowflake:nth-child(11) { left: 35%; animation-delay: 4.5s; animation-duration: 12s; font-size: 1.5rem; }
.snowflake:nth-child(12) { left: 65%; animation-delay: 1.5s; animation-duration: 8s; font-size: 1rem; }
.snowflake:nth-child(13) { left: 85%; animation-delay: 3.5s; animation-duration: 15s; font-size: 1.8rem; }
.snowflake:nth-child(14) { left: 25%; animation-delay: 6.5s; animation-duration: 11s; font-size: 1.3rem; }
.snowflake:nth-child(15) { left: 75%; animation-delay: 0.8s; animation-duration: 9s; font-size: 1.4rem; }

@keyframes fall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Основной контейнер */
.container {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Главный хедер */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    gap: 30px;
    position: relative;
    z-index: 100;
}

/* Обновленные стили для эффекта жидкого стекла iOS (зимние) */
.glass-nav {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12) 0%, 
        rgba(173, 216, 230, 0.08) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 15px 25px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Эффект светящегося края (зимний) */
.glass-nav::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(
        135deg, 
        rgba(255, 255, 255, 0.5) 0%, 
        rgba(173, 216, 230, 0.3) 50%, 
        rgba(255, 255, 255, 0.1) 100%
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Убираем белую анимацию с лент */
.glass-nav::before {
    display: none !important;
}

/* Лента с основными кнопками */
.nav-links {
    display: flex;
    gap: 20px;
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

.glass-nav:hover .nav-links {
    opacity: 1;
}

/* Обновленные стили для кнопок внутри стекла (зимние) */
.nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, 
        rgba(77, 171, 247, 0.25) 0%, 
        rgba(12, 43, 80, 0.15) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    opacity: 0.8 !important;
    filter: saturate(0.9) brightness(1.1) !important;
}

/* Эффект свечения для кнопок (зимний) */
.nav-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    padding: 1px;
    background: linear-gradient(
        135deg, 
        rgba(255, 255, 255, 0.4) 0%, 
        rgba(173, 216, 230, 0.2) 50%, 
        transparent 100%
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Убираем белую анимационную полоску при наведении на ссылки */
.nav-link::before,
.social-link::before {
    display: none !important;
}

/* Лента с иконками соцсетей */
.social-nav {
    padding: 15px 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

.glass-nav:hover .social-links {
    opacity: 1;
}

/* Обновленные стили для социальных кнопок (зимние) */
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, 
        rgba(77, 171, 247, 0.25) 0%, 
        rgba(12, 43, 80, 0.15) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-decoration: none;
    color: var(--text-color);
    font-size: 22px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    opacity: 0.8 !important;
    filter: saturate(0.9) brightness(1.1) !important;
}

/* Эффект свечения для социальных кнопок (зимний) */
.social-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(
        135deg, 
        rgba(255, 255, 255, 0.4) 0%, 
        rgba(173, 216, 230, 0.2) 50%, 
        transparent 100%
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* ========== СТАТИЧНЫЕ ПОЛЗУНКИ ========== */

/* Основной ползунок для навигационных кнопок */
.liquid-slider {
    position: fixed !important;
    width: 160px;
    height: 60px;
    border-radius: 30px;
    pointer-events: none !important;
    z-index: 9999;
    opacity: 0.35;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translate(-50%, -50%) !important;
    mix-blend-mode: normal;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Эффект жидкого стекла для основного ползунка */
.liquid-slider::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 
        inset 2px 2px 0px -2px rgba(255, 255, 255, 0.7), 
        inset 0 0 3px 1px rgba(255, 255, 255, 0.7);
    background-color: rgba(255, 255, 255, 0.08);
}

.liquid-slider::after {
    content: '';
    position: absolute;
    z-index: -1;
    inset: 0;
    border-radius: 30px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    filter: url(#container-glass);
    overflow: hidden;
    isolation: isolate;
}

/* Ползунок для иконок соцсетей */
.liquid-slider-social {
    position: fixed !important;
    width: 70px;
    height: 70px;
    border-radius: 18px;
    pointer-events: none !important;
    z-index: 9998;
    opacity: 0.35;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translate(-50%, -50%) !important;
    mix-blend-mode: normal;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Эффект жидкого стекла для социального ползунка */
.liquid-slider-social::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 
        inset 2px 2px 0px -2px rgba(255, 255, 255, 0.7), 
        inset 0 0 3px 1px rgba(255, 255, 255, 0.7);
    background-color: rgba(255, 255, 255, 0.08);
}

.liquid-slider-social::after {
    content: '';
    position: absolute;
    z-index: -1;
    inset: 0;
    border-radius: 18px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    filter: url(#btn-glass);
    overflow: hidden;
    isolation: isolate;
}

/* Эффект при наведении для обоих ползунков */
.liquid-slider.hovering,
.liquid-slider-social.hovering {
    opacity: 0.45;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.liquid-slider.hovering::before,
.liquid-slider-social.hovering::before {
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 
        inset 2px 2px 0px -2px rgba(255, 255, 255, 0.9), 
        inset 0 0 5px 2px rgba(255, 255, 255, 0.9);
}

/* Улучшенные стили для кнопок при наведении ползунка */
.nav-link,
.social-link {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Делаем кнопки ЯРКИМИ когда на них ползунок */
.nav-link.active-hover,
.social-link.active-hover {
    opacity: 1 !important;
    filter: saturate(1.2) brightness(1.25) !important;
    transform: translateY(-2px) scale(1.03) !important;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 1px 1px 0px -1px rgba(255, 255, 255, 0.6),
        inset 0 0 3px 1px rgba(255, 255, 255, 0.5) !important;
    background-color: rgba(255, 255, 255, 0.15) !important;
}

/* Кнопка ДОНАТ по умолчанию уже выделенная */
.nav-link.active-default {
    opacity: 1 !important;
    filter: saturate(1.1) brightness(1.2) !important;
    box-shadow: 
        0 3px 12px rgba(0, 0, 0, 0.2),
        inset 1px 1px 0px -1px rgba(255, 255, 255, 0.5),
        inset 0 0 2px 1px rgba(255, 255, 255, 0.4) !important;
    background-color: rgba(255, 255, 255, 0.12) !important;
}

/* Кнопка Discord по умолчанию уже выделенная */
.social-link.active-default {
    opacity: 1 !important;
    filter: saturate(1.1) brightness(1.2) !important;
    box-shadow: 
        0 3px 12px rgba(0, 0, 0, 0.2),
        inset 1px 1px 0px -1px rgba(255, 255, 255, 0.5),
        inset 0 0 2px 1px rgba(255, 255, 255, 0.4) !important;
    background-color: rgba(255, 255, 255, 0.12) !important;
}

/* Сильное выделение кнопок навигации при наведении */
.nav-link:hover {
    opacity: 1;
    transform: translateY(-2px) !important;
    font-weight: 600 !important;
    box-shadow: 
        0 4px 18px rgba(0, 0, 0, 0.3),
        inset 1px 1px 0px -1px rgba(255, 255, 255, 0.5),
        inset 0 0 3px 1px rgba(255, 255, 255, 0.4) !important;
    background: rgba(255, 107, 107, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
    filter: saturate(1.2) brightness(1.15) !important;
}

/* Сильное выделение иконок соцсетей при наведении */
.social-link:hover {
    opacity: 1;
    transform: translateY(-2px) !important;
    box-shadow: 
        0 4px 18px rgba(0, 0, 0, 0.3),
        inset 1px 1px 0px -1px rgba(255, 255, 255, 0.5),
        inset 0 0 3px 1px rgba(255, 255, 255, 0.4) !important;
    background: rgba(255, 107, 107, 0.35) !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
    filter: saturate(1.2) brightness(1.15) !important;
}

/* Увеличиваем иконки при наведении */
.nav-link:hover i {
    transform: scale(1.12) !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) brightness(1.15) !important;
}

.social-link:hover i {
    transform: scale(1.25) !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) brightness(1.15) !important;
}

/* Основной контент */
.main-content {
    margin-top: 80px;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: calc(100vh - 200px);
    width: 100%;
    max-width: 1200px;
    margin-left: 0;
    position: relative;
    z-index: 2;
}

/* Секция с заголовком */
.hero-section {
    text-align: left;
    max-width: 900px;
    margin-bottom: 100px;
    padding: 0;
    width: 100%;
}

.title-container {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(173, 216, 230, 0.07) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 60px 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
    width: 100%;
}

/* Главный заголовок */
.main-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 5.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-align: left;
}

.dark-part {
    color: #4dabf7 !important; /* Ледяной синий */
    text-shadow: 0 5px 15px rgba(77, 171, 247, 0.5) !important;
}

.russia-part {
    color: #ffffff;
    text-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Подзаголовок */
.subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    text-align: left;
}

/* Секция "Начать играть" */
.play-section {
    text-align: left;
    max-width: 900px;
    width: 100%;
    padding: 60px 40px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12) 0%, 
        rgba(173, 216, 230, 0.08) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    margin-top: 40px;
}

.play-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    margin-bottom: 50px;
    color: #ffffff;
    text-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
    letter-spacing: 1.5px;
    text-align: left;
}

/* Шаги - вертикальное расположение (каждый пункт с новой строки) */
.steps-container {
    display: flex;
    flex-direction: column; /* Вертикальное расположение */
    justify-content: flex-start;
    gap: 20px; /* Уменьшаем промежуток между вертикальными блоками */
    margin-bottom: 50px;
    width: 100%;
}

.step {
    width: 100%;
    max-width: 500px;
    background: linear-gradient(135deg, 
        rgba(77, 171, 247, 0.2) 0%, 
        rgba(12, 43, 80, 0.15) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, 
        rgba(255, 107, 107, 0.25) 0%, 
        rgba(77, 171, 247, 0.2) 100%);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.step-number {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #4dabf7;
    margin-bottom: 15px;
    text-shadow: 0 3px 10px rgba(77, 171, 247, 0.4);
}

.step-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* Кнопка скачивания */
.download-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    color: #0c2b50;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.4),
        0 5px 15px rgba(77, 171, 247, 0.3);
    position: relative;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.5),
        transparent
    );
    transition: 0.7s;
}

.download-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.5),
        0 8px 25px rgba(77, 171, 247, 0.4);
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f7ff 100%);
}

.download-btn:hover::before {
    left: 100%;
}

.download-btn:active {
    transform: translateY(-1px) scale(1.02);
}

/* Анимация появления текста */
.fade-in-delayed {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-section .subtitle {
    animation-delay: 0.3s;
}

.play-section .play-title {
    animation-delay: 0.5s;
}

.play-section .step:nth-child(1) {
    animation-delay: 0.7s;
}

.play-section .step:nth-child(2) {
    animation-delay: 0.9s;
}

.play-section .step:nth-child(3) {
    animation-delay: 1.1s;
}

.play-section .download-btn {
    animation-delay: 1.3s;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== МОБИЛЬНАЯ ВЕРСИЯ ========== */

@media (max-width: 1200px) {
    .container {
        max-width: 95%;
        padding: 15px;
    }
    
    .main-title {
        font-size: 4.5rem;
    }
    
    .play-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .main-header {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .glass-nav {
        width: 100%;
        justify-content: center;
    }
    
    .nav-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .social-nav {
        order: 2;
    }
    
    .main-title {
        font-size: 3.8rem;
    }
    
    .play-title {
        font-size: 2.8rem;
    }
    
    .steps-container {
        justify-content: center;
    }
    
    .step {
        min-width: 180px;
    }
}

@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 20px 0;
    }
    
    .glass-nav {
        width: 100%;
        padding: 12px 20px;
    }
    
    .nav-links {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .nav-link {
        padding: 10px 18px;
        font-size: 15px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .main-content {
        margin-top: 40px;
        align-items: center;
        text-align: center;
    }
    
    .hero-section {
        text-align: center;
        margin-bottom: 60px;
    }
    
    .title-container {
        padding: 40px 25px;
    }
    
    .main-title {
        font-size: 3rem;
        text-align: center;
    }
    
    .subtitle {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .play-section {
        padding: 40px 25px;
        text-align: center;
    }
    
    .play-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .steps-container {
        align-items: center;
        gap: 20px;
    }
    
    .step {
        width: 100%;
        max-width: 300px;
        min-width: unset;
    }
    
    .step-number {
        font-size: 2rem;
    }
    
    .step-text {
        font-size: 1rem;
    }
    
    .download-btn {
        padding: 16px 35px;
        font-size: 1.1rem;
    }
    
    /* Скрываем ползунки на мобильных */
    .liquid-slider,
    .liquid-slider-social {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 10px;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .play-title {
        font-size: 2rem;
    }
    
    .nav-link {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .title-container {
        padding: 30px 20px;
    }
    
    .play-section {
        padding: 30px 20px;
    }
    
    .step {
        padding: 20px 15px;
    }
    
    .step-number {
        font-size: 1.8rem;
    }
    
    .download-btn {
        padding: 14px 30px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 400px) {
    .main-title {
        font-size: 2.2rem;
    }
    
    .play-title {
        font-size: 1.8rem;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-link {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}