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

:root {
    --asnxk-bg: #050510;
    --asnxk-gradient-start: #2AF6F9;
    --asnxk-gradient-end: #00cccc;
    --asnxk-accent: #4BD2FF;
    --asnxk-text: #ffffff;
    --asnxk-text-secondary: #b0b0b0;
    --asnxk-shadow-primary: rgba(42, 246, 249, 0.4);
    --asnxk-shadow-accent: rgba(75, 210, 255, 0.4);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--asnxk-bg);
    color: var(--asnxk-text);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ============================================
   Контейнеры
   ============================================ */
.asnxk-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .asnxk-container {
        padding: 0 40px;
    }
}

@media (min-width: 1024px) {
    .asnxk-container {
        padding: 0 60px;
    }
}

/* ============================================
   Верхнее меню (Header)
   ============================================ */
.asnxk-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(5, 5, 16, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(42, 246, 249, 0.2);
}

.asnxk-header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.asnxk-logo img {
    height: 40px;
    width: auto;
}

.asnxk-top-nav {
    display: none;
    gap: 30px;
}

@media (min-width: 1024px) {
    .asnxk-top-nav {
        display: flex;
    }
}

.asnxk-nav-link {
    color: var(--asnxk-text);
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.asnxk-nav-link:hover {
    color: var(--asnxk-accent);
}

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

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

.asnxk-nav-chevron {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.asnxk-nav-dropdown:hover .asnxk-nav-chevron {
    transform: rotate(180deg);
}

.asnxk-nav-dropdown {
    position: relative;
}

.asnxk-nav-dropdown:hover .asnxk-dropdown-menu,
.asnxk-dropdown-menu:hover {
    display: block;
    opacity: 1;
    visibility: visible;
}

.asnxk-dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background: rgba(5, 5, 16, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(42, 246, 249, 0.2);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 180px;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.asnxk-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 0;
    right: 0;
    height: 5px;
    background: transparent;
}

.asnxk-dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--asnxk-text);
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.asnxk-dropdown-item:hover {
    background: rgba(42, 246, 249, 0.1);
    color: var(--asnxk-accent);
    padding-left: 25px;
}

.asnxk-header-buttons {
    display: none;
    gap: 15px;
}

@media (min-width: 768px) {
    .asnxk-header-buttons {
        display: flex;
    }
}

.asnxk-burger-menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    width: 30px;
    height: 30px;
    justify-content: center;
}

@media (min-width: 1024px) {
    .asnxk-burger-menu {
        display: none;
    }
}

.asnxk-burger-menu span {
    width: 100%;
    height: 2px;
    background: var(--asnxk-accent);
    transition: all 0.3s ease;
}

.asnxk-burger-menu[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.asnxk-burger-menu[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.asnxk-burger-menu[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   Боковое меню (Sidebar)
   ============================================ */
.asnxk-sidebar {
    position: fixed;
    left: -280px;
    top: 0;
    width: 280px;
    height: 100vh;
    background: rgba(5, 5, 16, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    transition: left 0.3s ease;
    border-right: 1px solid rgba(42, 246, 249, 0.2);
    padding-top: 80px;
}

.asnxk-sidebar.active {
    left: 0;
}

.asnxk-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
}

.asnxk-sidebar-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    color: var(--asnxk-text);
    border-radius: 8px;
    transition: all 0.3s ease;
    background: transparent;
}

.asnxk-sidebar-link:hover {
    background: rgba(42, 246, 249, 0.1);
    color: var(--asnxk-accent);
    transform: translateX(5px);
    box-shadow: 0 4px 12px var(--asnxk-shadow-primary);
}

.asnxk-sidebar-link svg {
    flex-shrink: 0;
}

/* ============================================
   Кнопки
   ============================================ */
.asnxk-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.asnxk-btn-primary {
    background: linear-gradient(135deg, var(--asnxk-gradient-start), var(--asnxk-gradient-end));
    color: var(--asnxk-bg);
    box-shadow: 0 8px 20px var(--asnxk-shadow-primary);
}

.asnxk-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px var(--asnxk-shadow-primary), 0 0 20px var(--asnxk-shadow-primary);
}

.asnxk-btn-secondary {
    background: rgba(5, 5, 16, 0.8);
    color: var(--asnxk-text);
    box-shadow: 0 8px 20px var(--asnxk-shadow-primary);
}

.asnxk-btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px var(--asnxk-shadow-accent), 0 0 20px var(--asnxk-shadow-accent);
    background: rgba(75, 210, 255, 0.1);
}

