/* CSS для Россия Онлайн - Современный красно-белый дизайн */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* Оптимизированные CSS переменные */
:root {
    --primary-color: #DC143C;
    --secondary-color: #FF4757;
    --accent-color: #00D2D3;
    --bg-dark: #0F0F0F;
    --bg-section: #1A1A1A;
    --card-bg: #1F1F1F;
    --text-light: #FFFFFF;
    --text-gray: #B0B0B0;
    --border-color: #333333;
    --glow-red: rgba(220, 20, 60, 0.3);
    --glow-green: rgba(0, 210, 211, 0.4);
    --glow-green2: rgba(0, 210, 211, 0.2);
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.2);
    --shadow-heavy: 0 15px 40px rgba(0, 0, 0, 0.3);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Оптимизированный header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition-normal);
    will-change: background-color;
}

.header.scrolled {
    background: rgba(15, 15, 15, 0.98);
    box-shadow: var(--shadow-medium);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-color);
    text-decoration: none;
    text-shadow: 0 0 20px var(--glow-red);
}

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

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: var(--transition-normal);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-normal);
}

.nav-links a:hover {
    color: var(--primary-color);
}

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Оптимизированный hero section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.9) 0%, rgba(40, 15, 15, 0.8) 50%, rgba(15, 15, 15, 0.9) 100%), url('../background-rossiya-online.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, var(--glow-red) 0%, transparent 70%);
    opacity: 0.15;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 20px;
    margin-top: 50px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 50px var(--glow-red);
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.hero-tagline {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: var(--text-gray);
    margin-bottom: 30px;
    font-weight: 600;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 40px auto;
    color: var(--text-gray);
}

.online-status {
    margin-top: 25px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.online-status i {
    font-size: 1.1rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--glow-green);
}

.status-text {
    color: var(--text-gray);
    font-weight: 500;
}

.status-number {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--accent-color);
    text-shadow: 0 0 8px var(--glow-green2);
}

.status-label {
    color: var(--text-gray);
    font-weight: 500;
}

/* Оптимизированные кнопки */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-normal);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    box-shadow: 0 10px 30px var(--glow-red);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px var(--glow-red);
}

.btn-pulsate {
    animation: btn-pulse 2s infinite;
}

@keyframes btn-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Оптимизированные секции */
section {
    padding: 80px 0;
    position: relative;
}

section:nth-child(even) {
    background: var(--bg-section);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 800;
    color: var(--text-light);
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.server-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.server-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.server-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--glow-red) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.server-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--glow-red);
}

.server-card:hover::before {
    opacity: 0.1;
}

.server-card h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.server-card p {
    color: var(--text-gray);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(45deg, #DC143C, #FF4757);
    border-radius: 10px;
    position: relative;
    transition: width 1s ease;
}

.progress-bar span::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progress-glow 2s ease-in-out infinite;
}

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

.servers-summary {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.summary-content-subtle {
    background: var(--card-bg);
    padding: 20px 30px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    max-width: 350px;
    text-align: center;
    opacity: 0.8;
}

.summary-content-subtle:hover {
    border-color: rgba(220, 20, 60, 0.3);
    transform: translateY(-2px);
}

.subtle-text {
    color: var(--text-gray);
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

.download {
    background: var(--bg-section);
    position: relative;
}

.download-panel {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 30px;
    padding: 60px 40px;
    position: relative;
    border: 2px solid var(--border-color);
    overflow: hidden;
}

.download-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    left: -50px;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    right: -30px;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.download-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.download-icon {
    margin: 0 auto 30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--card-bg), var(--bg-dark));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 15px 40px var(--glow-red);
    transition: all 0.4s ease;
}

.download-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 50px var(--glow-red);
}

.download-icon i {
    font-size: 50px;
    color: var(--primary-color);
    text-shadow: 0 0 20px var(--glow-red);
}

.download-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    padding: 22px 50px;
    font-size: 1.4rem;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 280px;
}

.btn-large::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.6s ease;
}

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

.btn-large i {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.btn-text {
    font-weight: 700;
    letter-spacing: 1px;
}

.features p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: var(--text-gray);
}

.news-list {
    display: grid;
    gap: 30px;
    margin-top: 50px;
}

.news-item {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.news-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--glow-red) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--glow-red);
}

.news-item:hover::before {
    opacity: 0.1;
}

