
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #134e4a 30%, #16a34a 70%, #0f172a 100%);
    min-height: 100vh;
    color: #ffffff;
    overflow-x: hidden;
}

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

.page-wrapper,
.main-content {
    max-width: 100%;
    overflow-x: hidden;
}

.hero-slider-section,
.games-section,
.content-section {
    overflow-x: hidden;
}

img, svg, video {
    max-width: 100%;
    height: auto;
}

.content-container {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.page-wrapper {
    display: flex;
    width: 100%;
    min-height: 100vh;
}


.left-sidebar {
    width: 60px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    z-index: 1000;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 15px;
}

.sidebar-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 8px 20px rgba(0,0,0,0.25);
}

.sidebar-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

.sidebar-item.active {
    background: linear-gradient(145deg, rgba(34, 197, 94, 0.25), rgba(22, 163, 74, 0.35));
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.35);
}


.sidebar-item.active::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    border-radius: 2px;
    background: linear-gradient(180deg, #22c55e, #16a34a);
    box-shadow: 0 0 10px rgba(34,197,94,0.7);
}

.sidebar-icon {
    width: 24px;
    height: 24px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.35));
}


.sidebar-item[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 58px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 23, 42, 0.95);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 8px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

.sidebar-item[data-tooltip]:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(2px);
}


.main-content {
    flex: 1;
    margin-left: 60px;
    margin-right: 0;
    min-height: 100vh;
}


.top-bar {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 15px 30px;
}

