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

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #12121C;
    color: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: #ffffff;
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.header {
    background-color: rgba(30, 30, 47, 0.8);
    padding: 8px 0;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

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

.header-auth {
    display: none;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.logo a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    height: 100px;
    width: auto;
    object-fit: contain;
}

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

.main-nav a {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.main-nav a::before {
    content: '';
    display: none;
}

.main-nav a:hover {
    color: #ED3654;
}

.auth-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-login {
    background-color: transparent;
    border: 1px solid #ED3654;
    color: #ED3654;
}

.btn-login:hover {
    background-color: rgba(237, 54, 84, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(237, 54, 84, 0.3);
}

.btn-register {
    background-color: #ED3654;
    color: white;
}

.btn-register:hover {
    background-color: #ff4d6d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(237, 54, 84, 0.4);
}

.btn-help {
    background-color: transparent;
    color: #9151F9;
    font-size: 14px;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 3px;
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: #1E1E2F;
    z-index: 1000;
    padding: 20px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.mobile-menu .logo {
    font-size: 24px;
    font-weight: 700;
    color: #ED3654;
}

.close-menu {
    font-size: 24px;
    cursor: pointer;
    color: #ffffff;
    line-height: 1;
    padding: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav a {
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-nav a::before {
    content: '';
    display: none;
}

.mobile-auth {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-auth .btn {
    width: 100%;
    text-align: center;
}

/* Banner */
.banner {
    padding: 60px 0;
    background: linear-gradient(135deg, #12121C 0%, #1E1E2F 50%, #2A1F3D 100%);
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/banner1.webp') center/cover no-repeat;
    opacity: 0.25;
    z-index: 0;
}

.banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(145, 81, 249, 0.15) 0%, transparent 70%);
    z-index: 0;
}


.main-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #ffffff;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 20px rgba(145, 81, 249, 0.5);
    letter-spacing: -0.5px;
}

.jackpot-block {
    position: relative;
    z-index: 1;
    text-align: center;
}

.jackpot-block h2,
.jackpot-block h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 0 2px 15px rgba(145, 81, 249, 0.4);
    font-weight: 700;
}

.jackpot-values {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.jackpot-item {
    display: flex;
    flex-direction: column;
    padding: 20px 30px;
    background: linear-gradient(135deg, rgba(30, 30, 47, 0.95) 0%, rgba(42, 31, 61, 0.95) 100%);
    border-radius: 16px;
    min-width: 200px;
    min-height: 100px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 20px rgba(145, 81, 249, 0.2);
    border: 2px solid rgba(145, 81, 249, 0.4);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.jackpot-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), 0 0 30px rgba(145, 81, 249, 0.4);
    border-color: rgba(145, 81, 249, 0.6);
}

.jackpot-name {
    font-size: 18px;
    color: #9151F9;
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.jackpot-sum {
    font-size: 28px;
    font-weight: 700;
    color: #FFD700;
    min-height: 36px;
    display: inline-block;
    line-height: 1.2;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    letter-spacing: 0.5px;
}

/* Filters */
.game-filter {
    padding: 30px 0;
    background-color: #1E1E2F;
    margin-bottom: 30px;
}

.filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-type {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 15px;
    background-color: #12121C;
    border: 1px solid #333345;
    border-radius: 10px;
    color: #ffffff;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #ED3654;
    border-color: #ED3654;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(237, 54, 84, 0.3);
}

.filter-provider select {
    padding: 8px 15px;
    background-color: #12121C;
    border: 1px solid #333345;
    border-radius: 10px;
    color: #ffffff;
    cursor: pointer;
    min-width: 180px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.filter-search {
    position: relative;
}

.filter-search input {
    padding: 8px 15px;
    padding-right: 40px;
    background-color: #12121C;
    border: 1px solid #333345;
    border-radius: 10px;
    color: #ffffff;
    min-width: 200px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.filter-search .search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #9151F9;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
}

.filter-tags {
    display: flex;
    gap: 10px;
}

.tag {
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tag.hit {
    background-color: #ED3654;
    color: white;
}

.tag.new {
    background-color: #4DFF7A;
    color: #12121C;
}

/* Games section */
.games {
    padding: 20px 0 40px;
}

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

.game-card {
    background-color: #1E1E2F;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    contain: layout style paint;
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.game-image {
    position: relative;
    overflow: hidden;
    height: 180px;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-image .tag {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 28, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    opacity: 0;
}

.game-overlay .btn {
    padding: 8px 15px;
    min-width: 120px;
    text-align: center;
}

.btn-play {
    background-color: #ED3654;
    color: white;
    border-radius: 10px;
}

.btn-play:hover {
    background-color: #ff4d6d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(237, 54, 84, 0.4);
}

.btn-demo {
    background-color: transparent;
    border: 1px solid #9151F9;
    color: #9151F9;
    border-radius: 10px;
}

.btn-demo:hover {
    background-color: rgba(145, 81, 249, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(145, 81, 249, 0.3);
}

.game-info {
    padding: 15px;
}

.game-info title {
    font-size: 16px;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    color: #ffffff;
}

.provider {
    font-size: 12px;
    color: #9151F9;
}

.more-games {
    text-align: center;
}

.btn-more {
    background-color: #9151F9;
    color: white;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 12px;
}

.btn-more:hover {
    background-color: #a66aff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(145, 81, 249, 0.4);
}

/* Mobile apps */
.mobile-apps {
    padding: 40px 0;
    background-color: #1E1E2F;
    text-align: center;
}

.mobile-apps h2 {
    margin-bottom: 30px;
}

.apps-block {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-app {
    background-color: #12121C;
    border: 1px solid #333345;
    color: white;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-app:hover {
    background-color: #1E1E2F;
    border-color: #9151F9;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(145, 81, 249, 0.3);
}

/* Footer */
.footer {
    background-color: #12121C;
    padding: 40px 0 20px;
    border-top: 1px solid #333345;
}

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

.footer-col h3 {
    margin-bottom: 20px;
    font-size: 18px;
    color: #9151F9;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a:hover {
    color: #ED3654;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1E1E2F;
    border-radius: 50%;
    font-size: 20px;
    line-height: 1;
}

.language-select {
    display: inline-block;
}

.language-select a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background-color: #1E1E2F;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.license-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.license p,
.responsible-gaming p {
    font-size: 14px;
    color: #888;
    margin-bottom: 5px;
}

.responsible-gaming strong {
    color: #ED3654;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333345;
}

.payment-icon {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    background-color: #1E1E2F;
    border-radius: 10px;
    height: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(145, 81, 249, 0.2);
}

.payment-icon img {
    height: 24px;
    width: auto;
}

/* Chat bot */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chat-toggle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ED3654;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    line-height: 1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.chat-container {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    max-width: calc(100vw - 40px);
    background-color: #1E1E2F;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    display: none;
    z-index: 999;
}

.chat-container.active {
    display: block;
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #ED3654;
    color: white;
}

.chat-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 16px;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-body {
    height: 400px;
    display: flex;
    flex-direction: column;
}

.chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
}

.message {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    max-width: 80%;
}

.message.bot {
    background-color: #2A2A3F;
    color: white;
    margin-right: auto;
}

.message.user {
    background-color: #ED3654;
    color: white;
    margin-left: auto;
}

.chat-input {
    display: flex;
    gap: 10px;
    padding: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-input input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #333345;
    border-radius: 5px;
    background-color: #12121C;
    color: white;
    font-family: inherit;
}

.chat-input button {
    background-color: #ED3654;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Info blocks */
.cactus-info {
    padding: 50px 0;
    background: linear-gradient(135deg, #12121C, #1E1E2F);
}

.info-block {
    background-color: rgba(30, 30, 47, 0.8);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(145, 81, 249, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.info-block h1 {
    font-size: 32px;
    color: #ED3654;
    margin-bottom: 25px;
    line-height: 1.3;
}

.info-block h2 {
    font-size: 24px;
    color: #ED3654;
    margin-bottom: 20px;
    margin-top: 30px;
}

.info-block h2:first-of-type {
    margin-top: 0;
}

.info-block p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #ffffff;
}

/* FAQ Accordion */
.faq-accordion {
    margin-top: 20px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(145, 81, 249, 0.3);
    border-radius: 12px;
    overflow: hidden;
    background-color: rgba(30, 30, 47, 0.5);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(145, 81, 249, 0.5);
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    background-color: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(145, 81, 249, 0.1);
    color: #9151F9;
}

.faq-question span:first-child {
    flex: 1;
    padding-right: 15px;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: #9151F9;
    transition: transform 0.3s ease;
    line-height: 1;
    min-width: 24px;
    text-align: center;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px 18px 20px;
}

.faq-answer p {
    margin: 0;
    padding-top: 10px;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.6;
}

.platform-table-wrapper {
    overflow-x: auto;
    margin-top: 20px;
}

.platform-table {
    width: 100%;
    border-collapse: collapse;
    background-color: rgba(30, 30, 47, 0.6);
    border-radius: 8px;
    overflow: hidden;
}

.platform-table caption {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #9151F9;
    text-align: left;
    padding: 0;
}

.platform-table thead {
    background-color: rgba(237, 54, 84, 0.2);
}

.platform-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    color: #ED3654;
    border-bottom: 2px solid rgba(237, 54, 84, 0.3);
}

.platform-table td {
    padding: 12px 15px;
    font-size: 14px;
    line-height: 1.5;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.platform-table tbody tr:hover {
    background-color: rgba(237, 54, 84, 0.1);
}

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

/* Mobile table adaptation - cards */
@media (max-width: 768px) {
    .platform-table-wrapper {
        overflow-x: visible;
        margin-top: 15px;
    }
    
    .platform-table {
        display: block;
        width: 100%;
        border-radius: 8px;
        background: transparent;
    }
    
    .platform-table caption {
        display: block;
        margin-bottom: 20px;
        font-size: 18px;
        font-weight: 600;
        color: #9151F9;
        text-align: left;
        padding: 0;
        line-height: 1.4;
        white-space: normal;
    }
    
    .platform-table thead {
        display: none;
    }
    
    .platform-table tbody {
        display: block;
        width: 100%;
    }
    
    .platform-table tbody tr {
        display: block;
        margin-bottom: 20px;
        background-color: rgba(30, 30, 47, 0.9);
        border-radius: 8px;
        border: 1px solid rgba(145, 81, 249, 0.3);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        padding: 15px;
    }
    
    .platform-table tbody tr:last-child {
        margin-bottom: 0;
    }
    
    .platform-table tbody td {
        display: block;
        padding: 12px 0;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 14px;
        line-height: 1.5;
    }
    
    .platform-table tbody td:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .platform-table tbody td::before {
        content: attr(data-label);
        display: block;
        font-weight: 600;
        color: #ED3654;
        margin-bottom: 8px;
        font-size: 13px;
    }
    
    .platform-table tbody td:first-child {
        font-weight: 600;
        color: #9151F9;
        font-size: 18px;
        padding-bottom: 15px;
        border-bottom: 2px solid rgba(237, 54, 84, 0.3);
        margin-bottom: 15px;
        padding-top: 0;
    }
    
    .platform-table tbody td:first-child::before {
        display: none;
    }
}

/* Responsive */
@media (min-width: 769px) {
    .header-container {
        height: auto;
        position: relative;
    }
    
    .logo {
        position: static;
        transform: none;
    }
    
    .nav-menu,
    .auth-buttons {
        display: flex;
    }
    
    .burger-menu,
    .header-auth {
        display: none;
    }
    
    .banner {
        margin-top: 0;
    }
    
    .main-title {
        font-size: 36px;
    }
    
    .jackpot-block h2,
    .jackpot-block h3 {
        font-size: 28px;
    }
    
    .jackpot-values {
        flex-direction: row;
    }
    
    .games-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .filters {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .filter-btn {
        width: auto;
    }
    
    .filter-provider select,
    .filter-search input {
        width: auto;
        min-width: 180px;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .license-info {
        flex-direction: row;
    }
    
    .apps-block {
        flex-direction: row;
    }
    
    .btn-app {
        width: auto;
    }
    
    .payment-icon {
        width: auto;
    }
}

@media (max-width: 1024px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu,
    .auth-buttons {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .jackpot-values {
        flex-direction: column;
        align-items: center;
    }
    
    .jackpot-item {
        width: 100%;
        max-width: 300px;
    }
    
    .filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-provider select,
    .filter-search input {
        width: 100%;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .license-info {
        flex-direction: column;
    }
    
    .header-container {
        position: relative;
        height: 100px;
    }
    
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        height: 100px;
    }
    
    .burger-menu {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .header-auth {
        display: flex;
        gap: 10px;
        position: absolute;
        bottom: -70px;
        left: 0;
        right: 0;
        padding: 10px 15px;
        background-color: rgba(30, 30, 47, 0.8);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 99;
        backdrop-filter: blur(10px);
    }
    
    .header-auth .btn {
        flex: 1;
        text-align: center;
        padding: 8px;
        font-size: 14px;
    }
    
    .header-auth .btn-login {
        background-color: transparent;
        border: 1px solid #ED3654;
        color: #ED3654;
    }
    
    .header-auth .btn-register {
        background-color: #ED3654;
        color: white;
    }
    
    .banner {
        margin-top: 40px;
    }
    
    .info-block {
        padding: 20px;
    }
    
    .info-block h1 {
        font-size: 24px;
    }
    
    .info-block h2 {
        font-size: 20px;
    }
    
    .info-block p {
        font-size: 14px;
    }
    
    .faq-question {
        padding: 15px;
        font-size: 15px;
    }
    
    .faq-answer {
        padding: 0 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 15px 15px 15px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
    
    .main-title {
        font-size: 28px;
    }
    
    .jackpot-block h2,
    .jackpot-block h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-type {
        justify-content: center;
    }
    
    .filter-type button {
        width: 45%;
    }
    
    .apps-block {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-app {
        width: 100%;
        justify-content: center;
    }
    
    .payment-methods {
        justify-content: center;
    }
    
    .payment-icon {
        width: 45%;
        justify-content: center;
    }
    
}

