        /* Базовые стили и переменные */


                /* Базовые стили и переменные */
                :root {
                    --primary: #efb810;
                    --primary-hover: #ffc82e;
                    --primary-transparent: rgba(239, 184, 16, 0.1);
                    --accent: #ff5722;
                    --accent-hover: #ff7043;
                    --bg-dark: #2b2d31;
                    --bg-darker: #1f2023;
                    --bg-card: #32343a;
                    --bg-gradient: linear-gradient(135deg, #2b2d31 0%, #1a1b1f 100%);
                    --text: #ffffff;
                    --text-dark: #b0b0b0;
                    --border: rgba(255, 255, 255, 0.1);
                    --shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
                    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.1);
                    --shadow-primary: 0 10px 20px rgba(239, 184, 16, 0.2);
                }
                
                * {
                    margin: 0;
                    padding: 0;
                    box-sizing: border-box;
                    font-family: 'Montserrat', sans-serif;
                }
                
                /* Кнопка возврата к выбору игр */
                .back-to-games {
                    position: fixed;
                    bottom: 30px;
                    right: 30px;
                    z-index: 9999;
                    background: linear-gradient(135deg, var(--primary), var(--accent));
                    color: white;
                    width: 48px;
                    height: 48px;
                    border-radius: 50%;
                    text-decoration: none;
                    font-size: 20px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    transition: all 0.3s ease;
                    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
                    border: none;
                    cursor: pointer;
                    -webkit-tap-highlight-color: rgba(239, 184, 16, 0.5);
                    touch-action: manipulation;
                    -webkit-touch-callout: none;
                    -webkit-user-select: none;
                    user-select: none;
                }
                
                .back-to-games:active {
                    transform: scale(0.95);
                    background: linear-gradient(135deg, var(--accent), var(--primary));
                }
                
                .back-to-games:hover {
                    transform: scale(1.15);
                    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.35);
                }
                
                .back-to-games i {
                    font-size: 20px;
                }
                
                /* Плавающие кнопки (канал + поддержка) */
                .floating-buttons {
                    position: fixed;
                    bottom: 90px;
                    right: 30px;
                    z-index: 9999;
                    display: flex;
                    flex-direction: column;
                    gap: 12px;
                }
                
                .floating-btn {
                    width: 48px;
                    height: 48px;
                    border-radius: 50%;
                    text-decoration: none;
                    font-size: 20px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    transition: all 0.3s ease;
                    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
                    border: none;
                    cursor: pointer;
                    color: white;
                }
                
                .floating-btn:hover {
                    transform: scale(1.15);
                    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.35);
                }
                
                .floating-btn:active {
                    transform: scale(0.95);
                }
                
                .floating-btn.channel {
                    background: linear-gradient(135deg, #0088cc, #00aced);
                }
                
                .floating-btn.channel:hover {
                    box-shadow: 0 6px 25px rgba(0, 136, 204, 0.4);
                }
                
                .floating-btn.support {
                    background: linear-gradient(135deg, #25d366, #128c7e);
                }
                
                .floating-btn.support:hover {
                    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
                }

                @media (max-width: 768px) {
                    .back-to-games {
                        display: flex;
                        bottom: 20px;
                        right: 20px;
                        width: 42px;
                        height: 42px;
                        font-size: 18px;
                    }
                    
                    .back-to-games i {
                        font-size: 18px;
                    }
                    
                    .floating-buttons {
                        bottom: 72px;
                        right: 20px;
                        gap: 10px;
                    }
                    
                    .floating-btn {
                        width: 42px;
                        height: 42px;
                        font-size: 18px;
                    }
                }
                
                .button-wrapper { /* Replace with the actual class or tag of the parent */
            display: flex;
            justify-content: center; /* Centers horizontally */
            /* Optional: Add align-items: center; to center vertically if the wrapper has height */
        }
        
        .btn.btn-full.btn-accent { /* Or just .btn-full if that's specific enough */
            display: block;       /* Make sure it's a block */
            width: fit-content;   /* Adjust width to content OR set a specific max-width */
            /* Example: max-width: 250px; */
            margin-left: auto;    /* Auto margins left/right */
            margin-right: auto;
        }
        
                
                body {
                    background-color: var(--bg-dark);
                    background-image: var(--bg-gradient);
                    color: var(--text);
                    line-height: 1.6;
                }
                
                .container {
                    max-width: 1200px;
                    margin: 0 auto;
                    padding: 0 15px;
                }
        
                /* Общие стили */
                section {
                    padding: 40px 0;
                    position: relative;
                }
        
                section.alt-bg {
                    background-color: var(--bg-darker);
                }
        
                h1, h2, h3, h4 {
                    margin-bottom: 15px;
                    line-height: 1.3;
                }
        
                a {
                    text-decoration: none;
                    color: var(--text);
                    transition: all 0.3s ease;
                }
        
                img {
                    max-width: 100%;
                    height: auto;
                }
        
                .text-center {
                    text-align: center;
                }
        
                .mb-20 {
                    margin-bottom: 20px;
                }
        
                .mb-30 {
                    margin-bottom: 30px;
                }
        
                .mb-50 {
                    margin-bottom: 50px;
                }
        
                .mt-30 {
                    margin-top: 30px;
                }
        
                .mt-50 {
                    margin-top: 50px;
                }
        
                /* Эффекты и акценты */
                .card {
                    background-color: var(--bg-card);
                    border-radius: 15px;
                    overflow: hidden;
                    box-shadow: var(--shadow-light);
                    transition: all 0.3s ease;
                    border: 1px solid var(--border);
                }
        
                .card:hover {
                    transform: translateY(-10px);
                    box-shadow: var(--shadow);
                    border-color: var(--primary);
                }
        
                .accent-border {
                    position: relative;
                }
        
                .accent-border::before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 4px;
                    height: 100%;
                    background-color: var(--primary);
                    border-radius: 4px 0 0 4px;
                }
        
                .gradient-text {
                    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
                    -webkit-background-clip: text;
                    -webkit-text-fill-color: transparent;
                    background-clip: text;
                    color: transparent;
                }
        
                .highlight-box {
                    background-color: var(--primary-transparent);
                    border-radius: 8px;
                    padding: 15px;
                    border-left: 3px solid var(--primary);
                    margin: 20px 0;
                }
        
                /* Хедер */
                header {
                    background-color: rgba(31, 32, 35, 0.9);
                    padding: 15px 0;
                    position: fixed;
                    width: 100%;
                    top: 0;
                    left: 0;
                    z-index: 100;
                    box-shadow: var(--shadow-light);
                    backdrop-filter: blur(10px);
                    -webkit-backdrop-filter: blur(10px);
                    border-bottom: 1px solid var(--border);
                }
        
                .header-container {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                }
        
                .logo {
                    font-size: 34px;
                    font-weight: 800;
                    color: var(--text);
                    position: relative;
                    padding-left: 15px;
                }
        
                .logo::before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 3px;
                    height: 100%;
                    background-color: var(--primary);
                    border-radius: 3px;
                }
        
                .nav-links {
                    display: flex;
                    gap: 10px;
                    align-items: center;
                    flex-wrap: wrap;
                    justify-content: flex-end;
                }
        
                .nav-link {
                    font-weight: 600;
                    font-size: 13px;
                    padding: 5px 10px;
                    border-radius: 5px;
                    transition: all 0.3s ease;
                    white-space: nowrap;
                }
        
                .nav-link:hover {
                    color: var(--primary);
                    background-color: rgba(239, 184, 16, 0.1);
                }
        
                .mobile-menu {
                    display: none;
                    background: none;
                    border: none;
                    color: var(--text);
                    font-size: 24px;
                    cursor: pointer;
                }
        
                /* Кнопки */
                .btn {
                    display: inline-block;
                    padding: 12px 25px;
                    background-color: var(--primary);
                    color: #000;
                    font-weight: 700;
                    border-radius: 50px;
                    border: none;
                    transition: all 0.3s ease;
                    cursor: pointer;
                    text-align: center;
                    box-shadow: var(--shadow-primary);
                    position: relative;
                    overflow: hidden;
                    z-index: 1;
                }
        
                .btn::after {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: -100%;
                    width: 100%;
                    height: 100%;
                    background: rgba(255, 255, 255, 0.2);
                    transition: all 0.3s ease;
                    z-index: -1;
                }
        
                .btn:hover::after {
                    left: 100%;
                }
        
                .btn:hover {
                    background-color: var(--primary-hover);
                    transform: translateY(-3px);
                    box-shadow: 0 10px 20px rgba(239, 184, 16, 0.3);
                }
        
                .btn-full {
                    text-align: center;
                    width: 100%;
                    max-width: 300px;
                }
        
                .btn-large {
                    padding: 15px 30px;
                    font-size: 18px;
                    margin-top: 15px;
                }
        
                .btn-accent {
                    background-color: var(--accent);
                    box-shadow: 0 10px 20px rgba(255, 87, 34, 0.2);
                }
        
                .btn-accent:hover {
                    background-color: var(--accent-hover);
                    box-shadow: 0 10px 20px rgba(255, 87, 34, 0.3);
                }
        
                .btn-outline {
                    background-color: transparent;
                    border: 2px solid var(--primary);
                    color: var(--primary);
                    box-shadow: none;
                }
        
                .btn-outline:hover {
                    background-color: var(--primary);
                    color: #000;
                    box-shadow: var(--shadow-primary);
                }
        
                .btn-icon {
                    margin-right: 8px;
                }
        
                .btn-pulse {
                    animation: pulse 2s infinite;
                }
        
                @keyframes pulse {
                    0% {
                        box-shadow: 0 0 0 0 rgba(239, 184, 16, 0.4);
                    }
                    70% {
                        box-shadow: 0 0 0 15px rgba(239, 184, 16, 0);
                    }
                    100% {
                        box-shadow: 0 0 0 0 rgba(239, 184, 16, 0);
                    }
                }
        
                /* Секция героя */
                .hero {
                    padding-top: 130px;
                    padding-bottom: 80px;
                    text-align: center;
                    position: relative;
                    overflow: hidden;
                }
        
                .hero::before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background-image: 
                        radial-gradient(circle at 10% 30%, rgba(239, 184, 16, 0.1) 0%, transparent 20%),
                        radial-gradient(circle at 90% 70%, rgba(239, 184, 16, 0.1) 0%, transparent 20%);
                    z-index: -1;
                }
        
                .hero-title {
                    font-size: 48px;
                    font-weight: 800;
                    margin-bottom: 20px;
                    position: relative;
                    display: inline-block;
                    text-transform: uppercase;
                }
        
                .hero-title::after {
                    content: '';
                    position: absolute;
                    left: 50%;
                    bottom: -15px;
                    transform: translateX(-50%);
                    width: 100px;
                    height: 4px;
                    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
                    border-radius: 2px;
                }
        
                .hero-description {
                    font-size: 18px;
                    color: var(--text-dark);
                    max-width: 800px;
                    margin: 30px auto 40px;
                }
        
                .hero-buttons {
                    display: flex;
                    flex-direction: column;
                    gap: 20px;
                    align-items: center;
                    margin-bottom: 40px;
                }
        
                .version-info {
                    margin-top: 20px;
                    font-size: 20px;
                    font-weight: 700;
                    display: inline-block;
                    padding: 10px 25px;
                    background-color: var(--bg-card);
                    border-radius: 50px;
                    box-shadow: var(--shadow-light);
                    border: 1px solid var(--border);
                }
        
                /* Видеоплеер */
                .video-section {
                    padding: 60px 0;
                }
        
                .video-container {
                    max-width: 800px;
                    margin: 0 auto;
                    position: relative;
                    border-radius: 20px;
                    overflow: hidden;
                    box-shadow: var(--shadow);
                }
        
                .video-placeholder {
                    width: 100%;
                    height: 0;
                    padding-bottom: 56.25%; /* соотношение 16:9 */
                    background-color: #000;
                    position: relative;
                    overflow: hidden;
                }
        
                .video-placeholder img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    position: absolute;
                    top: 0;
                    left: 0;
                }
        
                .play-button {
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    width: 80px;
                    height: 80px;
                    background-color: var(--primary);
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 30px;
                    color: #000;
                    cursor: pointer;
                    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
                    transition: all 0.3s ease;
                }
        
                .play-button:hover {
                    background-color: var(--primary-hover);
                    transform: translate(-50%, -50%) scale(1.1);
                }
        
                .video-title {
                    text-align: center;
                    margin-top: 30px;
                    font-size: 24px;
                    font-weight: 700;
                }
        
                .video-description {
                    text-align: center;
                    color: var(--text-dark);
                    max-width: 600px;
                    margin: 20px auto 0;
                }
        
                /* Вертикальный видео плеер */
                .video-showcase {
                    margin: 30px auto;
                    max-width: 350px;
                    text-align: center;
                }
                
                .video-player-container {
                    position: relative;
                    width: 100%;
                    max-width: 350px;
                    margin: 0 auto;
                    border-radius: 20px;
                    overflow: hidden;
                    background: #000;
                    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
                    aspect-ratio: 9 / 16;
                }
                
                .video-player-container:fullscreen {
                    max-width: 100%;
                    width: 100%;
                    height: 100%;
                    border-radius: 0;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    background: #000;
                }
                
                .video-player-container:fullscreen .vertical-video {
                    width: auto;
                    height: 100%;
                    max-width: 100%;
                    max-height: 100%;
                    object-fit: contain;
                }
                
                .video-player-container:-webkit-full-screen {
                    max-width: 100%;
                    width: 100%;
                    height: 100%;
                    border-radius: 0;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    background: #000;
                }
                
                .video-player-container:-webkit-full-screen .vertical-video {
                    width: auto;
                    height: 100%;
                    max-width: 100%;
                    max-height: 100%;
                    object-fit: contain;
                }
                
                .vertical-video {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    display: block;
                }
                
                .video-overlay {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    background: rgba(0, 0, 0, 0.3);
                    transition: opacity 0.3s ease;
                    cursor: pointer;
                }
                
                .video-overlay.hidden {
                    opacity: 0;
                    pointer-events: none;
                }
                
                .play-btn {
                    width: 80px;
                    height: 80px;
                    border-radius: 50%;
                    background: var(--primary);
                    border: none;
                    cursor: pointer;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 32px;
                    color: #000;
                    transition: all 0.3s ease;
                    box-shadow: 0 5px 25px rgba(239, 184, 16, 0.5);
                }
                
                .play-btn:hover {
                    transform: scale(1.1);
                    box-shadow: 0 8px 35px rgba(239, 184, 16, 0.6);
                }
                
                .play-btn i {
                    margin-left: 5px;
                }
                
                .video-controls {
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    right: 0;
                    padding: 15px;
                    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    opacity: 0;
                    transition: opacity 0.3s ease;
                    z-index: 10;
                }
                
                .video-player-container:fullscreen .video-controls,
                .video-player-container:-webkit-full-screen .video-controls {
                    position: fixed;
                    bottom: 0;
                    left: 0;
                    right: 0;
                    padding: 20px 40px;
                }
                
                .video-player-container:fullscreen .video-overlay,
                .video-player-container:-webkit-full-screen .video-overlay {
                    position: fixed;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    width: 100%;
                    height: 100%;
                }
                
                .video-player-container:hover .video-controls,
                .video-controls.visible {
                    opacity: 1;
                }
                
                .control-btn {
                    width: 36px;
                    height: 36px;
                    border: none;
                    background: rgba(255, 255, 255, 0.2);
                    border-radius: 50%;
                    cursor: pointer;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    color: #fff;
                    font-size: 14px;
                    transition: all 0.2s ease;
                }
                
                .control-btn:hover {
                    background: var(--primary);
                    color: #000;
                }
                
                .progress-container {
                    flex: 1;
                    height: 6px;
                    background: rgba(255, 255, 255, 0.3);
                    border-radius: 3px;
                    cursor: pointer;
                    position: relative;
                }
                
                .progress-bar {
                    height: 100%;
                    background: var(--primary);
                    border-radius: 3px;
                    width: 0%;
                    transition: width 0.1s linear;
                }
                
                .time-display {
                    color: #fff;
                    font-size: 12px;
                    font-weight: 500;
                    white-space: nowrap;
                }
                
                @media (max-width: 768px) {
                    .video-showcase {
                        max-width: 280px;
                        margin: 20px auto;
                    }
                    
                    .video-player-container {
                        max-width: 280px;
                    }
                    
                    .play-btn {
                        width: 60px;
                        height: 60px;
                        font-size: 24px;
                    }
                    
                    .video-controls {
                        padding: 10px;
                        gap: 8px;
                    }
                    
                    .control-btn {
                        width: 30px;
                        height: 30px;
                        font-size: 12px;
                    }
                    
                    .time-display {
                        font-size: 10px;
                    }
                }

                /* Кнопка отзывов */
                .testimonial-button-section {
                    text-align: center;
                    padding: 20px 0;
                    background-color: var(--bg-darker);
                    position: relative;
                }
        
                .testimonial-button-section::before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><path fill="rgba(239, 184, 16, 0.05)" d="M10 15l-5.878 3.09 1.123-6.545L.489 6.91l6.572-.955L10 0l2.939 5.955 6.572.955-4.756 4.635 1.123 6.545z"/></svg>');
                    background-repeat: repeat;
                    opacity: 0.2;
                    z-index: 0;
                }
        
                .testimonial-button-wrapper {
                    position: relative;
                    z-index: 1;
                }
        
        
        
                .testimonial-count {
                    display: inline-block;
                    padding: 5px 15px;
                    background-color: var(--primary);
                    border-radius: 20px;
                    color: #000;
                    font-weight: 700;
                    margin-left: 10px;
                }
        
                /* Как это работает */
                .how-it-works {
                    padding: 80px 0;
                    position: relative;
                }
        
                .how-it-works::before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background-image: 
                        radial-gradient(circle at 90% 20%, rgba(239, 184, 16, 0.1) 0%, transparent 20%),
                        radial-gradient(circle at 10% 80%, rgba(239, 184, 16, 0.1) 0%, transparent 20%);
                    z-index: -1;
                }
        
                .section-title {
                    font-size: 32px;
                    font-weight: 800;
                    text-align: center;
                    margin-bottom: 30px;
                    position: relative;
                    padding-bottom: 12px;
                }
        
                .section-title::after {
                    content: '';
                    position: absolute;
                    left: 50%;
                    bottom: 0;
                    transform: translateX(-50%);
                    width: 60px;
                    height: 3px;
                    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
                    border-radius: 2px;
                }
        
                .steps {
                    max-width: 800px;
                    margin: 0 auto;
                }
        
                .step {
                    display: flex;
                    align-items: flex-start;
                    margin-bottom: 20px;
                    gap: 30px;
                }
        
                .step:last-child {
                    margin-bottom: 0;
                }
        
                .step-number {
                    width: 60px;
                    height: 60px;
                    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
                    color: #000;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 40px;
                    font-weight: 750;
                    border-radius: 50%;
                    flex-shrink: 0;
                    box-shadow: var(--shadow-primary);
                }
        
                .step-content {
                    flex: 1;
                    background-color: var(--bg-card);
                    border-radius: 15px;
                    padding: 25px;
                    box-shadow: var(--shadow-light);
                    border: 1px solid var(--border);
                    transition: all 0.3s ease;
                }
        
                .step:hover .step-content {
                    transform: translateY(-5px);
                    box-shadow: var(--shadow);
                    border-color: var(--primary);
                }
        
                .step-title {
                    font-size: 24px;
                    font-weight: 700;
                    margin-bottom: 15px;
                    color: var(--primary);
                }
        
                .step-description {
                    color: var(--text-dark);
                    margin-bottom: 20px;
                }
        
                .step-image img {
                    border-radius: 10px;
                    box-shadow: var(--shadow-light);
                    transition: all 0.3s ease;
                }

                /* Центрируем изображения в блоках шагов */
                .step-image {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                }
        
                .step:hover .step-image img {
                    transform: scale(1.03);
                    box-shadow: var(--shadow);
                }
        
                /* Тарифы */
                .pricing {
                    background-color: var(--bg-darker);
                    padding: 80px 0;
                    position: relative;
                }
        
                .pricing::before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background-image: 
                        radial-gradient(circle at 20% 80%, rgba(239, 184, 16, 0.05) 0%, transparent 25%),
                        radial-gradient(circle at 80% 30%, rgba(239, 184, 16, 0.05) 0%, transparent 25%);
                    z-index: 0;
                }
        