.news-item-header {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.news-item-header h3 {
    color: var(--text-light);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.news-item p {
    color: var(--text-gray);
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.community {
    background: var(--bg-section);
    text-align: center;
}

.community p {
    max-width: 600px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
    color: var(--text-gray);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--glow-red);
}

.social-icon:hover::before {
    opacity: 0.1;
}

.social-icon i {
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

.community-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 30px;
    margin-right: 15px;
}

.community-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.community-btn:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--glow-red);
}

.community-btn:hover::before {
    opacity: 0.1;
}

.community-btn i {
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

.community-btn span {
    position: relative;
    z-index: 2;
}

footer {
    background: var(--bg-dark);
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
}

footer p {
    color: var(--text-gray);
    font-weight: 500;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: linear-gradient(135deg, var(--card-bg), rgba(26, 26, 26, 0.95));
    margin: 5% auto;
    padding: 40px;
    border: 2px solid var(--border-color);
    width: 95%;
    max-width: 550px;
    border-radius: 25px;
    text-align: center;
    position: relative;
    animation: modal-slide 0.3s ease-out;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

@keyframes modal-slide {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-btn {
    color: var(--text-gray);
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: var(--primary-color);
}

.modal-buttons {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-social {
    padding: 18px 30px;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-social::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.6s ease;
}

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

.btn-social:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.btn-social.vk {
    background: linear-gradient(45deg, #2b73c6, #3c86f7);
}

.btn-social.vk:hover {
    background: linear-gradient(45deg, #247ee6, #2076f7);
    box-shadow: 0 12px 35px rgba(74, 118, 168, 0.4);
}

.btn-social.telegram {
    background: linear-gradient(45deg, #0088cc, #00a8ec);
}

.btn-social.telegram:hover {
    background: linear-gradient(45deg, #0088cc, #00a0e6);
    box-shadow: 0 12px 35px rgba(0, 136, 204, 0.4);
}

.conversion-btn {
    display: flex !important;
    align-items: center;
    gap: 15px;
    padding: 25px 25px !important;
    margin: 10px 0 !important;
    border-radius: 10px !important;
    transition: all 0.3s ease;
}

.conversion-btn i {
    font-size: 2rem;
}

.btn-content {
    text-align: left;
    line-height: 1.3;
}

.btn-content strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
}

.modal-header {
    margin-bottom: 30px;
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px var(--glow-green);
    animation: modal-icon-pulse 2s ease-in-out infinite;
}

@keyframes modal-icon-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.modal-icon i {
    font-size: 2.5rem;
    color: var(--text-light);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.modal-content h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-light);
    margin-bottom: 10px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: 600;
    margin: 0;
}

.modal-benefits {
    display: flex;
    justify-content: space-around;
    margin: 25px 0;
    flex-wrap: wrap;
    gap: 15px;
}

.modal-benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 120px;
}

.modal-benefit i {
    font-size: 1.5rem;
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--glow-green2);
}

.modal-benefit span {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 600;
    text-align: center;
}

.modal-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin: 25px 0;
    line-height: 1.6;
    background: rgba(8, 255, 0, 0.3);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.modal-buttons .btn-social {
    margin: 10px 5px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 15px;
    min-width: 200px;
    transition: all 0.3s ease;
}

.btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.btn-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
}

.btn-subtitle {
    font-size: 0.85rem;
    opacity: 0.8;
    font-weight: 500;
}

.modal-urgency {
    margin-top: 25px;
    padding: 15px;
    background: linear-gradient(45deg, #0088cc, #00a8ec);
    border-radius: 10px;
    border: 1px solid var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    animation: urgency-glow 2s ease-in-out infinite;
}

@keyframes urgency-glow {
    0%, 100% { box-shadow: 0 0 5px var(--glow-green2); }
    50% { box-shadow: 0 0 20px var(--glow-green2); }
}

.modal-urgency i {
    font-size: 1.2rem;
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--glow-green2);
}

.modal-urgency span {
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 700;
    text-shadow: 0 0 5px var(--glow-green2);
}

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        background-size: 100%;
        background-position: center top;
        background-repeat: no-repeat;
    }
    
    .hero-content h1 {
        font-size: 2.4rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .nav-links {
        position: fixed;
        top: 50px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 80px);
        background: var(--bg-dark);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        transition: right 0.3s ease;
        z-index: 999;
        border-left: 2px solid var(--border-color);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        font-size: 1.2rem;
        color: var(--text-light);
        text-decoration: none;
        border-radius: 10px;
        transition: all 0.3s ease;
        margin: 0 20px;
    }
    
    .nav-links a:hover {
        background: var(--primary-color);
        color: var(--text-light);
    }
    
    .menu-toggle {
        display: block;
        z-index: 1000;
    }
    
    .menu-toggle.active {
        color: #50FF00;
    }
    
    .server-list {
        grid-template-columns: 1fr;
    }

    .download-panel {
        padding: 40px 20px;
        margin: 0 20px;
    }
    
    .download-icon {
        width: 100px;
        height: 100px;
    }
    
    .download-icon i {
        font-size: 40px;
    }
    
    .btn-large {
        padding: 18px 30px;
        font-size: 1.2rem;
        min-width: 250px;
    }
    
    .btn-large i {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-icon {
        width: 250px;
        justify-content: center;
    }
    
    .online-status {
        gap: 6px;
        font-size: 0.95rem;
        margin-top: 20px;
    }
    
    .status-number {
        font-size: 1rem;
    }
    
    .online-status i {
        font-size: 1rem;
    }
    
    .summary-content-subtle {
        padding: 15px 20px;
        max-width: 300px;
    }
    
    .subtle-text {
        font-size: 0.95rem;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
    
    .modal-benefits {
        flex-direction: column;
        gap: 20px;
    }
    
    .modal-benefit {
        flex-direction: row;
        min-width: auto;
        justify-content: center;
    }
    
    .modal-buttons .btn-social {
        min-width: 180px;
        padding: 18px 20px;
    }
    
    .btn-title {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        background-size: 100%;
        background-position: center 30%;
    }
    
    .btn-large {
        font-size: 1.1rem;
        min-width: 220px;
        padding: 16px 25px;
    }
    
    .download-icon {
        width: 90px;
        height: 90px;
    }
    
    .download-icon i {
        font-size: 36px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        padding: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .footer-info {
        text-align: center;
        max-width: 100%;
    }
    
    .footer-info h4 {
        text-align: center;
    }
    
    .footer-info p {
        text-align: center;
        max-width: 100%;
    }
    
    .footer-links {
        margin-top: 30px;
        gap: 20px;
        justify-content: center;
        width: 100%;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .modal-content h3 {
        font-size: 1.5rem;
    }
    
    .modal-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .modal-buttons .btn-social {
        width: 100%;
        min-width: auto;
    }
    
    .modal-icon {
        width: 70px;
        height: 70px;
    }
    
    .modal-icon i {
        font-size: 2rem;
    }
} 

.about-game {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 80px 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content h3 {
    color: #FF4757;
    margin: 40px 0 20px 0;
    font-size: 1.5em;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-list li {
    padding: 10px 0;
    border-bottom: 1px solid #333;
    position: relative;
    padding-left: 20px;
}

.feature-list li:before {
    content: "✓";
    color: #FF4757;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.download-cta {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.download-cta .cta-text {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #fff;
}

.features-content {
    max-width: 1000px;
    margin: 0 auto;
}

.features-intro {
    font-size: 1.1em;
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.6;
}

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

.feature-item {
    background: rgba(154, 255, 53, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(116, 255, 53, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.5);
}

.feature-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.feature-item h3 {
    color: #74ff35;
    margin-bottom: 15px;
}

.features-conclusion {
    margin-top: 40px;
    font-size: 1.1em;
    line-height: 1.6;
    text-align: center;
    background: rgba(78, 255, 53, 0.1);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #6bff35;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.footer-info h4 {
    color: #61ff35;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.footer-info p {
    color: #ccc;
    max-width: 300px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 50px;
}

.footer-section h5 {
    color: #6bff35;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #09ff18;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #999;
}

.how-to-start {
    background: linear-gradient(135deg, var(--bg-section) 0%, var(--bg-dark) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.how-to-start::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, var(--glow-green) 0%, transparent 50%);
    opacity: 0.05;
    z-index: 1;
}

.how-to-start-content {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(45deg, #68FF00, #4F0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-shadow: 0 0 30px var(--glow-green);
}

.section-description {
    font-size: 1.3rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.launcher-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--card-bg), rgba(26, 26, 26, 0.8));
    padding: 50px;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.launcher-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--glow-green) 0%, transparent 50%, var(--glow-green2) 100%);
    opacity: 0.03;
    z-index: 1;
}

.launcher-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #DC143C, #FF4757);
    border-radius: 50%;
    box-shadow: 0 20px 40px var(--glow-red);
    animation: launcher-float 3s ease-in-out infinite;
}

@keyframes launcher-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.launcher-icon i {
    font-size: 4rem;
    color: var(--text-light);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.icon-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #DC143C, #FF4757);
    border-radius: 50%;
    opacity: 0.3;
    animation: icon-pulse 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes icon-pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
}

.launcher-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.launcher-content h3 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.1;
}

.highlight {
    background: linear-gradient(45deg, #DC143C, #FF4757);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px var(--glow-red);
}

.launcher-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-mega {
    padding: 25px 50px;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 60px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 15px 50px var(--glow-red);
    transition: all 0.3s ease;
}

.btn-mega:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 70px var(--glow-red);
}

.btn-mega::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 ease;
}

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

.btn-arrow {
    margin-left: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.btn-mega:hover .btn-arrow {
    transform: translateX(5px);
}

.download-benefits {
    display: flex;
    gap: 25px;
    margin-top: 25px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-weight: 600;
}

.benefit i {
    color: var(--accent-color);
    font-size: 1.1rem;
    text-shadow: 0 0 10px var(--glow-green2);
}

@media (max-width: 768px) {
    .how-to-start {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .section-description {
        font-size: 1.1rem;
    }
    
    .launcher-block {
        flex-direction: column;
        gap: 40px;
        padding: 40px 30px;
        margin: 0 20px;
    }
    
    .launcher-icon {
        width: 120px;
        height: 120px;
    }
    
    .launcher-icon i {
        font-size: 3rem;
    }
    
    .launcher-content h3 {
        font-size: 2rem;
        text-align: center;
    }
    
    .launcher-content p {
        text-align: center;
    }
    
    .btn-mega {
        padding: 20px 40px;
        font-size: 1.1rem;
        width: 100%;
        justify-content: center;
    }
    
    .download-benefits {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .launcher-content h3 {
        font-size: 1.6rem;
    }
    
    .launcher-block {
        padding: 30px 20px;
    }
    
    .download-benefits {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}.
feature-item {
    background: rgba(220, 20, 60, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(220, 20, 60, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 71, 87, 0.5);
}

.feature-item h3 {
    color: #FF4757;
    margin-bottom: 15px;
}

.features-conclusion {
    margin-top: 40px;
    font-size: 1.1em;
    line-height: 1.6;
    text-align: center;
    background: rgba(220, 20, 60, 0.1);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #DC143C;
}

.footer-info h4 {
    color: #FF4757;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.footer-section h5 {
    color: #DC143C;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.footer-section a:hover {
    color: #FF4757;
}

.how-to-start::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, var(--glow-red) 0%, transparent 50%);
    opacity: 0.05;
    z-index: 1;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(45deg, #DC143C, #FF4757);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-shadow: 0 0 30px var(--glow-red);
}

.launcher-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--glow-red) 0%, transparent 50%, var(--glow-red2) 100%);
    opacity: 0.03;
    z-index: 1;
}

.benefit i {
    color: #FF4757;
    text-shadow: 0 0 10px var(--glow-red);
}

.online-status i {
    font-size: 1.1rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--glow-red);
}

.status-number {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--accent-color);
    text-shadow: 0 0 8px var(--glow-red2);
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px var(--glow-red);
    animation: modal-icon-pulse 2s ease-in-out infinite;
}

.modal-content h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-light);
    margin-bottom: 10px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-benefit i {
    font-size: 1.5rem;
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--glow-red2);
}

.modal-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin: 25px 0;
    line-height: 1.6;
    background: rgba(220, 20, 60, 0.1);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.modal-urgency {
    margin-top: 25px;
    padding: 15px;
    background: linear-gradient(45deg, #DC143C, #FF4757);
    border-radius: 10px;
    border: 1px solid var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    animation: urgency-glow 2s ease-in-out infinite;
}

@keyframes urgency-glow {
    0%, 100% { box-shadow: 0 0 5px var(--glow-red2); }
    50% { box-shadow: 0 0 20px var(--glow-red2); }
}

.modal-urgency i {
    font-size: 1.2rem;
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--glow-red2);
}

.modal-urgency span {
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 700;
    text-shadow: 0 0 5px var(--glow-red2);
}

.nav-links a:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

.menu-toggle.active {
    color: #DC143C;
}