/* ========== Основные стили ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8b5cf6;
    --secondary-color: #06b6d4;
    --accent-color: #ec4899;
    --bg-dark: #0a0a0f;
    --bg-card: rgba(17, 24, 39, 0.8);
    --text-primary: #f9fafb;
    --text-secondary: #9ca3af;
    --border-color: rgba(139, 92, 246, 0.3);
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: radial-gradient(ellipse at 60% 45%, #0d0d1f 0%, #0a0014 60%, #000000 100%);
    background-attachment: fixed;
    min-height: 100vh;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* ========== ИСПРАВЛЕННЫЙ фон с черной дырой (НЕ СКРОЛЛИТСЯ) ========== */
.black-hole-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -10;  /* Было -1, теперь -10 */
    pointer-events: none;
    background: none;
}

/* Центральное ядро черной дыры */
.black-hole-bg::before {
    content: '';
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 35%, 
            rgba(0, 0, 0, 1) 0%,
            rgba(5, 0, 10, 0.98) 30%,
            rgba(15, 0, 25, 0.95) 60%,
            rgba(25, 0, 40, 0.8) 80%,
            transparent 100%);
    box-shadow:
        0 0 40px 15px rgba(0, 0, 0, 0.9) inset,
        0 0 60px 20px rgba(10, 0, 20, 0.8),
        0 0 100px 30px rgba(30, 0, 50, 0.5);
    animation: glowhole 14s ease-in-out infinite;
    z-index: -7;  /* Было 3, теперь -7 */
}

/* Аккреционный диск */
.black-hole-bg::after {
    content: '';
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotateX(75deg);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background:
        radial-gradient(ellipse at center,
            transparent 0%,
            transparent 30%,
            rgba(255, 100, 50, 0.15) 35%,
            rgba(255, 120, 30, 0.25) 40%,
            rgba(200, 80, 255, 0.35) 45%,
            rgba(100, 50, 255, 0.4) 50%,
            rgba(50, 100, 255, 0.35) 55%,
            rgba(30, 150, 255, 0.25) 60%,
            rgba(20, 180, 255, 0.15) 65%,
            transparent 70%);
    box-shadow:
        0 0 80px 20px rgba(139, 92, 246, 0.3),
        0 0 120px 40px rgba(79, 27, 221, 0.2),
        0 0 60px 15px rgba(236, 72, 153, 0.2) inset;
    animation: rotateAccretionDisk 25s linear infinite;
    z-index: -9;  /* Было 1, теперь -9 */
}

/* Звездное поле */
.stars {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: -10;  /* Уже было -1, теперь -10 */
    pointer-events: none;
}

.star {
    position: absolute;
    border-radius: 50%;
    background: #fff;
    width: 2px;
    height: 2px;
    opacity: 0.6;
    animation: twinkle 3s infinite ease-in-out;
    box-shadow: 0 0 2px 1px rgba(255, 255, 255, 0.3);
}

/* Гравитационное линзирование (НЕ СКРОЛЛИТСЯ) */
.gravitational-lensing {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 3px solid transparent;
    background:
        radial-gradient(circle,
            transparent 45%,
            rgba(255, 180, 100, 0.4) 48%,
            rgba(255, 150, 80, 0.6) 50%,
            rgba(255, 180, 100, 0.4) 52%,
            transparent 55%);
    box-shadow:
        0 0 30px 5px rgba(255, 200, 150, 0.5),
        0 0 60px 15px rgba(255, 150, 100, 0.3),
        0 0 20px 3px rgba(255, 220, 180, 0.6) inset;
    animation: pulseGlow 8s ease-in-out infinite;
    z-index: -8;  /* Было 2, теперь -8 */
    pointer-events: none;
}

/* Внутренний аккреционный диск (НЕ СКРОЛЛИТСЯ) */
.inner-accretion {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotateX(75deg);
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background:
        radial-gradient(ellipse at center,
            transparent 0%,
            transparent 40%,
            rgba(255, 60, 30, 0.3) 45%,
            rgba(255, 100, 50, 0.5) 50%,
            rgba(255, 80, 40, 0.4) 55%,
            rgba(255, 60, 30, 0.2) 60%,
            transparent 65%);
    box-shadow:
        0 0 50px 10px rgba(255, 100, 50, 0.4) inset;
    animation: rotateAccretionDisk 12s linear infinite reverse;
    z-index: -8;  /* Было 2, теперь -8 */
    pointer-events: none;
}