.pricing-container {
            width: 100%;
            max-width: 1200px;
            margin: 30px auto 0;
            position: relative;
            z-index: 1;
            padding: 40px 15px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
        }

        .pricing-card {
            flex: 1;
            min-width: 300px;
            display: flex;
            flex-direction: column;
        }

        .pricing-features {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .pricing-footer {
            margin-top: auto;
            padding-top: 20px;
        }                .pricing-compact {
                    background-color: var(--bg-card);
                    border-radius: 15px;
                    padding: 30px 25px;
                    border: 1px solid var(--primary);
                    box-shadow: var(--shadow);
                    text-align: center;
                    max-width: 800px;
                    margin: 0 auto;
                }

                .pricing-compact h3 {
                    font-size: 24px;
                    margin-bottom: 30px;
                }

                .pricing-plans {
                    display: flex;
                    justify-content: center;
                    gap: 15px;
                    margin: 20px 0;
                    flex-wrap: nowrap;
                }

                .pricing-plan {
                    background: rgba(255, 255, 255, 0.05);
                    padding: 20px 15px;
                    border-radius: 10px;
                    border: 1px solid var(--border);
                    flex: 1;
                    min-width: 0;
                    position: relative;
                }

                .pricing-plan .plan-title {
                    font-size: 24px;
                    font-weight: 700;
                    color: var(--primary);
                    margin-bottom: 10px;
                }

                .pricing-plan .plan-subtitle {
                    font-size: 12px;
                    color: var(--text-dark);
                    margin-top: 10px;
                    line-height: 1.4;
                }

                .plan-features {
                    margin: 30px 0;
                    text-align: left;
                    padding: 0 20px;
                }

                .feature-item {
                    margin: 12px 0;
                    display: flex;
                    align-items: center;
                    gap: 10px;
                }

                .feature-status {
                    color: var(--primary);
                    font-weight: bold;
                }

                .extra-only {
                    opacity: 0.7;
                }

                .plan-buttons {
                    margin-top: 30px;
                }

                .pricing-plan.featured {
                    border-color: var(--primary);
                    position: relative;
                }

                .pricing-plan.featured::after {
                    content: 'ХИТ';
                    position: absolute;
                    top: -10px;
                    right: -10px;
                    background: var(--primary);
                    color: #000;
                    font-size: 12px;
                    padding: 3px 8px;
                    border-radius: 10px;
                    font-weight: 700;
                }

                .plan-price {
                    font-size: 39px;
                    font-weight: 700;
                    color: var(--primary);
                    margin: 5px 0;
                    text-align: center;
                    display: flex;
                    flex-direction: column;
                    gap: 2px;
                }

                .plan-price .gold-price {
                    font-size: 14px;
                    color: var(--text-dark);
                    opacity: 0.7;
                }

                .plan-period {
                    font-size: 14px;
                    color: var(--text);
                    margin-top: 5px;
                    text-align: center;
                }

                .pricing-features-list {
                    list-style: none;
                    padding: 0;
                    margin: 30px 0;
                    text-align: center;
                }

                .pricing-features-list {
                    max-width: 400px;
                    margin: 25px auto;
                    
                }

                .pricing-features-list li {
                    margin: 12px 0;
                    position: relative;
                    padding: 0;
                    color: var(--text);
                    font-size: 15px;
                    text-align: center;
                }

                .pricing-features-list li::before {
                    content: "✓";
                    position: absolute;
                    left: 0;
                    color: var(--primary);
                }
        
                .pricing-card.featured {
                    transform: scale(1.05);
                    border-color: var(--primary);
                    box-shadow: var(--shadow);
                    z-index: 2;
                }
        
                .pricing-card.featured::after {
                    content: 'ХИТ';
                    position: absolute;
                    top: 20px;
                    right: -35px;
                    background: var(--primary);
                    color: #000;
                    font-weight: 700;
                    padding: 5px 40px;
                    transform: rotate(45deg);
                    font-size: 14px;
                    z-index: 2;
                }
        
                .pricing-card:hover {
                    transform: translateY(-10px);
                    box-shadow: var(--shadow);
                    border-color: var(--primary);
                }
        
                .pricing-card.featured:hover {
                    transform: scale(1.05) translateY(-10px);
                }
        
                .pricing-header {
                    padding: 30px;
                    background: linear-gradient(135deg, rgba(50, 52, 58, 0.8) 0%, rgba(40, 42, 48, 0.8) 100%);
                    text-align: center;
                    border-bottom: 1px solid var(--border);
                    position: relative;
                }
        
                .pricing-title {
                    font-size: 26px;
                    font-weight: 700;
                    margin-bottom: 10px;
                    margin-right: 3%;
                }
        
                .pricing-price {
                    font-size: 63px;
                    font-weight: 800;
                    color: var(--primary);
                    margin-bottom: 0;
                }
        
                .pricing-period {
                    font-size: 16px;
                    color: var(--text-dark);
                    margin-top: 5px;
                    display: block;
                }
        
                .pricing-features {
                    list-style: none;
                    padding: 30px;
                    margin: 0;
                }
        
                .pricing-feature {
                    padding: 10px 0;
                    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
                    color: var(--text-dark);
                    display: flex;
                    align-items: center;
                }
        
                .pricing-feature:last-child {
                    border-bottom: none;
                }
        
                .pricing-feature i {
                    color: var(--primary);
                    margin-right: 10px;
                    font-size: 16px;
                }
        
                .pricing-footer {
                    padding: 0 30px 30px;
                    text-align: center;
                }
        
                /* Features (преимущества) */
                .features {
                    padding: 80px 0;
                    position: relative;
                }
        
                .features::before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background-image: 
                        radial-gradient(circle at 70% 20%, rgba(239, 184, 16, 0.1) 0%, transparent 20%),
                        radial-gradient(circle at 30% 80%, rgba(239, 184, 16, 0.1) 0%, transparent 20%);
                    z-index: -1;
                }
        
                .features-grid {
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                    gap: 20px;
                    padding-top: 10px;
                    position: relative;
                    z-index: 1;
                    max-width: 100%;
                    overflow: hidden;
                }
        
                .feature-card {
                    background-color: var(--bg-card);
                    padding: 30px;
                    border-radius: 15px;
                    text-align: center;
                    transition: all 0.3s ease;
                    border: 1px solid var(--border);
                    box-shadow: var(--shadow-light);
                    height: 100%;
                    position: relative;
                    overflow: hidden;
                }
        
                .feature-card::before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 5px;
                    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
                    opacity: 0;
                    transition: all 0.3s ease;
                }
        
                .feature-card:hover::before {
                    opacity: 1;
                }
        
                .feature-card:hover {
                    transform: translateY(-10px);
                    box-shadow: var(--shadow);
                    border-color: var(--primary);
                }
        
                .feature-icon {
                    font-size: 36px;
                    color: var(--primary);
                    margin-bottom: 20px;
                    display: inline-block;
                    transition: all 0.3s ease;
                }
        
                .feature-card:hover .feature-icon {
                    transform: scale(1.2);
                }
        
                .feature-title {
                    font-size: 22px;
                    font-weight: 700;
                    margin-bottom: 15px;
                }
        
                .feature-description {
                    color: var(--text-dark);
                }
        
                /* Отзывы */
                .testimonials {
                    padding: 40px 0;
                    text-align: center;
                    background-color: var(--bg-darker);
                    position: relative;
                }
        
                .testimonials::before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30"><path fill="rgba(239, 184, 16, 0.03)" d="M15 25l-8.5 4.5 1.5-9L1 13l9-1.5L15 3l5 8.5 9 1.5-7 7.5 1.5 9z"/></svg>');
                    background-repeat: repeat;
                    z-index: 0;
                }
        
                .testimonial-btn {
                    margin-top: 40px;
                    position: relative;
                    z-index: 1;
                }
        
                /* Футер */
                footer {
                    background-color: var(--bg-darker);
                    padding: 60px 0 20px;
                    position: relative;
                    overflow: hidden;
                }
        
                footer::before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 5px;
                    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
                }
        
                .footer-content {
                    display: flex;
                    flex-wrap: wrap;
                    justify-content: space-between;
                    gap: 40px;
                    margin-bottom: 40px;
                    position: relative;
                    z-index: 1;
                }
        
                .footer-column {
                    flex: 1;
                    min-width: 200px;
                }
        
                .footer-title {
                    font-size: 20px;
                    font-weight: 700;
                    margin-bottom: 20px;
                    position: relative;
                    padding-bottom: 10px;
                }
        
                .footer-title:after {
                    content: '';
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    width: 50px;
                    height: 3px;
                    background-color: var(--primary);
                    border-radius: 3px;
                }
        
                .footer-links {
                    list-style: none;
                }
        
                .footer-link {
                    margin-bottom: 12px;
                }
        
                .footer-link a {
                    color: var(--text-dark);
                    transition: all 0.3s ease;
                    display: flex;
                    align-items: center;
                }
        
                .footer-link a i {
                    margin-right: 8px;
                    color: var(--primary);
                    font-size: 14px;
                }
        
                .footer-link a:hover {
                    color: var(--primary);
                    transform: translateX(5px);
                }
        
                .footer-socials {
                    display: flex;
                    gap: 15px;
                    margin-top: 20px;
                }
        
                .footer-social {
                    width: 40px;
                    height: 40px;
                    background-color: rgba(255, 255, 255, 0.05);
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    color: var(--text);
                    transition: all 0.3s ease;
                }
        
                .footer-social:hover {
                    background-color: var(--primary);
                    color: #000;
                    transform: translateY(-5px);
                    box-shadow: var(--shadow-primary);
                }
        
                .footer-bottom {
                    text-align: center;
                    padding-top: 20px;
                    border-top: 1px solid var(--border);
                    color: var(--text-dark);
                    font-size: 14px;
                    position: relative;
                    z-index: 1;
                }
        
                /* Модальное окно */
                .modal {
                    position: fixed;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background-color: rgba(0, 0, 0, 0.8);
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    z-index: 1000;
                    opacity: 0;
                    visibility: hidden;
                    transition: all 0.3s ease;
                    backdrop-filter: blur(5px);
                }
        
                .modal.active {
                    opacity: 1;
                    visibility: visible;
                }
        
                .modal-content {
                    background-color: var(--bg-card);
                    border-radius: 15px;
                    padding: 40px;
                    width: 100%;
                    max-width: 500px;
                    position: relative;
                    transform: translateY(50px);
                    transition: all 0.3s ease;
                    box-shadow: var(--shadow);
                    border: 1px solid var(--border);
                }
        
                .modal.active .modal-content {
                    transform: translateY(0);
                }
        
                .modal-close {
                    position: absolute;
                    top: 20px;
                    right: 20px;
                    background: none;
                    border: none;
                    color: var(--text-dark);
                    font-size: 24px;
                    cursor: pointer;
                    width: 40px;
                    height: 40px;
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    transition: all 0.3s ease;
                }
        
                .modal-close:hover {
                    color: var(--primary);
                    background-color: rgba(255, 255, 255, 0.05);
                    transform: rotate(90deg);
                }
        
                .modal-title {
                    font-size: 28px;
                    font-weight: 700;
                    margin-bottom: 25px;
                    text-align: center;
                    color: var(--text);
                }
        
                .form-group {
                    margin-bottom: 25px;
                }
        
                .form-label {
                    display: block;
                    text-align: center;
                    margin-bottom: 10px;
                    font-weight: 600;
                    color: var(--text);
                }
        
                .form-input {
                    width: 100%;
                    padding: 15px 20px;
                    background-color: rgba(0, 0, 0, 0.2);
                    border: 1px solid var(--border);
                    border-radius: 10px;
                    color: var(--text);
                    font-size: 16px;
                    transition: all 0.3s ease;
                    text-align: center;
                    letter-spacing: 1px;
                }
        
                .form-input::placeholder {
                    text-align: center;
                    color: rgba(255, 255, 255, 0.5);
                }
        
                .form-input:focus {
                    outline: none;
                    border-color: var(--primary);
                    box-shadow: 0 0 0 3px rgba(239, 184, 16, 0.2);
                }
        
                /* Стили для модального окна ошибки */
                .error-content {
                    background-color: var(--bg-card);
                    border: 2px solid #ff5252;
                    text-align: center;
                    max-width: 400px;
                }

                .error-icon {
                    font-size: 48px;
                    color: #ff5252;
                    margin-bottom: 20px;
                }

                .error-title {
                    color: #ff5252;
                    font-size: 24px;
                    margin-bottom: 15px;
                }

                .error-message {
                    color: var(--text);
                    font-size: 16px;
                    margin-bottom: 25px;
                    line-height: 1.5;
                }
        
                /* Адаптивность */
        @media (max-width: 768px) {
            .pricing-compact {
                padding: 20px 15px;
                margin: 0 10px;
            }
            
            .pricing-plans {
                gap: 10px;
            }

            .pricing-plan {
                padding: 12px 8px;
            }

            .plan-price {
                font-size: 31px;
            }

            .plan-period {
                font-size: 13px;
            }

            .pricing-features-list {
                padding: 0 10px;
            }                    .mobile-menu {
                        display: block;
                    }
                    
                    .nav-links {
                        position: fixed;
                        top: -100%;
                        left: 0;
                        width: 100%;
                        background-color: var(--bg-darker);
                        flex-direction: column;
                        padding: 20px 0;
                        box-shadow: var(--shadow);
                        transition: all 0.4s ease;
                        z-index: 99;
                        opacity: 0;
                        visibility: hidden;
                    }
                    
                    .nav-links.active {
                        top: 70px;
                        opacity: 1;
                        visibility: visible;
                    }
                    
                    .hero-title {
                        font-size: 36px;
                    }
                    
                    .section-title {
                        font-size: 30px;
                    }
                    
                    .step {
                        flex-direction: column;
                    }
                    
                    .step-number {
                        margin: 0 auto -10px;
                        margin-top: 10px
                    }
                    
                    .step-content {
                        text-align: center;
                    }
                    
                    .pricing-card {
                        max-width: 100%;
                    }
                    
                    .pricing-card.featured {
                        transform: scale(1);
                    }
                    
                    .pricing-card.featured:hover {
                        transform: translateY(-10px);
                    }
                }
        
                @media (max-width: 576px) {
                    .hero-title {
                        font-size: 28px;
                    }
                    
                    .section-title {
                        font-size: 24px;
                    }
                    
                    .footer-content {
                        flex-direction: column;
                    }
                    
                    .footer-title:after {
                        left: 0;
                    }
                    
                    .footer-socials {
                        justify-content: flex-start;
                    }
                }
        :root {
            --primary: #efb810;
            --primary-hover: #ffc82e;
            --primary-transparent: rgba(239, 184, 16, 0.1);
            --accent: #ff5722;
            --accent-hover: #ff7043;
            --bg-dark: #2b2d31;
            --bg-darker: #1f2023;
            --bg-card: #32343a;
            --bg-gradient: linear-gradient(135deg, #2b2d31 0%, #1a1b1f 100%);
            --text: #ffffff;
            --text-dark: #b0b0b0;
            --border: rgba(255, 255, 255, 0.1);
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.1);
            --shadow-primary: 0 10px 20px rgba(239, 184, 16, 0.2);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }
        
        body {
            background-color: var(--bg-dark);
            background-image: var(--bg-gradient);
            color: var(--text);
            line-height: 1.6;
            min-height: 100vh;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Общие стили */
        section {
            padding: 80px 0;
            position: relative;
        }

        section.alt-bg {
            background-color: var(--bg-darker);
        }

        h1, h2, h3, h4 {
            margin-bottom: 20px;
            line-height: 1.3;
        }

        a {
            text-decoration: none;
            color: var(--text);
            transition: all 0.3s ease;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .text-center {
            text-align: center;
        }

        .mb-20 {
            margin-bottom: 20px;
        }

        .mb-30 {
            margin-bottom: 30px;
        }

        .mb-50 {
            margin-bottom: 50px;
        }

        .mt-30 {
            margin-top: 30px;
        }

        .mt-50 {
            margin-top: 50px;
        }

        /* Хедер */
        header {
            background-color: rgba(31, 32, 35, 0.9);
            padding: 15px 0;
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 100;
            box-shadow: var(--shadow-light);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: 800;
            color: var(--text);
            position: relative;
            padding-left: 15px;
        }

        .logo::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 3px;
            height: 100%;
            background-color: var(--primary);
            border-radius: 3px;
        }

        .nav-links {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .nav-link {
            font-weight: 600;
            font-size: 15px;
            padding: 5px 10px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            color: var(--primary);
            background-color: rgba(239, 184, 16, 0.1);
        }

        .mobile-menu {
            display: none;
            background: none;
            border: none;
            color: var(--text);
            font-size: 24px;
            cursor: pointer;
        }

        /* Кнопки */
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: var(--primary);
            color: #000;
            font-weight: 700;
            border-radius: 50px;
            border: none;
            transition: all 0.3s ease;
            cursor: pointer;
            text-align: center;
            box-shadow: var(--shadow-primary);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            z-index: -1;
        }

        .btn:hover::after {
            left: 100%;
        }

        .btn:hover {
            background-color: var(--primary-hover);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(239, 184, 16, 0.3);
        }

        .btn-full {
            width: 100%;
            max-width: 300px;
        }


        .btn-accent {
            background-color: var(--accent);
            box-shadow: 0 10px 20px rgba(255, 87, 34, 0.2);
        }

        .btn-accent:hover {
            background-color: var(--accent-hover);
            box-shadow: 0 10px 20px rgba(255, 87, 34, 0.3);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
            box-shadow: none;
        }

        .btn-outline:hover {
            background-color: var(--primary);
            color: #000;
            box-shadow: var(--shadow-primary);
        }

        .btn-icon {
            margin-right: 8px;
        }

        .btn-pulse {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(239, 184, 16, 0.4);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(239, 184, 16, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(239, 184, 16, 0);
            }
        }

        /* Футер */
        footer {
            background-color: var(--bg-darker);
            padding: 60px 0 20px;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }

        .footer-column {
            flex: 1;
            min-width: 200px;
        }

        .footer-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--primary);
            border-radius: 3px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-link {
            margin-bottom: 12px;
        }

        .footer-link a {
            color: var(--text-dark);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }

        .footer-link a i {
            margin-right: 8px;
            color: var(--primary);
            font-size: 14px;
        }

        .footer-link a:hover {
            color: var(--primary);
            transform: translateX(5px);
        }

        .footer-socials {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .footer-social {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text);
            transition: all 0.3s ease;
        }

        .footer-social:hover {
            background-color: var(--primary);
            color: #000;
            transform: translateY(-5px);
            box-shadow: var(--shadow-primary);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--border);
            color: var(--text-dark);
            font-size: 14px;
            position: relative;
            z-index: 1;
        }

        /* Страница оплаты */
        .payment-page {
            padding-top: 120px;
            padding-bottom: 80px;
            min-height: calc(100vh - 300px);
        }

        .payment-welcome {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px;
            padding: 30px;
            background-color: var(--bg-card);
            border-radius: 20px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            position: relative;
            overflow: hidden;
        }

        .payment-welcome::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
        }

        .welcome-title {
            font-size: 32px;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 20px;
        }
        
        .welcome-image {
            margin-top: 30px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            position: relative;
        }
        
        .welcome-image img {
            width: 100%;
            height: auto;
            border-radius: 15px;
            transition: all 0.3s ease;
        }
        
        .welcome-image:hover img {
            transform: scale(1.02);
        }

        /* Тарифы - стили из основной страницы */
        .pricing-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 50px;
            position: relative;
            z-index: 1;
        }

        .pricing-card {
            background-color: var(--bg-card);
            border-radius: 15px;
            overflow: hidden;
            width: 100%;
            max-width: 350px;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
            box-shadow: var(--shadow-light);
            position: relative;
        }

        .pricing-card.featured {
            transform: scale(1.05);
            border-color: var(--primary);
            box-shadow: var(--shadow);
            z-index: 2;
        }

        .pricing-card.featured::after {
            content: 'ХИТ';
            position: absolute;
            top: 20px;
            right: -35px;
            background: var(--primary);
            color: #000;
            font-weight: 700;
            padding: 5px 40px;
            transform: rotate(45deg);
            font-size: 14px;
            z-index: 2;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow);
            border-color: var(--primary);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .pricing-header {
            padding: 30px;
            background: linear-gradient(135deg, rgba(50, 52, 58, 0.8) 0%, rgba(40, 42, 48, 0.8) 100%);
            text-align: center;
            border-bottom: 1px solid var(--border);
            position: relative;
        }

        .pricing-title {
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .pricing-price {
            font-size: 42px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 0;
        }

        .pricing-period {
            font-size: 16px;
            color: var(--text-dark);
            margin-top: 5px;
            display: block;
        }

        .pricing-features {
            list-style: none;
            padding: 30px;
            margin: 0;
        }

        .pricing-feature {
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            color: var(--text-dark);
            display: flex;
            align-items: center;
        }

        .pricing-feature:last-child {
            border-bottom: none;
        }

        .pricing-feature i {
            color: var(--primary);
            margin-right: 10px;
            font-size: 16px;
        }

        .pricing-footer {
            padding: 0 30px 30px;
            text-align: center;
        }

        .payment-methods {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 20px;
        }

        .payment-method {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 70px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .payment-method:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }

        .payment-method i {
            font-size: 20px;
            color: var(--text-dark);
        }

        .info-blocks {
            margin-top: 80px;
        }

        .info-block {
            background-color: var(--bg-card);
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: var(--shadow-light);
            border: 1px solid var(--border);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .info-block:hover {
            box-shadow: var(--shadow);
            border-color: var(--primary);
        }

        .info-block::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
        }

        .info-block-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }

        .info-block-title i {
            color: var(--primary);
            margin-right: 15px;
            font-size: 28px;
        }

        .info-block-content {
            color: var(--text-dark);
            padding-left: 43px;
        }

        .highlight-box {
            background-color: var(--primary-transparent);
            border-radius: 8px;
            padding: 15px;
            border-left: 3px solid var(--primary);
            margin: 20px 0;
        }

        .payment-steps {
            display: flex;
            justify-content: space-between;
            margin-top: 50px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .payment-step {
            flex: 1;
            min-width: 250px;
            text-align: center;
            padding: 20px;
            position: relative;
        }

        .payment-step .step-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: #000;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            font-weight: 800;
            border-radius: 50%;
            margin: 0 auto 20px;
            box-shadow: var(--shadow-primary);
        }

        .payment-step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 40px;
            right: -10px;
            width: 20px;
            height: 20px;
            border-top: 3px solid var(--primary);
            border-right: 3px solid var(--primary);
            transform: rotate(45deg);
        }

        .step-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .step-description {
            color: var(--text-dark);
            font-size: 14px;
        }

        .benefits {
            margin-top: 30px;
        }

        .benefit-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .benefit-icon {
            min-width: 40px;
            height: 40px;
            background-color: var(--primary-transparent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }

        .benefit-icon i {
            color: var(--primary);
            font-size: 18px;
        }

        .benefit-content {
            flex: 1;
        }

        .benefit-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .benefit-description {
            color: var(--text-dark);
            font-size: 14px;
        }

        .gradient-text {
            background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent;
        }

        /* Анимации */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fade-in {
            animation: fadeIn 0.5s ease forwards;
        }

        .delay-100 {
            animation-delay: 0.1s;
        }

        .delay-200 {
            animation-delay: 0.2s;
        }

        .delay-300 {
            animation-delay: 0.3s;
        }

        .delay-400 {
            animation-delay: 0.4s;
        }

        /* Плавающие частицы */
        .particles-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
        }

        .particle {
            position: absolute;
            display: block;
            pointer-events: none;
            width: 10px;
            height: 10px;
            background-color: var(--primary);
            border-radius: 50%;
            animation: float 15s infinite ease-in-out;
            opacity: 0.1;
        }

        @keyframes float {
            0% {
                transform: translateY(0) translateX(0) rotate(0deg);
                opacity: 0.1;
            }
            25% {
                opacity: 0.3;
            }
            50% {
                transform: translateY(-100px) translateX(100px) rotate(180deg);
                opacity: 0.1;
            }
            75% {
                opacity: 0.3;
            }
            100% {
                transform: translateY(0) translateX(0) rotate(360deg);
                opacity: 0.1;
            }
        }

        /* Фиксированная кнопка покупки */
        .fixed-buy-button {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            width: auto;
            text-align: center;
            background: transparent;
            padding: 0;
            border-radius: 30px;
            box-shadow: none;
        }

        .fixed-buy-button .btn {
            margin: 0;
            padding: 10px 25px;
            border: 2px solid var(--primary);
        }

        @media (max-width: 768px) {
            .fixed-buy-button {
                width: 90%;
                bottom: 15px;
            }
        }

        /* Адаптивность */
        @media (max-width: 768px) {
            .mobile-menu {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: -100%;
                left: 0;
                width: 100%;
                background-color: var(--bg-darker);
                flex-direction: column !important;
                padding: 20px 0;
                box-shadow: var(--shadow);
                transition: all 0.4s ease;
                z-index: 99;
                opacity: 0;
                visibility: hidden;
            }
            
            .nav-links.active {
                top: 70px;
                opacity: 1;
                visibility: visible;
            }
            
            .payment-step:not(:last-child)::after {
                display: none;
            }
            
            .pricing-container {
                flex-direction: column;
                align-items: center;
            }
            
            .pricing-card {
                max-width: 100%;
            }
            
            .pricing-card.featured {
                transform: scale(1);
            }
            
            .pricing-card.featured:hover {
                transform: translateY(-10px);
            }
            
            .info-block-title {
                font-size: 20px;
            }
            
            .welcome-title {
                font-size: 26px;
            }
        }

        @media (max-width: 576px) {
            .footer-content {
                flex-direction: column;
            }
            
            .footer-title:after {
                left: 0;
            }
            
            .footer-socials {
                justify-content: flex-start;
            }
            
            .payment-card-price {
                font-size: 36px;
            }
            
            .payment-card-title {
                font-size: 22px;
            }
        }