.asnxk-btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.asnxk-btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

/* ============================================
   Main контент
   ============================================ */
.asnxk-main {
    margin-top: 70px;
    width: 100%;
    overflow-x: hidden;
}

/* ============================================
   Hero блок
   ============================================ */
.asnxk-hero {
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.asnxk-hero-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 1024px) {
    .asnxk-hero-container {
        grid-template-columns: 1fr 1fr;
        padding: 0 60px;
    }
}

.asnxk-hero-content {
    z-index: 2;
}

.asnxk-hero-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--asnxk-gradient-start), var(--asnxk-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .asnxk-hero-title {
        font-size: 48px;
    }
}

@media (min-width: 1024px) {
    .asnxk-hero-title {
        font-size: 56px;
    }
}

.asnxk-hero-text {
    font-size: 18px;
    color: var(--asnxk-text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
}

.asnxk-hero-banner {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.asnxk-hero-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   Секции
   ============================================ */
.asnxk-section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    background: linear-gradient(135deg, var(--asnxk-gradient-start), var(--asnxk-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 768px) {
    .asnxk-section-title {
        font-size: 36px;
    }
}

@media (min-width: 1024px) {
    .asnxk-section-title {
        font-size: 42px;
    }
}

.asnxk-section-text {
    font-size: 16px;
    color: var(--asnxk-text-secondary);
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

@media (min-width: 768px) {
    .asnxk-section-text {
        font-size: 18px;
    }
}

/* ============================================
   Блок игр
   ============================================ */
.asnxk-games {
    padding: 80px 0;
}

.asnxk-games-category {
    margin-bottom: 60px;
}

.asnxk-category-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--asnxk-accent);
    padding-left: 20px;
    border-left: 4px solid var(--asnxk-gradient-start);
}

@media (min-width: 768px) {
    .asnxk-category-title {
        font-size: 28px;
        padding-left: 30px;
    }
}

.asnxk-games-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px auto;
    max-width: 1200px;
}

@media (min-width: 768px) {
    .asnxk-games-buttons {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (min-width: 1024px) {
    .asnxk-games-buttons {
        grid-template-columns: repeat(6, 1fr);
        gap: 20px;
    }
}

.asnxk-game-category-btn {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(42, 246, 249, 0.2);
    position: relative;
    overflow: hidden;
}

.asnxk-game-category-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(42, 246, 249, 0.1), transparent);
    transition: left 0.5s ease;
}

.asnxk-game-category-btn:hover::before {
    left: 100%;
}

.asnxk-game-category-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px var(--asnxk-shadow-primary);
    border-color: var(--asnxk-accent);
    background: rgba(255, 255, 255, 0.08);
}

.asnxk-game-category-icon {
    color: var(--asnxk-accent);
    transition: all 0.3s ease;
}

.asnxk-game-category-btn:hover .asnxk-game-category-icon {
    transform: scale(1.1);
    color: var(--asnxk-gradient-start);
}

.asnxk-game-category-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--asnxk-text);
    margin: 0;
    text-align: center;
    transition: color 0.3s ease;
}

.asnxk-game-category-btn:hover .asnxk-game-category-name {
    color: var(--asnxk-accent);
}

.asnxk-games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 0 auto;
    max-width: 1400px;
}

@media (min-width: 768px) {
    .asnxk-games-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (min-width: 1024px) {
    .asnxk-games-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 20px;
    }
}

.asnxk-game-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(42, 246, 249, 0.1);
    display: flex;
    flex-direction: column;
}

.asnxk-game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px var(--asnxk-shadow-primary);
    border-color: var(--asnxk-accent);
}

.asnxk-game-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    background: rgba(42, 246, 249, 0.05);
    flex-shrink: 0;
}

.asnxk-game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.asnxk-game-card:hover .asnxk-game-image img {
    transform: scale(1.05);
}

.asnxk-game-info {
    padding: 15px;
    display: flex;
    flex-direction: column;
    min-height: 100px;
    flex-grow: 1;
}

.asnxk-game-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--asnxk-text);
    text-align: center;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
}

.asnxk-game-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: auto;
}

.asnxk-game-buttons .asnxk-btn {
    flex: 1;
    max-width: 100px;
}

/* ============================================
   Блок бонусов и преимуществ
   ============================================ */
.asnxk-bonuses,
.asnxk-advantages {
    padding: 80px 0;
    background: rgba(42, 246, 249, 0.03);
}