.navigation-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-section {
    display: flex;
    align-items: center;
    gap: 40px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.cactus-title {
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 2px;
}

.main-nav {
    display: flex;
    gap: 20px;
}

.nav-item {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-item.active {
    color: #ffffff;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.3), rgba(22, 163, 74, 0.4));
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.2);
}

.nav-item:hover {
    color: #ffffff;
    background: rgba(34, 197, 94, 0.15);
}

.search-section {
    flex: 1;
    max-width: 400px;
    margin: 0 30px;
}

.search-wrapper {
    position: relative;
    width: 100%;
}

.search-field {
    width: 100%;
    padding: 12px 45px 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: #ffffff;
    font-size: 14px;
    outline: none;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.search-field:focus {
    border-color: rgba(34, 197, 94, 0.6);
    background: rgba(34, 197, 94, 0.1);
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
}

.search-field::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-trigger {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    font-size: 16px;
    padding: 5px;
}

.action-section {
    display: flex;
    gap: 15px;
    align-items: center;
}

.language-selector {
    width: 30px;
    height: 20px;
}

.flag-icon {
    width: 100%;
    height: 100%;
    border-radius: 3px;
}

.action-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.secondary-btn {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.primary-btn {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #ffffff;
    font-weight: 700;
    border: none;
}

.primary-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 18px rgba(34, 197, 94, 0.4);
}


.hero-slider-section {
    padding: 30px;
}

.hero-slider-container {
    position: relative;
    margin-bottom: 40px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 30%, #8b5cf6 70%, #1e3a8a 100%);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 30%, #8b5cf6 70%, #1e3a8a 100%);
}

.hero-slide.active {
    opacity: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* заполнять контейнер полностью без рамок */
    object-position: center center;
    display: block;
    border-radius: 20px;
}

.hero-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: #22c55e;
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}


.payment-methods {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    transition: all 0.3s ease;
    padding: 8px;
}

.payment-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.payment-logo {
    max-width: 60px;
    max-height: 30px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(1.1);
    transition: all 0.3s ease;
}

.payment-logo:hover {
    filter: brightness(1.3);
    transform: scale(1.05);
}

.crypto-text {
    font-size: 20px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}


.games-section {
    padding: 30px;
}

.section-header {
    margin-bottom: 30px;
}

.section-title {
    font-size: 20px;
    font-weight: 800;
    color: #22c55e;
    text-align: left;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-subtitle {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.game-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.game-image {
    width: 100%;
    aspect-ratio: 1/1; /* квадратная ориентация */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.game-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* заполнять квадратный контейнер полностью */
    transition: transform 0.3s ease;
    border-radius: 10px;
}

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

.game-info {
    padding: 15px;
    text-align: center;
}

.game-provider {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.game-name {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
}


.game-tabs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-navigation {
    display: flex;
    gap: 20px;
}

.tab-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.tab-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}


.new-games-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.games-matrix {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}


.game-tile {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    aspect-ratio: 3/4;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.game-tile:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(139, 92, 246, 0.4);
}

.tile-image {
    width: 100%;
    height: 70%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-tile:hover .tile-image {
    transform: scale(1.05);
}

.tile-title {
    padding: 8px 10px;
    font-size: 11px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    line-height: 1.2;
    height: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
}

.tile-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    font-size: 9px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.4);
}



.games-matrix:nth-child(1) .game-tile {
    animation-delay: 0.1s;
}

.games-matrix:nth-child(2) .game-tile {
    animation-delay: 0.2s;
}

.games-matrix:nth-child(3) .game-tile {
    animation-delay: 0.3s;
}

.games-matrix:nth-child(4) .game-tile {
    animation-delay: 0.4s;
}

.games-matrix .game-tile:nth-child(1) { animation-delay: inherit; }
.games-matrix .game-tile:nth-child(2) { animation-delay: calc(var(--base-delay, 0.1s) + 0.05s); }
.games-matrix .game-tile:nth-child(3) { animation-delay: calc(var(--base-delay, 0.1s) + 0.1s); }
.games-matrix .game-tile:nth-child(4) { animation-delay: calc(var(--base-delay, 0.1s) + 0.15s); }
.games-matrix .game-tile:nth-child(5) { animation-delay: calc(var(--base-delay, 0.1s) + 0.2s); }
.games-matrix .game-tile:nth-child(6) { animation-delay: calc(var(--base-delay, 0.1s) + 0.25s); }

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




.hidden-content {
    display: none;
}


@media (max-width: 1200px) {
    .hero-slider {
        height: 240px;
    }
    
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* .game-image использует aspect-ratio, высота не нужна */
    
    .games-matrix {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
    }
    .page-wrapper,
    .main-content,
    .hero-slider-section,
    .games-section,
    .content-section {
        max-width: 100%;
        overflow-x: hidden;
    }
    .main-content {
        margin-left: 0;
    }
    
    .left-sidebar {
        display: none;
    }
    
    .navigation-wrapper {
        flex-wrap: nowrap;
        gap: 10px;
        justify-content: space-between;
        align-items: center;
    }
    
    
    .main-nav,
    .search-section,
    .language-selector,
    .cactus-title,
    .secondary-btn {
        display: none !important;
    }

    /* keep login button visible on mobile */
    .login-btn {
        display: inline-flex !important;
    }
    
    .brand-section {
        gap: 8px;
    }
    
    .cactus-logo {
        height: 28px;
    }
    
    .action-section {
        margin-left: auto;
        gap: 10px;
    }
    
    .primary-btn {
        padding: 9px 14px;
        border-radius: 18px;
        font-size: 13px;
    }
    
    .search-section {
        order: 3;
        width: 100%;
        margin: 0;
        max-width: none;
    }
    
    .hero-slider {
        height: 200px;
    }
    
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    /* .game-image использует aspect-ratio, высота не нужна */
    
    .games-matrix {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .game-tile {
        aspect-ratio: 3/4;
    }
    
    .tile-title {
        font-size: 10px;
        padding: 6px 8px;
    }
    
    .tile-badge {
        font-size: 8px;
        padding: 2px 6px;
        top: 6px;
        right: 6px;
    }
    
    .game-tabs {
        flex-direction: column;
        gap: 15px;
    }
    
    .payment-methods {
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .top-bar {
        padding: 15px 20px;
    }
    
    .hero-slider-section,
    .games-section {
        padding: 20px;
    }
    
    .hero-slider {
        height: 160px;
    }
    
    
    .cactus-title {
        font-size: 20px;
    }
    
    .cactus-logo {
        height: 30px;
    }
    
    .action-btn {
        padding: 8px 15px;
        font-size: 13px;
    }
    
    .brand-logo {
        gap: 10px;
    }
}


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

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}


::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Content Section Styles */
.content-section {
    padding: 40px 30px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.content-container {
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.7;
}

.content-container h1 {
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 25px;
    text-align: center;
    background: linear-gradient(135deg, #8b5cf6, #ec4899, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.content-container h2 {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin: 35px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(139, 92, 246, 0.3);
    position: relative;
}

.content-container h2::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #8b5cf6, #ec4899);
    border-radius: 1px;
}

.content-container h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 25px 0 15px 0;
    position: relative;
    padding-left: 20px;
}

.content-container h3::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #8b5cf6;
    font-size: 14px;
}

.content-container p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 18px;
    text-align: justify;
}

.content-container strong {
    color: #ffffff;
    font-weight: 700;
}

/* Games Table Styles */
.games-table-wrapper {
    margin: 30px 0;
    overflow-x: auto;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.games-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.games-table thead {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(168, 85, 247, 0.3));
}

.games-table th {
    padding: 15px 12px;
    text-align: left;
    font-weight: 700;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.games-table td {
    padding: 12px;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.games-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.games-table tbody tr:last-child td {
    border-bottom: none;
}

/* Bonus List Styles */
.bonus-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.bonus-list li {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bonus-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #8b5cf6, #ec4899);
}

.bonus-list li:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.2);
}

/* Payment Methods List Styles */
.payment-methods-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
}

.payment-methods-list li {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 15px;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    position: relative;
}

