        :root {
            --primary-red: #b91c2c;
            --secondary-red: #7f1d1d;
            --gold: #c9a876;
            --dark-gold: #a3845a;
            --bg-dark: #0a0a0a;
            --bg-secondary: #151515;
            --text-primary: #f4f4f4;
            --text-secondary: #b5b5b5;
            --text-muted: #737373;
            --border: #2a2a2a;
            --accent: #dc2626;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Source Sans Pro', sans-serif;
            background: var(--bg-dark);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 10, 0.92);
            backdrop-filter: blur(8px);
            border-bottom: 1px solid var(--border);
            z-index: 1000;
            padding: 1.2rem 0;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 3rem;
        }

        .logo {
            height: 55px;
            width: auto;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 3rem;
        }

        .nav-item a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 400;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: color 0.2s ease;
            position: relative;
        }

        .nav-item a:hover {
            color: var(--text-primary);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            background: linear-gradient(135deg, var(--bg-dark) 0%, #0f0f0f 50%, var(--bg-dark) 100%);
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 3rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-content {
            max-width: 580px;
        }

        .hero-badge {
            display: inline-block;
            background: linear-gradient(45deg, var(--primary-red), var(--accent));
            color: white;
            padding: 0.4rem 1.2rem;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 2rem;
            clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
        }

        .hero-title {
            font-family: 'Oswald', sans-serif;
            font-size: 4.2rem;
            font-weight: 600;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: var(--gold);
            font-weight: 300;
            margin-bottom: 2rem;
            letter-spacing: 0.5px;
        }

        .hero-description {
            font-size: 1.1rem;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 3rem;
            max-width: 520px;
        }

        .hero-visual {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .hero-logo-large {
            width: 300px;
            height: 300px;
            background: var(--bg-secondary);
            border: 2px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .hero-logo-large::before {
            content: '';
            position: absolute;
            top: -1px;
            left: -1px;
            right: -1px;
            bottom: -1px;
            background: linear-gradient(45deg, var(--primary-red), var(--gold), var(--primary-red));
            z-index: -1;
            opacity: 0.3;
        }

        .cta-group {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }

        .btn {
            padding: 0.9rem 2rem;
            border: none;
            font-family: 'Oswald', sans-serif;
            font-size: 0.95rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary {
            background: var(--primary-red);
            color: white;
        }

        .btn-primary:hover {
            background: var(--accent);
            transform: translateY(-1px);
        }

        .btn-outline {
            background: transparent;
            color: var(--gold);
            border: 1px solid var(--gold);
        }

        .btn-outline:hover {
            background: var(--gold);
            color: var(--bg-dark);
        }

        /* Main Content Layout */
        .main-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 3rem;
        }

        /* About Section */
        .about-section {
            padding: 8rem 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        .about-text {
            max-width: 500px;
        }

        .section-title {
            font-family: 'Oswald', sans-serif;
            font-size: 2.8rem;
            font-weight: 500;
            margin-bottom: 2rem;
            color: var(--text-primary);
        }

        .about-description {
            font-size: 1.1rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 3rem;
        }

        .features-preview {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .feature-preview {
            padding: 1.5rem;
            background: var(--bg-secondary);
            border-left: 3px solid var(--primary-red);
        }

        .feature-preview h4 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
        }

        .feature-preview p {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* Gallery Section */
        .gallery-section {
            padding: 8rem 0;
            background: var(--bg-secondary);
        }

        .gallery-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 3rem;
        }

        .gallery-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .gallery-slider {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
        }

        .gallery-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .gallery-slide {
            min-width: 100%;
            position: relative;
        }

        .gallery-image {
            width: 100%;
            height: 600px;
            background: var(--bg-dark);
            border: 1px solid var(--border);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--text-muted);
        }

        .gallery-image:hover {
            border-color: var(--primary-red);
        }

        .gallery-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            margin-top: 2rem;
        }

        .gallery-btn {
            background: var(--bg-dark);
            border: 1px solid var(--border);
            color: var(--text-secondary);
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .gallery-btn:hover {
            background: var(--primary-red);
            color: white;
            border-color: var(--primary-red);
        }

        .gallery-dots {
            display: flex;
            gap: 0.5rem;
        }

        .gallery-dot {
            width: 12px;
            height: 12px;
            background: var(--border);
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .gallery-dot.active {
            background: var(--primary-red);
        }

        /* Features Section */
        .features-section {
            padding: 8rem 0;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
        }

        .feature-card {
            background: var(--bg-secondary);
            padding: 3rem 2rem;
            border: 1px solid var(--border);
            text-align: center;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            border-color: var(--primary-red);
            transform: translateY(-5px);
        }

        .feature-icon {
            font-size: 2.5rem;
            color: var(--gold);
            margin-bottom: 1.5rem;
        }

        .feature-title {
            font-family: 'Oswald', sans-serif;
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .feature-description {
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* Connect Section */
        .connect-section {
            padding: 8rem 0;
            background: var(--bg-secondary);
        }

        .connect-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            padding: 0 3rem;
        }

        .connect-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            margin-top: 4rem;
        }

        .connect-step {
            padding: 2rem;
            background: var(--bg-dark);
            border: 1px solid var(--border);
        }

        .step-number {
            font-family: 'Oswald', sans-serif;
            font-size: 2rem;
            color: var(--primary-red);
            margin-bottom: 1rem;
        }

        .step-title {
            font-family: 'Oswald', sans-serif;
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .server-info {
            background: var(--bg-dark);
            border: 1px solid var(--border);
            padding: 2rem;
            margin: 3rem 0;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .server-detail {
            text-align: left;
        }

        .server-detail strong {
            color: var(--gold);
            display: block;
            margin-bottom: 0.5rem;
        }

        /* Community Section */
        .community-section {
            padding: 8rem 0;
        }

        .community-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
        }

        .community-card {
            background: var(--bg-secondary);
            padding: 3rem;
            border: 1px solid var(--border);
            text-align: center;
            transition: all 0.3s ease;
        }

        .community-card:hover {
            border-color: var(--primary-red);
            transform: translateY(-3px);
        }

        .community-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .discord { color: #5865F2; }
        .telegram { color: #0088cc; }
        .youtube { color: #ff0000; }
        .vk { color: #0077ff; }

        /* Stats Section */
        .stats-section {
            padding: 6rem 0;
            background: var(--bg-secondary);
            margin: 4rem 0;
        }

        .stats-container {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .stats-title {
            font-family: 'Oswald', sans-serif;
            font-size: 2.2rem;
            margin-bottom: 4rem;
            color: var(--text-primary);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-family: 'Oswald', sans-serif;
            font-size: 3.5rem;
            font-weight: 600;
            color: var(--gold);
            display: block;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: var(--text-secondary);
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* News Section */
        .news-section {
            padding: 8rem 0;
        }

        .news-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 4rem;
        }

        .news-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 3rem;
        }

        .featured-news {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            overflow: hidden;
        }

        .news-content {
            padding: 3rem;
        }

        .news-date {
            color: var(--gold);
            font-size: 0.85rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .news-title {
            font-family: 'Oswald', sans-serif;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
        }

        .news-excerpt {
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 2rem;
        }

        .sidebar-news {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .sidebar-item {
            padding: 2rem;
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .sidebar-item:hover {
            border-color: var(--primary-red);
        }

        .sidebar-item .news-title {
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        .sidebar-item .news-excerpt {
            font-size: 0.95rem;
            margin-bottom: 0;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
        }

        .modal-content {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            max-width: 800px;
            width: 90%;
            max-height: 90%;
            overflow-y: auto;
            position: relative;
            transform: scale(0.8);
            transition: transform 0.3s ease;
        }

        .modal.active .modal-content {
            transform: scale(1);
        }

        .modal-header {
            padding: 2rem 3rem;
            border-bottom: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-title {
            font-family: 'Oswald', sans-serif;
            font-size: 1.8rem;
            color: var(--text-primary);
        }

        .modal-close {
            background: none;
            border: none;
            color: var(--text-secondary);
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.2s ease;
        }

        .modal-close:hover {
            color: var(--text-primary);
        }

        .modal-body {
            padding: 3rem;
        }

        .modal-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            margin-bottom: 2rem;
        }

        /* Footer */
        .footer {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border);
            padding: 4rem 0 2rem;
            margin-top: 6rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 3rem;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
        }

        .footer-section h4 {
            font-family: 'Oswald', sans-serif;
            color: var(--gold);
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .footer-section p,
        .footer-section a {
            color: var(--text-muted);
            text-decoration: none;
            line-height: 1.8;
            font-size: 0.95rem;
        }
        .footer-bottom a{
                        color: var(--text-muted);
            text-decoration: none;
            line-height: 1.8;
            font-size: 0.95rem;
        }

        .footer-section a:hover {
            color: var(--text-secondary);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            margin-top: 3rem;
            border-top: 1px solid var(--border);
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* Server Status */
        .server-status {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            padding: 1.5rem;
            min-width: 220px;
            z-index: 1000;
        }

        .server-status h5 {
            font-family: 'Oswald', sans-serif;
            color: var(--text-primary);
            margin-bottom: 1rem;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .status-info {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
        }

        .status-online {
            color: #22c55e;
        }

        /* Mobile Responsive */
        @media (max-width: 1024px) {
            .nav-container {
                padding: 0 2rem;
            }

            .main-content, .gallery-container, .connect-container {
                padding: 0 2rem;
            }

            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
                padding: 0 2rem;
            }

            .hero-title {
                font-size: 3.2rem;
            }

            .about-section {
                grid-template-columns: 1fr;
                gap: 4rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .news-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 3rem;
                padding: 0 2rem;
            }

            .connect-steps {
                grid-template-columns: 1fr;
            }

            .community-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .hero-title {
                font-size: 2.8rem;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .features-preview {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .server-status {
                position: relative;
                bottom: auto;
                right: auto;
                margin: 2rem auto;
                width: fit-content;
            }

            .server-info {
                grid-template-columns: 1fr;
            }
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Scrollbar */
        ::-webkit-scrollbar {
            width: 6px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg-dark);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary-red);
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--accent);
        }
        /* ===========================================
   LIGHTBOX ДЛЯ ИЗОБРАЖЕНИЙ
   =========================================== */

.image-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    cursor: zoom-out;
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.8);
    animation: lightboxZoomIn 0.3s ease;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}

@keyframes lightboxZoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.5rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 100000;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(185, 28, 44, 0.9);
    border-color: rgba(201, 168, 118, 0.8);
    transform: scale(1.1);
}

.lightbox-close {
    top: 2rem;
    right: 2rem;
}

.lightbox-prev {
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-next {
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-caption {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    max-width: 80%;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 168, 118, 0.3);
    font-size: 1rem;
    line-height: 1.5;
}

.lightbox-counter {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: rgba(0, 0, 0, 0.9);
    color: var(--gold);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 168, 118, 0.3);
}

/* Скрыть элементы навигации для одного изображения */
.image-lightbox.single-image .lightbox-prev,
.image-lightbox.single-image .lightbox-next,
.image-lightbox.single-image .lightbox-counter {
    display: none;
}

/* Стилі для галереї в модальному вікні новин */
.news-gallery {
    margin: 2rem 0;
}



.news-gallery-item img {
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .lightbox-content {
        padding: 2rem 1rem;
    }
    
    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .lightbox-prev {
        left: 1rem;
    }
    
    .lightbox-next {
        right: 1rem;
    }
    
    .lightbox-caption {
        bottom: 1rem;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        max-width: 90%;
    }
    
    .lightbox-counter {
        top: 1rem;
        left: 1rem;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .lightbox-content {
        padding: 1rem 0.5rem;
    }
    
    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .lightbox-close {
        top: 0.5rem;
        right: 0.5rem;
    }
    
    .lightbox-prev {
        left: 0.5rem;
    }
    
    .lightbox-next {
        right: 0.5rem;
    }
    
    .lightbox-caption {
        bottom: 0.5rem;
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .lightbox-counter {
        top: 0.5rem;
        left: 0.5rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
}

/* Анимация появления элементов управления */
.lightbox-close,
.lightbox-prev,
.lightbox-next,
.lightbox-caption,
.lightbox-counter {
    animation: fadeInControls 0.5s ease 0.2s both;
}

@keyframes fadeInControls {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Улучшенный hover эффект для изображений в новостях */
.modal-body img {
    transition: all 0.3s ease;
}
/* Адаптация героя для планшетов */
@media (max-width: 1024px) {
    .hero-visual img {
        width: 300px !important;
        height: auto;
    }
    
    .hero-badge {
        margin-top: 2rem;
    }
}

/* Адаптация героя для мобильных */
@media (max-width: 768px) {
    .hero {
        padding-top: 100px; /* Отступ от header */
    }
    
    /* Скрываем изображение мужика на мобильных */
    .hero-visual {
        display: none;
    }
    
    .hero-badge {
        margin-top: 0;
        margin-bottom: 1.5rem;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    /* Адаптация кнопок */
    .cta-group {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        white-space: nowrap;
    }
}

/* Адаптация для маленьких мобильных */
@media (max-width: 480px) {
    .hero {
        padding-top: 120px;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.3rem 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .btn {
        font-size: 0.9rem;
        padding: 0.9rem 1.2rem;
    }
}