.asnxk-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--asnxk-accent) transparent;
    padding: 20px 0 30px;
    margin: 0;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    width: 100%;
    max-width: 100%;
}

@media (max-width: 767px) {
    .asnxk-carousel {
        margin: 0;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .asnxk-carousel::-webkit-scrollbar {
        display: none;
    }
    
    .asnxk-carousel {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}

.asnxk-carousel::-webkit-scrollbar {
    height: 8px;
}

.asnxk-carousel::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.asnxk-carousel::-webkit-scrollbar-thumb {
    background: var(--asnxk-gradient-start);
    border-radius: 4px;
}

.asnxk-carousel-track {
    display: flex;
    gap: 25px;
    min-width: min-content;
    padding-bottom: 10px;
}

.asnxk-bonus-card,
.asnxk-advantage-card {
    min-width: 300px;
    max-width: 350px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(42, 246, 249, 0.2);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.asnxk-bonus-card:hover,
.asnxk-advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px var(--asnxk-shadow-primary);
    border-color: var(--asnxk-accent);
    background: rgba(255, 255, 255, 0.08);
}

.asnxk-bonus-title,
.asnxk-advantage-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--asnxk-accent);
}

.asnxk-bonus-text,
.asnxk-advantage-text {
    font-size: 16px;
    color: var(--asnxk-text-secondary);
    line-height: 1.7;
}

/* ============================================
   Блок зеркала
   ============================================ */
.asnxk-mirror {
    padding: 80px 0;
    text-align: center;
}

.asnxk-mirror .asnxk-section-text {
    margin-bottom: 30px;
}

/* ============================================
   Блок для текста
   ============================================ */
.asnxk-text-block {
    padding: 80px 0;
    background: var(--asnxk-bg);
}

.asnxk-text-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    color: var(--asnxk-text);
    line-height: 1.7;
}

.asnxk-text-content p {
    margin: 0 0 20px 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.asnxk-text-content p:last-child {
    margin-bottom: 0;
}

.asnxk-text-content strong {
    color: var(--asnxk-accent);
    font-weight: 600;
}

.asnxk-text-content ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.asnxk-text-content li {
    margin: 0 0 25px 0;
    padding: 0;
    position: relative;
    padding-left: 30px;
}

.asnxk-text-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--asnxk-accent);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(42, 246, 249, 0.5);
}

.asnxk-text-content li p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.asnxk-text-content li strong {
    display: block;
    margin-bottom: 8px;
    font-size: 17px;
    color: var(--asnxk-accent);
}

.asnxk-text-content li strong a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.asnxk-text-content li strong a:hover {
    color: var(--asnxk-accent);
    text-shadow: 0 0 10px rgba(42, 246, 249, 0.5);
}

.asnxk-text-content p a {
    color: var(--asnxk-accent);
    text-decoration: underline;
    transition: all 0.3s ease;
}

.asnxk-text-content p a:hover {
    color: #2AF6F9;
    text-shadow: 0 0 8px rgba(42, 246, 249, 0.6);
}

@media (max-width: 768px) {
    .asnxk-text-block {
        padding: 60px 0;
    }

    .asnxk-text-content {
        padding: 0 20px;
    }

    .asnxk-text-content p {
        font-size: 15px;
    }

    .asnxk-text-content li {
        padding-left: 25px;
        margin-bottom: 20px;
    }

    .asnxk-text-content li strong {
        font-size: 16px;
    }

    .asnxk-text-content li p {
        font-size: 14px;
    }
}

/* ============================================
   Блок провайдеров
   ============================================ */
.asnxk-providers {
    padding: 80px 0;
    background: rgba(5, 5, 16, 0.8);
}

.asnxk-provider-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(42, 246, 249, 0.1);
    aspect-ratio: 2 / 1;
    min-width: 200px;
    max-width: 200px;
    flex-shrink: 0;
}

.asnxk-provider-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--asnxk-shadow-primary);
    border-color: var(--asnxk-accent);
    background: rgba(255, 255, 255, 0.08);
}

.asnxk-provider-card img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}

.asnxk-provider-card:hover img {
    filter: brightness(1);
}

/* ============================================
   Блок FAQ
   ============================================ */
.asnxk-faq {
    padding: 80px 0;
}

.asnxk-faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.asnxk-faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(42, 246, 249, 0.2);
    transition: all 0.3s ease;
}