.payment-methods-list li::before {
    content: '💳';
    margin-right: 8px;
    font-size: 16px;
}

.payment-methods-list li:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(139, 92, 246, 0.3);
}

/* CTA Text Styles */
.cta-text {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

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

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* FAQ Section Styles */
.faq-section {
    margin-top: 30px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.faq-item h3 {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(168, 85, 247, 0.2));
    margin: 0;
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.faq-item h3::before {
    content: '❓';
    margin-right: 10px;
    font-size: 14px;
}

.faq-item p {
    padding: 18px 20px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Responsive Design for Content Section */
@media (max-width: 1200px) {
    .content-section {
        padding: 30px 20px;
    }
    
    .content-container h1 {
        font-size: 28px;
    }
    
    .content-container h2 {
        font-size: 22px;
    }
    
    .games-table-wrapper {
        font-size: 13px;
    }
    
    .games-table th,
    .games-table td {
        padding: 10px 8px;
    }
}

@media (max-width: 768px) {
    .content-section {
        padding: 25px 15px;
    }
    
    .content-container h1 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .content-container h2 {
        font-size: 20px;
        margin: 25px 0 15px 0;
    }
    
    .content-container h3 {
        font-size: 18px;
        margin: 20px 0 12px 0;
    }
    
    .content-container p {
        font-size: 15px;
        text-align: left;
    }
    
    .games-table-wrapper {
        font-size: 12px;
    }
    
    .games-table th,
    .games-table td {
        padding: 8px 6px;
    }
    
    .bonus-list li {
        padding: 15px;
    }
    
    .payment-methods-list {
        grid-template-columns: 1fr;
    }
    
    .cta-text {
        font-size: 16px;
        padding: 20px;
    }
    
    .faq-item h3 {
        padding: 15px;
        font-size: 15px;
    }
    
    .faq-item p {
        padding: 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .content-container h1 {
        font-size: 22px;
    }
    
    .content-container h2 {
        font-size: 18px;
    }
    
    .content-container h3 {
        font-size: 16px;
    }
    
    .content-container p {
        font-size: 14px;
    }
    
    .games-table th,
    .games-table td {
        padding: 6px 4px;
        font-size: 11px;
    }
    
    .bonus-list li {
        padding: 12px;
    }
    
    .cta-text {
        font-size: 15px;
        padding: 18px;
    }
}

/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
}

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

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 35px;
    width: auto;
}

.footer-brand-text {
    font-size: 24px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 1px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    color: inherit;
    padding: 0;
}

.social-link:hover {
    background: rgba(139, 92, 246, 0.3);
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #8b5cf6, #ec4899);
    border-radius: 1px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 8px;
}

.footer-menu a,
.footer-menu .footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: block;
    padding: 4px 0;
    background: none;
    border: none;
    text-align: left;
    width: 100%;
    cursor: pointer;
    font: inherit;
}

.footer-menu a:hover,
.footer-menu .footer-link:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-middle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.providers-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.providers-grid {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.provider-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 5px;
    transition: all 0.3s ease;
}

.provider-item:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

.provider-logo {
    max-width: 55px;
    max-height: 30px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.provider-item.crypto {
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.3);
    flex-direction: column;
    gap: 2px;
}

.crypto-icon {
    font-size: 16px;
    color: #f59e0b;
}

.crypto-text {
    font-size: 10px;
    font-weight: 600;
    color: #ffffff;
}

.providers-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.provider-name {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.provider-name:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.3);
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.footer-legal {
    flex: 1;
}

.license-info {
    margin-bottom: 15px;
}

.license-text,
.age-restriction {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    margin-bottom: 5px;
    line-height: 1.4;
}

.responsible-gaming {
    display: flex;
    align-items: center;
}

.rg-logos {
    display: flex;
    gap: 10px;
}

.rg-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-copyright {
    text-align: right;
    flex: 1;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin-bottom: 5px;
    line-height: 1.4;
}

.disclaimer {
    font-style: italic;
    max-width: 300px;
    margin-left: auto;
}

/* Footer Responsive Design */
@media (max-width: 1200px) {
    .footer-container {
        padding: 30px 20px 15px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .footer-middle {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 25px 15px 15px;
    }
    
    .footer-top {
        gap: 25px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-middle {
        gap: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-copyright {
        text-align: center;
    }
    
    .disclaimer {
        margin: 0 auto;
    }
    
    .providers-grid {
        justify-content: center;
    }
    
    .providers-list {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 20px 10px 10px;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .providers-grid {
        gap: 10px;
    }
    
    .provider-item {
        width: 60px;
        height: 40px;
    }
    
    .provider-logo {
        max-width: 45px;
        max-height: 25px;
    }
    
    .footer-title {
        text-align: center;
        margin-bottom: 12px;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}