/* Payment page specific styles */
.pricing-gold {
    font-size: 18px;
    font-weight: 500;
    margin-top: -3px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

.pricing-price {
    font-size: 60px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0;
    color: var(--primary);
}

.payment-methods-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.payment-methods-modal.active {
    display: flex;
}

.payment-methods-content {
    background-color: var(--bg-card);
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    border: 1px solid var(--primary);
    box-shadow: var(--shadow);
    position: relative;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.payment-methods-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    color: var(--text);
}

.payment-methods-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-method-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: rgba(239, 184, 16, 0.05);
    border: 2px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text);
    text-decoration: none;
}

.payment-method-btn:hover {
    background-color: rgba(239, 184, 16, 0.15);
    border-color: var(--primary);
    transform: translateX(5px);
}

.payment-method-icon {
    font-size: 28px;
    color: var(--primary);
    width: 40px;
    text-align: center;
}

.payment-method-text {
    flex: 1;
}

.payment-method-name {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 3px;
}

.payment-method-desc {
    font-size: 13px;
    color: var(--text-dark);
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--text);
    font-size: 24px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.modal-close-btn:hover {
    color: var(--primary);
}

/* Payment rub/gold page styles */
.payment-rub-page, .payment-gold-page {
    padding: 100px 0 40px;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.payment-rub-content, .payment-gold-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

.payment-header {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeIn 0.5s ease;
    background: rgba(239, 184, 16, 0.05);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: 15px;
    padding: 40px;
}

.payment-header h1 {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.payment-header p {
    font-size: 18px;
    color: var(--text-dark);
}

.payment-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    animation: slideUp 0.6s ease;
}

.payment-benefits {
    background: rgba(239, 184, 16, 0.05);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 40px;
    border-left: 4px solid var(--primary);
}

.payment-benefits h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text);
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.benefit-item i {
    font-size: 24px;
    color: var(--primary);
    margin-top: 3px;
    flex-shrink: 0;
}