.asnxk-faq-item:hover {
    border-color: var(--asnxk-accent);
    box-shadow: 0 8px 20px var(--asnxk-shadow-primary);
    background: rgba(255, 255, 255, 0.08);
}

.asnxk-faq-question {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--asnxk-accent);
    line-height: 1.4;
}

.asnxk-faq-answer {
    font-size: 16px;
    color: var(--asnxk-text-secondary);
    line-height: 1.7;
    padding-top: 15px;
    border-top: 1px solid rgba(42, 246, 249, 0.2);
}

/* ============================================
   Футер
   ============================================ */
.asnxk-footer {
    background: rgba(5, 5, 16, 0.95);
    border-top: 1px solid rgba(42, 246, 249, 0.2);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.asnxk-footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.asnxk-footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .asnxk-footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .asnxk-footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.asnxk-footer-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.asnxk-footer-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--asnxk-accent);
    margin-bottom: 10px;
}

.asnxk-footer-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--asnxk-text);
    margin-bottom: 15px;
}

.asnxk-footer-text {
    font-size: 14px;
    color: var(--asnxk-text-secondary);
    line-height: 1.7;
}

.asnxk-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.asnxk-footer-links a {
    color: var(--asnxk-text-secondary);
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.asnxk-footer-links a:hover {
    color: var(--asnxk-accent);
    padding-left: 10px;
}

.asnxk-footer-payment-section {
    grid-column: 1 / -1;
}

@media (min-width: 768px) {
    .asnxk-footer-payment-section {
        grid-column: 1 / -1;
    }
}

@media (min-width: 1024px) {
    .asnxk-footer-payment-section {
        grid-column: 1 / -1;
    }
}

.asnxk-footer-payment {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

@media (min-width: 768px) {
    .asnxk-footer-payment {
        flex-direction: row;
        gap: 20px;
        width: 100%;
        max-width: 100%;
    }
}

.asnxk-footer-payment img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

@media (min-width: 768px) {
    .asnxk-footer-payment img {
        flex: 1;
        width: calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
}

.asnxk-footer-payment img:hover {
    opacity: 1;
}

.asnxk-footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(42, 246, 249, 0.2);
}

.asnxk-footer-copyright {
    font-size: 14px;
    color: var(--asnxk-text-secondary);
}

/* ============================================
   Плавающие кнопки
   ============================================ */
.asnxk-floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 998;
}

.asnxk-btn-up,
.asnxk-btn-chat {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--asnxk-gradient-start), var(--asnxk-gradient-end));
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px var(--asnxk-shadow-primary);
    transition: all 0.3s ease;
    color: var(--asnxk-bg);
}

.asnxk-btn-up:hover,
.asnxk-btn-chat:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px var(--asnxk-shadow-primary), 0 0 20px var(--asnxk-shadow-primary);
}

.asnxk-btn-up {
    display: none;
}

.asnxk-btn-up.visible {
    display: flex;
}

@media (min-width: 768px) {
    .asnxk-btn-up.visible {
        display: flex;
    }
}

.asnxk-btn-chat {
    display: none;
}

@media (min-width: 768px) {
    .asnxk-btn-chat {
        display: flex;
    }
}


/* ============================================
   Адаптивность
   ============================================ */
@media (max-width: 767px) {
    .asnxk-hero {
        min-height: 500px;
        padding: 40px 0;
    }

    .asnxk-hero-title {
        font-size: 28px;
    }

    .asnxk-hero-text {
        font-size: 16px;
    }

    .asnxk-games,
    .asnxk-bonuses,
    .asnxk-advantages,
    .asnxk-mirror,
    .asnxk-providers,
    .asnxk-faq {
        padding: 60px 0;
    }

    .asnxk-section-title {
        font-size: 24px;
    }

    .asnxk-section-text {
        font-size: 14px;
    }

    .asnxk-bonus-card,
    .asnxk-advantage-card {
        min-width: 280px;
        padding: 20px;
    }

    .asnxk-floating-buttons {
        bottom: 15px;
        right: 15px;
    }

    .asnxk-btn-up,
    .asnxk-btn-chat {
        width: 45px;
        height: 45px;
    }

    .asnxk-btn-chat {
        display: none !important;
    }
}

/* ============================================
   Доступность
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

:focus-visible {
    outline: 2px solid var(--asnxk-accent);
    outline-offset: 2px;
}

/* ============================================
   Lazy loading
   ============================================ */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