/* Эффект турбулентности в диске (НЕ СКРОЛЛИТСЯ) */
.disk-turbulence {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotateX(75deg);
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background:
        radial-gradient(ellipse at 60% 50%,
            transparent 35%,
            rgba(139, 92, 246, 0.2) 45%,
            transparent 50%),
        radial-gradient(ellipse at 40% 50%,
            transparent 35%,
            rgba(236, 72, 153, 0.2) 45%,
            transparent 50%);
    animation: rotateTurbulence 18s linear infinite;
    z-index: -9;  /* Было 1, теперь -9 */
    pointer-events: none;
    filter: blur(8px);
}

/* Анимации */
@keyframes twinkle {
    0%, 100% {
        opacity: 0.2;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes rotateAccretionDisk {
    from {
        transform: translate(-50%, -50%) rotateX(75deg) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotateX(75deg) rotate(360deg);
    }
}

@keyframes rotateTurbulence {
    from {
        transform: translate(-50%, -50%) rotateX(75deg) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotateX(75deg) rotate(360deg);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

@keyframes glowhole {
    0%, 100% {
        filter: blur(20px) brightness(1);
        box-shadow: 
            0 0 40px 15px rgba(0, 0, 0, 0.9) inset,
            0 0 60px 20px rgba(10, 0, 20, 0.8),
            0 0 100px 30px rgba(30, 0, 50, 0.5);
    }
    50% {
        filter: blur(25px) brightness(1.2);
        box-shadow: 
            0 0 50px 20px rgba(0, 0, 0, 0.95) inset,
            0 0 80px 25px rgba(10, 0, 20, 0.9),
            0 0 120px 40px rgba(30, 0, 50, 0.6);
    }
}

/* ========== Хедер ========== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

/* ========== Секция Hero ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 4rem 0;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== Кнопки ========== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: rgba(139, 92, 246, 0.1);
    transform: translateY(-2px);
}

.btn-download {
    background: rgba(139, 92, 246, 0.2);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
}

.btn-download:hover {
    background: var(--primary-color);
    color: white;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    background: rgba(6, 182, 212, 0.2);
    color: var(--secondary-color);
}

.btn-small:hover {
    background: var(--secondary-color);
    color: white;
}

/* ========== Секции ========== */
.section {
    padding: 5rem 0;
    position: relative;
}

.section-dark {
    background: rgba(17, 24, 39, 0.5);
    backdrop-filter: blur(10px);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mt-5 {
    margin-top: 4rem;
}

/* ========== Карточки ========== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.card-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.card-small {
    padding: 1.5rem;
}

.card-small h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1.1rem;
}

/* ========== Аккордеон ========== */
.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: var(--primary-color);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: rgba(139, 92, 246, 0.1);
}

.accordion-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.accordion-content ul {
    list-style: none;
    padding-left: 0;
}

.accordion-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.accordion-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* ========== FAQ ========== */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.2);
}

.faq-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.faq-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.faq-list {
    list-style: none;
    padding: 0;
}

.faq-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.faq-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.info-box,
.warning-box {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

.info-box {
    background: rgba(6, 182, 212, 0.1);
    border-left: 3px solid var(--secondary-color);
    color: var(--text-secondary);
}

.warning-box {
    background: rgba(236, 72, 153, 0.1);
    border-left: 3px solid var(--accent-color);
    color: var(--text-secondary);
}

code {
    background: rgba(139, 92, 246, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: var(--primary-color);
}

/* ========== Футер ========== */
.footer {
    background: rgba(17, 24, 39, 0.8);
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
    text-align: center;
    margin-top: 4rem;
}

.footer p {
    color: var(--text-secondary);
}

/* ========== Адаптивность ========== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .nav {
        gap: 1rem;
    }

    .cards-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-title {
        font-size: 2rem;
    }
}

/* ========== Видеоплеер ========== */
.video-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.video-container:hover {
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 соотношение */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.video-description {
    text-align: center;
}

.video-description h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-description p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.video-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(139, 92, 246, 0.2);
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 1.5rem;
}

.feature-item span:last-child {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Адаптивность для видео */
@media (max-width: 768px) {
    .video-container {
        padding: 1.5rem;
    }
    
    .video-description h3 {
        font-size: 1.5rem;
    }
    
    .video-features {
        grid-template-columns: 1fr;
    }
}

/* ========== Футер ========== */
.footer {
    background: rgba(17, 24, 39, 0.9);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links h4,
.footer-social h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 10px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.social-link:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.3);
}

.social-link.telegram:hover {
    background: rgba(0, 136, 204, 0.2);
    border-color: #0088cc;
    color: #0088cc;
}

.social-link.discord:hover {
    background: rgba(88, 101, 242, 0.2);
    border-color: #5865f2;
    color: #5865f2;
}

.social-link.funpay:hover {
    background: rgba(255, 165, 0, 0.2);
    border-color: #ffa500;
    color: #ffa500;
}

.social-link svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Адаптивность футера */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        max-width: 100%;
    }
}
/* ========== Переключатель языков ========== */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    background: rgba(139, 92, 246, 0.1);
    padding: 0.25rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.lang-btn {
    padding: 0.5rem 1rem;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.lang-btn.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .header .container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .language-switcher {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }
}
/* ========== Блок бесплатных ключей ========== */
.free-keys-banner {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(6, 182, 212, 0.15));
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% {
        border-color: rgba(139, 92, 246, 0.3);
        box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
    }
    50% {
        border-color: rgba(6, 182, 212, 0.5);
        box-shadow: 0 20px 60px rgba(6, 182, 212, 0.4);
    }
}

.banner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.banner-header h2 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.publish-time {
    color: var(--text-secondary);
    font-size: 0.9rem;
    background: rgba(139, 92, 246, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.keys-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.key-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(17, 24, 39, 0.9);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.key-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.key-code {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 1px;
    flex: 1;
}

.btn-copy {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-left: 1rem;
}

.btn-copy:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(6, 182, 212, 0.4);
}

.btn-copy:active {
    transform: scale(0.95);
}

.keys-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

/* Адаптивность */
@media (max-width: 768px) {
    .free-keys-banner {
        padding: 1.5rem;
    }
    
    .banner-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .banner-header h2 {
        font-size: 1.5rem;
    }
    
    .keys-container {
        grid-template-columns: 1fr;
    }
    
    .key-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-copy {
        width: 100%;
        margin-left: 0;
    }
}

/* ========== Убираем пустое пространство между hero и блоком ключей ========== */

/* Убираем отступы у hero секции */
.hero {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* Уменьшаем отступы у всех секций */
.section {
    padding: 2rem 0 !important;
}

/* Минимальный отступ для блока с ключами */
#free-keys {
    padding-top: 1.5rem !important;
    margin-top: 0 !important;
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .section {
        padding: 1.5rem 0 !important;
    }
    
    #free-keys {
        padding-top: 1rem !important;
    }
}

/* ============================================
   Enhanced Hero Subtitle Styles
   ============================================ */

.hero-subtitle-enhanced {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.subtitle-line {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.6;
    animation: slideInLeft 0.8s ease backwards;
}

.subtitle-line:nth-child(1) { animation-delay: 0.2s; }
.subtitle-line:nth-child(2) { animation-delay: 0.4s; }
.subtitle-line:nth-child(3) { animation-delay: 0.6s; }
.subtitle-line:nth-child(4) { animation-delay: 0.8s; }

/* Подсветка отдельных слов */
.highlight-word {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    position: relative;
    display: inline-block;
    animation: glowPulse 3s ease-in-out infinite;
}

/* Эффект свечения для первой строки */
.glow-text {
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.3),
                 0 0 40px rgba(139, 92, 246, 0.2);
}

/* Градиентный текст */
.gradient-text {
    background: linear-gradient(135deg, #8b5cf6, #06b6d4, #ec4899);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 1.35rem;
    animation: gradientShift 4s ease infinite;
}

/* Пульсирующий текст для вопроса */
.pulse-text {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.3rem;
    animation: colorPulse 2s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(236, 72, 153, 0.5);
}

.subtitle-question {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.emphasis-text {
    color: var(--text-primary);
    font-weight: 500;
}

/* Анимации */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes glowPulse {
    0%, 100% {
        filter: brightness(1);
        text-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
    }
    50% {
        filter: brightness(1.2);
        text-shadow: 0 0 20px rgba(139, 92, 246, 0.6),
                     0 0 30px rgba(6, 182, 212, 0.4);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes colorPulse {
    0%, 100% {
        color: var(--accent-color);
        text-shadow: 0 0 10px rgba(236, 72, 153, 0.5);
    }
    50% {
        color: #f472b6;
        text-shadow: 0 0 20px rgba(236, 72, 153, 0.8),
                     0 0 30px rgba(236, 72, 153, 0.5);
    }
}

/* ============================================
   Warning Banner Styles - Enhanced
   ============================================ */

.warning-banner {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.25), rgba(220, 38, 38, 0.25));
    border: 2px solid rgba(239, 68, 68, 0.6);
    border-radius: 16px;
    padding: 1.75rem 2.25rem;
    margin-bottom: 2.5rem;
    text-align: left;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.9;
    letter-spacing: 0.3px;
    box-shadow: 0 10px 40px rgba(220, 38, 38, 0.4),
                0 0 25px rgba(239, 68, 68, 0.25) inset,
                0 5px 15px rgba(0, 0, 0, 0.3);
    animation: warningPulse 3s ease-in-out infinite, fadeInUp 1s ease 0.4s backwards;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.warning-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(220, 38, 38, 0.5),
                0 0 30px rgba(239, 68, 68, 0.3) inset,
                0 8px 20px rgba(0, 0, 0, 0.4);
    border-color: rgba(239, 68, 68, 0.8);
}

.warning-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: warningShine 3s infinite;
}

/* Декоративный emoji символ на фоне */
.warning-banner::after {
    content: '⚠️';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    opacity: 0.15;
    animation: warningIconPulse 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes warningIconPulse {
    0%, 100% {
        opacity: 0.1;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 0.2;
        transform: translateY(-50%) scale(1.1);
    }
}

@keyframes warningPulse {
    0%, 100% {
        border-color: rgba(239, 68, 68, 0.6);
        box-shadow: 0 10px 40px rgba(220, 38, 38, 0.4),
                    0 0 25px rgba(239, 68, 68, 0.25) inset,
                    0 5px 15px rgba(0, 0, 0, 0.3);
    }
    50% {
        border-color: rgba(239, 68, 68, 0.9);
        box-shadow: 0 15px 50px rgba(220, 38, 38, 0.6),
                    0 0 35px rgba(239, 68, 68, 0.35) inset,
                    0 8px 20px rgba(0, 0, 0, 0.4);
    }
}

@keyframes warningShine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

/* Адаптивность для планшетов */
@media (max-width: 768px) {
    .warning-banner {
        padding: 1.5rem 1.75rem;
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .warning-banner::after {
        font-size: 2.5rem;
        right: 1rem;
    }
}

/* Адаптивность для мобильных */
@media (max-width: 480px) {
    .warning-banner {
        padding: 1.25rem 1.5rem;
        font-size: 0.92rem;
        border-radius: 12px;
    }

    .warning-banner::after {
        display: none; /* Скрываем большой emoji на маленьких экранах */
    }
}

/* ✅ ИСПРАВЛЕНИЕ: Правильное позиционирование блока предупреждения */
.warning-moved-down {
    margin-top: 3rem !important;  /* Отступ сверху после кнопок */
    margin-bottom: 2rem !important; /* Отступ снизу */
    max-width: 800px;              /* Ограничение ширины как у hero-content */
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .warning-moved-down {
        margin-top: 2rem !important;
        margin-bottom: 1.5rem !important;
        padding: 1.25rem 1.5rem !important; /* Меньше отступов на мобильных */
    }
}