.benefit-item-content {
    flex: 1;
}

.benefit-item-title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--text);
}

.benefit-item-desc {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.5;
}

.payment-card-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tariff-info {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    text-align: center;
}

.tariff-info:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(239, 184, 16, 0.2);
}

.tariff-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.tariff-description {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.6;
    align-self: center;
}

.card-details {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid var(--border);
}

.card-number {
    font-size: clamp(18px, 4vw, 28px);
    font-weight: 700;
    color: var(--primary);
    letter-spacing: clamp(1px, 0.5vw, 3px);
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Courier New', monospace;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.card-number-text {
    flex: 0 1 auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.copy-btn {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    outline: none;
}

.copy-btn:hover {
    background: var(--primary);
    color: #1a1b1f;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(239, 184, 16, 0.4);
}

.copy-btn:active {
    transform: scale(0.95);
}

.copy-btn:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.card-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    font-size: 13px;
    text-align: center;
}

.card-info-item {
    color: var(--text-dark);
}

.card-info-label {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 3px;
    font-size: 12px;
}

.price-display {
    background: linear-gradient(135deg, rgba(239, 184, 16, 0.1) 0%, rgba(255, 87, 34, 0.1) 100%);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin-bottom: 25px;
    border: 1px solid var(--border);
}

.price-label {
    font-size: 13px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.price-amount {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

.price-note {
    font-size: 12px;
    color: var(--text-dark);
}

.payment-note {
    background: rgba(239, 184, 16, 0.08);
    border-left: 3px solid var(--primary);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 25px;
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
}

.admin-button {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.payment-back {
    text-align: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.back-link {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    color: var(--text);
    font-size: 16px;
    font-weight: 600;
    background: rgba(239, 184, 16, 0.1);
    border: 2px solid var(--primary);
    padding: 12px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: #000;
    background: var(--primary);
    transform: translateX(-5px);
    box-shadow: 0 10px 20px rgba(239, 184, 16, 0.3);
}

/* Gold payment specific styles */
.tariff-prices {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    justify-content: flex-start;
}

.tariff-price-rub,
.tariff-price-gold {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.tariff-price-rub::before {
    content: '';
}

.tariff-price-gold::before {
    content: '';
}

.pricing-features {
    list-style: none;
    margin: 20px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pricing-feature {
    display: flex;
    padding: 5px 0 5px 30px;
    font-size: 14px;
    color: var(--text-dark);
    position: relative;
    text-align: center;
    align-content: center;
    justify-content: center;
    padding-right: 10%;
}



.gold-instruction {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid var(--border);
    text-align: center;
}

.gold-instruction-icon {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 15px;
}

.gold-instruction-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.gold-instruction-text {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 15px;
}

.gold-instruction-highlight {
    background: rgba(239, 184, 16, 0.1);
    border-left: 3px solid var(--primary);
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--text);
    margin-bottom: 15px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .payment-rub-page, .payment-gold-page {
        padding: 80px 0 30px;
    }

    .payment-header h1 {
        font-size: 32px;
    }

    .payment-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .card-number {
        font-size: clamp(14px, 3.5vw, 18px);
        letter-spacing: clamp(0.5px, 0.3vw, 2px);
        flex-direction: row;
        gap: 8px;
        flex-wrap: nowrap;
    }

    .card-number-text {
        font-size: clamp(14px, 3.5vw, 18px);
    }

    .copy-btn {
        font-size: 14px;
        padding: 6px 10px;
        min-width: 40px;
        min-height: 40px;
        flex-shrink: 0;
    }

    .price-amount {
        font-size: 55px;
    }
}

/* ===== ГЕНЕРАТОР ССЫЛОК - ПОЛНЫЙ ПЕРЕДЕЛКА ===== */

.gen-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 0;
    text-align: center;
}

.gen-header {
    margin-bottom: 50px;
}

.gen-title {
    font-size: 44px;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.gen-subtitle {
    font-size: 15px;
    color: var(--text-dark);
}

.gen-main {
    background: rgba(0, 0, 0, 0.15);
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 45px 30px;
    margin-bottom: 60px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* Кнопка генерации */
.btn-gen-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #000;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(239, 184, 16, 0.3);
    margin-bottom: 30px;
}

.btn-gen-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(239, 184, 16, 0.4);
}

.btn-gen-main:active {
    transform: translateY(0);
}

.btn-gen-main i {
    font-size: 18px;
}

/* Состояние загрузки */
.gen-state-loading {
    text-align: center;
    padding: 30px 0;
}

.gen-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(239, 184, 16, 0.15);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

.gen-state-loading p {
    font-size: 13px;
    color: var(--text-dark);
    margin: 0;
}

/* Состояние результата */
.gen-state-result {
    animation: slideUp 0.3s ease;
}

.gen-result-field {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 12px;
}

.gen-result-input {
    flex: 1;
    padding: 12px 14px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid var(--primary);
    border-radius: 10px;
    color: var(--primary);
    font-size: 11px;
    font-family: 'Courier New', monospace;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.gen-result-input:focus {
    outline: none;
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 3px rgba(239, 184, 16, 0.15);
}

.btn-copy-sm {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border: none;
    border-radius: 10px;
    color: #000;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.btn-copy-sm:hover {
    background: var(--accent);
    transform: scale(1.08);
}

.btn-copy-sm:active {
    transform: scale(0.95);
}

.gen-copy-success {
    font-size: 12px;
    color: #4CAF50;
    font-weight: 600;
    animation: slideUp 0.3s ease;
}

/* Инструкция */
.gen-instruction {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.gen-instr-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    max-width: 140px;
}

.gen-instr-num {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(239, 184, 16, 0.3);
}

.gen-instr-step h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

.gen-instr-step p {
    font-size: 12px;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
}

.gen-instr-arrow {
    font-size: 20px;
    color: var(--primary);
    opacity: 0.6;
    font-weight: 700;
}

@media (max-width: 768px) {
    .gen-instruction {
        gap: 10px;
    }

    .gen-instr-step {
        gap: 8px;
        max-width: 120px;
    }

    .gen-instr-num {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .gen-instr-step h4 {
        font-size: 13px;
    }

    .gen-instr-step p {
        font-size: 11px;
    }

    .gen-instr-arrow {
        font-size: 16px;
    }
}

/* ===== TOKENS PAGE ===== */
.tokens-page {
    min-height: 100vh;
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--bg) 0%, var(--bg-darker) 100%);
    position: relative;
}

.tokens-container {
    position: relative;
    z-index: 2;
}

.tokens-header {
    text-align: center;
    margin-bottom: 60px;
}

.tokens-title {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 20px 0;
    letter-spacing: -1px;
}

.tokens-subtitle {
    font-size: 16px;
    color: var(--text-dark);
    margin: 0;
    font-weight: 500;
}

.tokens-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.token-card {
    background: linear-gradient(135deg, rgba(239, 184, 16, 0.03) 0%, rgba(255, 87, 34, 0.03) 100%);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.token-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.5s ease;
}

.token-card:hover {
    box-shadow: 0 15px 40px rgba(239, 184, 16, 0.1), inset 0 0 20px rgba(239, 184, 16, 0.02);
}

.token-card:hover::before {
    left: 100%;
}

.token-field {
    display: flex;
    gap: 12px;
    align-items: center;
}

.token-input {
    flex: 1;
    background: rgba(0, 0, 0, 0.4);
    border: none;
    color: var(--text);
    padding: 14px 16px;
    border-radius: 10px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    font-weight: 500;
    word-break: break-all;
    letter-spacing: 0.5px;
}

.token-input:focus {
    outline: none;
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 20px rgba(239, 184, 16, 0.4), inset 0 0 10px rgba(239, 184, 16, 0.1);
}

.btn-copy-token {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border: none;
    color: #000;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 6px 15px rgba(239, 184, 16, 0.15);
    position: relative;
    opacity: 0.9;
}

.btn-copy-token:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 10px 25px rgba(239, 184, 16, 0.25);
    opacity: 1;
}

.btn-copy-token:active {
    transform: scale(0.95);
}

.btn-copy-token.copied {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
}

/* Стили для карточек с данными о ссылках */
.token-link-info {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.token-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.token-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 500;
}

.token-value {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
}

.total-tokens-info {
    background: linear-gradient(135deg, rgba(239, 184, 16, 0.1) 0%, rgba(255, 87, 34, 0.1) 100%);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
    border: 1px solid rgba(239, 184, 16, 0.2);
}

.total-tokens-info p {
    margin: 0;
    font-size: 18px;
    color: var(--text);
}

.total-tokens-info strong {
    color: var(--primary);
}

.empty-message {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(239, 184, 16, 0.05) 0%, rgba(255, 87, 34, 0.05) 100%);
    border-radius: 16px;
    border: 2px dashed rgba(239, 184, 16, 0.3);
}

.empty-message p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .tokens-title {
        font-size: 46px;
    }

    .tokens-subtitle {
        font-size: 14px;
    }

    .tokens-grid {
        gap: 16px;
        max-width: 100%;
    }

    .token-card {
        padding: 18px;
    }

    .token-input {
        font-size: 13px;
        padding: 12px 14px;
    }

    .btn-copy-token {
        width: 44px;
        height: 44px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .tokens-page {
        padding: 100px 0 40px;
    }

    .tokens-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .tokens-subtitle {
        font-size: 13px;
    }

    .tokens-grid {
        gap: 14px;
    }

    .token-card {
        padding: 14px;
    }

    .token-input {
        font-size: 12px;
        padding: 10px 12px;
    }

    .btn-copy-token {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/* ===== DOWNLOAD PAGE ===== */
.download-page {
    min-height: 100vh;
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--bg) 0%, var(--bg-darker) 100%);
    position: relative;
}

.download-container {
    position: relative;
    z-index: 2;
}

.download-header {
    text-align: center;
    margin-bottom: 50px;
}

.download-title {
    font-size: 48px;
    padding-top: 40px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 20px 0;
    letter-spacing: -1px;
}

.download-subtitle {
    font-size: 16px;
    color: var(--text-dark);
    margin: 0;
    font-weight: 500;
}

.download-main {
    max-width: 600px;
    margin: 0 auto 50px;
}

/* Сетка карточек игр для скачивания */
.download-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto 50px;
}

.download-game-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.download-game-card:hover {
    transform: translateY(-5px);
    border-color: rgba(239, 184, 16, 0.3);
    box-shadow: 0 10px 30px rgba(239, 184, 16, 0.15);
}

.download-game-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #000;
    box-shadow: 0 8px 20px rgba(239, 184, 16, 0.3);
}

