/* Vavada India - Base styles and reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #0E0E19;
    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;
}

/* Site header navigation */
.header {
    background-color: rgba(29, 29, 46, 0.85);
    padding: 8px 0;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
    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: #E73A51;
}

.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 #E73A51;
    color: #E73A51;
}

.btn-login:hover {
    background-color: rgba(231, 58, 81, 0.13);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(231, 58, 81, 0.36);
}

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

.btn-register:hover {
    background-color: #ff5169;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(231, 58, 81, 0.46);
}

.btn-help {
    background-color: transparent;
    color: #9C60F6;
    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 navigation menu - Vavada India */
.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 12px rgba(0, 0, 0, 0.55);
    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: #E73A51;
}

.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;
}

/* Hero banner section - Vavada India */
.banner {
    padding: 60px 0;
    background: linear-gradient(135deg, #0E0E19 0%, #1E1E2F 50%, #2C2040 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(156, 96, 246, 0.17) 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 22px rgba(156, 96, 246, 0.53);
    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 16px rgba(156, 96, 246, 0.43);
    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.75) 0%, rgba(44, 33, 63, 0.05) 100%);
    border-radius: 16px;
    min-width: 200px;
    min-height: 100px;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.42), 0 0 22px rgba(156, 96, 246, 0.23);
    border: 2px solid rgba(156, 96, 246, 0.43);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.jackpot-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.52), 0 0 32px rgba(156, 96, 246, 0.45);
    border-color: rgba(156, 96, 246, 0.63);
}

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

.jackpot-sum {
    font-size: 28px;
    font-weight: 700;
    color: #FFE066;
    min-height: 36px;
    display: inline-block;
    line-height: 1.2;
    text-shadow: 0 0 16px rgba(255, 224, 102, 0.62);
    letter-spacing: 0.5px;
}

/* Game filters section - Vavada India */
.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: #0E0E19;
    border: 1px solid #343346;
    border-radius: 10px;
    color: #ffffff;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #E73A51;
    border-color: #E73A51;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(231, 58, 81, 0.33);
}

.filter-provider select {
    padding: 8px 15px;
    background-color: #0E0E19;
    border: 1px solid #343346;
    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: #0E0E19;
    border: 1px solid #343346;
    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: #9C60F6;
    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: #E73A51;
    color: white;
}

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

/* Games section - Vavada India */
.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 16px rgba(0, 0, 0, 0.22);
    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(14, 14, 25, 0.83);
    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: #E73A51;
    color: white;
    border-radius: 10px;
}

.btn-play:hover {
    background-color: #ff5169;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(231, 58, 81, 0.43);
}

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

.btn-demo:hover {
    background-color: rgba(156, 96, 246, 0.13);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(156, 96, 246, 0.33);
}

.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: #9C60F6;
}

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

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

.btn-more:hover {
    background-color: #ac70ff;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(156, 96, 246, 0.43);
}

/* Mobile applications section - Vavada India */
.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: #0E0E19;
    border: 1px solid #343346;
    color: white;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.22);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-app:hover {
    background-color: #1E1E2F;
    border-color: #9C60F6;
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(156, 96, 246, 0.33);
}

/* Site footer - Vavada India */
.footer {
    background-color: #0E0E19;
    padding: 40px 0 20px;
    border-top: 1px solid #343346;
}

.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: #9C60F6;
}

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

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

.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: #E73A51;
}

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

.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 14px rgba(156, 96, 246, 0.23);
}

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

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

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

.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 16px rgba(0, 0, 0, 0.32);
    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: #E73A51;
    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: #E73A51;
    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 #343346;
    border-radius: 5px;
    background-color: #0E0E19;
    color: white;
    font-family: inherit;
}

.chat-input button {
    background-color: #E73A51;
    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;
}


/* Information content blocks - Vavada India */
.cactus-info {
    padding: 50px 0;
    background: linear-gradient(135deg, #0E0E19, #1E1E2F);
}

.info-block {
    background-color: rgba(30, 30, 47, 0.83);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(156, 96, 246, 0.33);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(10px);
}

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

.info-block h2 {
    font-size: 24px;
    color: #E73A51;
    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(156, 96, 246, 0.33);
    border-radius: 12px;
    overflow: hidden;
    background-color: rgba(30, 30, 47, 0.53);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(156, 96, 246, 0.53);
}

.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(156, 96, 246, 0.13);
    color: #9C60F6;
}

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

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: #9C60F6;
    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.63);
    border-radius: 8px;
    overflow: hidden;
}

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

.platform-table thead {
    background-color: rgba(231, 58, 81, 0.23);
}

.platform-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    color: #E73A51;
    border-bottom: 2px solid rgba(231, 58, 81, 0.33);
}

.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(231, 58, 81, 0.13);
}

.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: #9C60F6;
        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.93);
        border-radius: 8px;
        border: 1px solid rgba(156, 96, 246, 0.33);
        box-shadow: 0 5px 16px rgba(0, 0, 0, 0.32);
        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: #E73A51;
        margin-bottom: 8px;
        font-size: 13px;
    }
    
    .platform-table tbody td:first-child {
        font-weight: 600;
        color: #9C60F6;
        font-size: 18px;
        padding-bottom: 15px;
        border-bottom: 2px solid rgba(231, 58, 81, 0.33);
        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(29, 29, 46, 0.82);
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        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 #E73A51;
        color: #E73A51;
    }
    
    .header-auth .btn-register {
        background-color: #E73A51;
        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;
    }
    
}

/* App download notification */
.app-notification {
    position: fixed;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    background: linear-gradient(135deg, rgba(30, 30, 47, 0.99) 0%, rgba(44, 33, 63, 0.99) 100%);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(156, 96, 246, 0.31);
    border: 2px solid rgba(156, 96, 246, 0.41);
    z-index: 1001;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(15px);
}

.app-notification.show {
    bottom: 20px;
    opacity: 1;
}

.app-notification-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.app-notification-icon {
    font-size: 40px;
    line-height: 1;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.app-notification-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.app-notification-text strong {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

.app-notification-text span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.3;
}

.app-notification-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.app-notification-btn {
    background: linear-gradient(135deg, #E73A51 0%, #ff5169 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 58, 81, 0.41);
    white-space: nowrap;
}

.app-notification-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 58, 81, 0.51);
    background: linear-gradient(135deg, #ff5169 0%, #E73A51 100%);
}

.app-notification-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: rgba(255, 255, 255, 0.7);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.app-notification-close:hover {
    background: rgba(231, 58, 81, 0.21);
    color: #E73A51;
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .app-notification {
        width: calc(100% - 30px);
        padding: 16px;
        bottom: -180px;
    }
    
    .app-notification.show {
        bottom: 15px;
    }
    
    .app-notification-content {
        gap: 12px;
    }
    
    .app-notification-icon {
        font-size: 32px;
    }
    
    .app-notification-text strong {
        font-size: 14px;
    }
    
    .app-notification-text span {
        font-size: 12px;
    }
    
    .app-notification-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .app-notification-close {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .app-notification-content {
        flex-wrap: wrap;
    }
    
    .app-notification-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .app-notification-btn {
        flex: 1;
    }
}

