:root {
            --primary: #FF4757;
            --dark: #1A1A1A;
            --light: #F8F9FA;
            --gray: #6C757D;
            --bg: #0F0F0F;
            --card-bg: rgba(40, 40, 40, 0.9);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', sans-serif;
        }

        body {
            background: var(--bg) url('../images/background.png') no-repeat center/cover fixed;
            color: var(--light);
            line-height: 1.6;
            min-height: 100vh;
            overflow-x: hidden;
        }

        /* Шапка */
        header {
            background: rgba(30, 30, 30, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 71, 87, 0.2);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
        }

        .logo img {
            height: 40px;
        }

        .nav-links {
            display: flex;
            gap: 1.5rem;
        }

        .nav-links a {
            color: var(--light);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: var(--primary);
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .btn {
            background: var(--primary);
            color: white;
            padding: 0.7rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 6px rgba(255, 71, 87, 0.2);
        }

        .btn:hover {
            background: #FF6B81;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(255, 71, 87, 0.3);
        }

        /* Основной контент */
        main {
            max-width: 1200px;
            margin: 3rem auto;
            padding: 0 2rem;
        }

        .page-title {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #FF4757, #FF8E53);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .page-description {
            text-align: center;
            font-size: 1.2rem;
            color: var(--gray);
            margin-bottom: 3rem;
        }

        /* Блоки информации */
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .info-card {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            transition: all 0.4s;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .info-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(255, 71, 87, 0.3);
            border-color: rgba(255, 71, 87, 0.3);
        }

        .card-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .card-icon {
            width: 50px;
            height: 50px;
            object-fit: contain;
        }

        .card-title {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .card-content {
            color: var(--light);
            line-height: 1.7;
        }

        .card-content ul {
            list-style: none;
        }

        .card-content li {
            margin-bottom: 0.8rem;
            position: relative;
            padding-left: 1.5rem;
        }

        .card-content li::before {
            content: '»';
            color: var(--primary);
            position: absolute;
            left: 0;
        }

        /* Секция с картой */
        .map-section {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            margin: 4rem 0;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .map-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
        }

        .map-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
            padding: 2rem;
            color: white;
        }

        .map-title {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
            color: var(--primary);
        }

        .map-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 1rem;
        }

        .version-badge {
            background: var(--primary);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .status {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .status-dot {
            width: 10px;
            height: 10px;
            background: #2ECC71;
            border-radius: 50%;
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.3); }
        }

        /* Доп. секция */
        .extra-section {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 2.5rem;
            margin: 3rem 0;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .section-title {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            text-align: center;
        }

        /* Кнопка */
        .back-btn {
            display: block;
            width: 250px;
            margin: 4rem auto 0;
            text-align: center;
            background: var(--primary);
            color: white;
            padding: 1rem;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(255, 71, 87, 0.3);
        }

        .back-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 71, 87, 0.4);
            background: #FF6B81;
        }

        /* Футер */
        footer {
            background: rgba(20, 20, 20, 0.95);
            padding: 3rem 0;
            margin-top: 4rem;
            border-top: 1px solid rgba(255, 71, 87, 0.2);
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-title {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .footer-link {
            color: var(--gray);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-link:hover {
            color: var(--primary);
        }

        .copyright {
            color: var(--gray);
            font-size: 0.9rem;
            text-align: center;
            margin-top: 2rem;
            grid-column: 1 / -1;
        }

        .payment-methods {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .payment-methods img {
            height: 30px;
            filter: grayscale(100%) brightness(0.8);
            transition: filter 0.3s;
        }

        .payment-methods img:hover {
            filter: grayscale(0%) brightness(1);
        }

        /* Адаптация */
        @media (max-width: 768px) {
            .nav-container {
                flex-direction: column;
                text-align: center;
                gap: 1.5rem;
            }

            .nav-links {
                flex-direction: column;
                gap: 1rem;
            }

            .page-title {
                font-size: 2.2rem;
            }

            .page-description {
                font-size: 1rem;
            }

            .info-grid {
                grid-template-columns: 1fr;
            }

            .map-overlay {
                padding: 1.5rem;
            }

            .map-title {
                font-size: 1.5rem;
            }

            .extra-section {
                padding: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .map-image {
                height: 300px;
            }

            .back-btn {
                width: 100%;
            }
        }