.download-game-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

.btn-download-game {
    width: 100%;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #000;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(239, 184, 16, 0.25);
}

.btn-download-game:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 184, 16, 0.35);
}

.btn-download-game:active:not(:disabled) {
    transform: translateY(0);
}

.btn-download-game:disabled {
    background: rgba(100, 100, 100, 0.3);
    color: rgba(255, 255, 255, 0.4);
    cursor: not-allowed;
    box-shadow: none;
}

.btn-download-game i {
    font-size: 18px;
}

.download-game-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.download-game-info small {
    font-size: 13px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.download-game-info i {
    color: var(--primary);
}

.btn-download-main {
    width: 100%;
    padding: 24px;
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #000;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(239, 184, 16, 0.25);
}

.btn-download-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(239, 184, 16, 0.35);
}

.btn-download-main:active {
    transform: translateY(0);
}

.btn-download-main i {
    font-size: 22px;
}

.download-state-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
}

.download-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(239, 184, 16, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.download-state-loading p {
    font-size: 16px;
    color: var(--text-dark);
    margin: 0;
    font-weight: 600;
}

.download-info {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-size: 14px;
}

.info-item i {
    color: var(--primary);
    font-size: 16px;
}

.download-instruction {
    max-width: 800px;
    margin: 60px auto;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px;
}

.download-instruction h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 30px 0;
    text-align: center;
}

.instruction-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.instr-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.instr-num {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(239, 184, 16, 0.3);
}

.instr-step h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

.instr-step p {
    font-size: 13px;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.5;
}

.download-requirements {
    max-width: 500px;
    margin: 60px auto 0;
    background: linear-gradient(135deg, rgba(239, 184, 16, 0.08) 0%, rgba(255, 87, 34, 0.08) 100%);
    border-radius: 16px;
    padding: 30px;
}

.download-requirements h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 20px 0;
    text-align: center;
}

.requirements-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.requirements-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
}

.requirements-list i {
    color: var(--primary);
    font-size: 18px;
}

@media (max-width: 768px) {
    .download-page {
        padding: 100px 0 40px;
    }

    .download-title {
        font-size: 36px;
    }

    .download-subtitle {
        font-size: 14px;
    }

    .btn-download-main {
        padding: 18px;
        font-size: 16px;
        gap: 10px;
    }

    .btn-download-main i {
        font-size: 18px;
    }

    .download-info {
        flex-direction: column;
        gap: 15px;
    }

    .info-item {
        justify-content: center;
    }

    .download-instruction {
        padding: 25px;
    }

    .download-instruction h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .instruction-steps {
        gap: 20px;
    }

    .instr-num {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    .instr-step h4 {
        font-size: 14px;
    }

    .instr-step p {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .download-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .download-subtitle {
        font-size: 13px;
    }

    .btn-download-main {
        padding: 16px;
        font-size: 14px;
    }

    .download-info {
        gap: 10px;
    }

    .info-item {
        font-size: 12px;
    }

    .download-instruction {
        padding: 20px;
        margin: 40px auto 0;
    }

    .download-instruction h2 {
        font-size: 18px;
    }

    .instruction-steps {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .instr-num {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .instr-step h4 {
        font-size: 13px;
    }

    .instr-step p {
        font-size: 11px;
    }

    .download-requirements {
        padding: 20px;
    }

    .download-requirements h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .requirements-list li {
        font-size: 13px;
    }
}

/* ===== ACCESS MENU MODAL ===== */
.access-menu-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.access-menu-modal.active {
    display: flex;
}

.access-menu-content {
    background-color: var(--bg-card);
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    border: 1px solid var(--primary);
    box-shadow: var(--shadow);
    position: relative;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.access-menu-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    color: var(--text);
}

.access-menu-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.access-menu-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: rgba(239, 184, 16, 0.05);
    border: 2px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text);
    text-decoration: none;
}

.access-menu-btn:hover {
    background-color: rgba(239, 184, 16, 0.15);
    border-color: var(--primary);
    transform: translateX(5px);
}

.access-menu-icon {
    font-size: 28px;
    color: var(--primary);
    width: 40px;
    text-align: center;
}

.access-menu-text {
    flex: 1;
}

.access-menu-name {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 3px;
}

.access-menu-desc {
    font-size: 13px;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .access-menu-content {
        padding: 25px;
        width: 90%;
    }

    .access-menu-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .access-menu-btn {
        padding: 16px;
        gap: 12px;
    }

    .access-menu-icon {
        font-size: 24px;
    }

    .access-menu-name {
        font-size: 15px;
    }

    .access-menu-desc {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .access-menu-content {
        padding: 20px;
        width: 90%;
    }

    .access-menu-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .access-menu-btn {
        padding: 14px;
        gap: 10px;
    }

    .access-menu-icon {
        font-size: 20px;
        min-width: 30px;
    }

    .access-menu-name {
        font-size: 14px;
    }

    .access-menu-desc {
        font-size: 11px;
    }
}

/* Скрытие "Ввести ключ" при активации */
#enter-key-nav {
    display: flex !important;
}

body.activated #enter-key-nav {
    display: none !important;
}

/* Скрытие премиум ссылок по умолчанию */
[data-premium="true"] {
    display: none !important;
}

body.activated [data-premium="true"] {
    display: flex !important;
}
