@font-face {
    font-family: 'Sofia Sans';
    src: url('./fonts/SofiaSans-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sofia Sans';
    src: url('./fonts/SofiaSans-Italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Sofia Sans';
    src: url('./fonts/SofiaSans-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sofia Sans';
    src: url('./fonts/SofiaSans-ExtraBoldItalic.woff2') format('woff2');
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Sofia Sans';
    src: url('./fonts/SofiaSans-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #F3F2F2;
    color: #333;
    line-height: 1.6;
}

.header {
    background-color: #ffffff;
    border-radius: 16px 16px 0 0;
    box-shadow: 0px 2px 8px 0px #67514740;
    backdrop-filter: blur(32px);
    margin: 20px 20px 0 20px;
    border-bottom: 1px solid #e0e0e0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
    border-radius: 16px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Logo styling */
.logo-link {
    display: inline-block;
    text-decoration: none;
}

.logo {
    max-width: 200px;
    padding: 0;
    background: transparent;
    box-shadow: none;
    height: 50px;
    object-fit: contain;
    border-radius: 0;
    display: block;
    margin-bottom: -12px;
}

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

.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 12px;
    color: #9ca3af;
    z-index: 1;
}

.search-input {
    width: 100%;
    padding: 12px 12px 12px 40px;
    border: 1px solid #d4af37;
    border-radius: 8px;
    font-size: 0.9rem;
    background-color: #fff;
    color: #333;
    transition: border-color 0.2s ease;
}

.search-input:focus {
    outline: none;
    border-color: #b8941f;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

.search-input::placeholder {
    color: #9ca3af;
}

.action-buttons {
    display: flex;
    gap: 12px;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 56px;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    color: #fff;
    min-width: 100px;
    font-family: "Sofia Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-style: italic;
    line-height: 20px;
    vertical-align: middle;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn:active {
    transform: translateY(0);
}

.btn-login {
    background: radial-gradient(73.44% 100% at 50% 100%, #514646 0%, #151515 100%);
}

.btn-register {
    background: radial-gradient(106.84% 107.5% at 50% 108.43%, #FF004C 0%, #AF0000 100%);
}

.content-container {
    padding: 40px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.content-container h2 {
    color: #333;
}

.content-container p {
    color: #666;
}

/* Text elements styling */
p, span, li, a, table, td, th, label, div {
    font-family: "Sofia Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0;
    color: #646464;
    padding: 5px 0;
}

/* Headings styling */
h1, h2, h3, h4, h5, h6 {
    color: #08132D;
    font-family: "Sofia Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 800;
    font-style: italic;
    line-height: 130%;
    letter-spacing: 0;
    vertical-align: middle;
    text-transform: uppercase;
}

/* Content headings styling */
.content-container h2,
.content-container h3,
.content-container h4,
.content-container h5,
.content-container h6 {
    padding: 20px 0 10px 0;
}

/* Features list styling */


.features-list,
.list-bullet,
.list-number {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0px 2px 8px 0px #67514740;
    backdrop-filter: blur(32px);
}

.features-list li,
.list-bullet li,
.list-number li {
    position: relative;
    padding: 12px 0 12px 40px;
    font-family: "Sofia Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #646464;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: color 0.2s ease;
}

.features-list li:last-child,
.list-bullet li:last-child,
.list-number li:last-child {
    border-bottom: none;
}

.features-list li:hover,
.list-bullet li:hover,
.list-number li:hover {
    color: #08132D;
}

.features-list li::before,
.list-bullet li::before{
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    width: 24px;
    height: 24px;
    background: radial-gradient(106.84% 107.5% at 50% 108.43%, #FF004C 0%, #AF0000 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 12px;
    font-family: "Sofia Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}


/* Общая таблица */
.lexical-table-container{
    width: 100%;
    overflow-x: auto;
}

/* чтобы таблица не ломалась при скролле */
.lexical-table {
    min-width: 800px; /* можно менять под количество колонок */
}

.lexical-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px 0 #67514740;
    backdrop-filter: blur(32px);
    font-family: "Sofia Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Заголовки */
.lexical-table th {
    padding: 16px 20px;
    text-align: center;
    font-weight: 800;
    font-style: italic;
    font-size: 14px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    background: radial-gradient(106.84% 107.5% at 50% 108.43%, #FF004C 0%, #AF0000 100%);
}

/* Ячейки */
.lexical-table td {
    padding: 16px 20px;
    font-weight: 500;
    font-size: 14px;
    color: #646464;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    text-align: center;
    transition: background-color 0.2s ease, color 0.2s ease;
}

/* Hover */
.lexical-table tbody tr:hover {
    background-color: rgba(212, 175, 55, 0.05);
}
.lexical-table tbody tr:hover td {
    color: #08132D;
}

/* Убираем бордер у последней строки */
.lexical-table tbody tr:last-child td {
    border-bottom: none;
}
/* General image styling */
img {
    border-radius: 16px;
    box-shadow: 0 2px 8px 0 #67514740;
    max-width: 100%;
    height: auto;
    display: block;
}

.main-content img{
    margin: 15px auto;
    max-width: 100%;
    display: block;
}

.content-image {
    margin: 20px 0;
    width: 100%;
    object-fit: contain;
}

/* Footer styling */
.footer {
    background-color: #1E1E1E;
    border-radius: 16px;
    margin: 20px;
    padding: 24px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-payments {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.payment-btn {
    transition: transform 0.2s ease;
}

.payment-btn:hover {
    transform: translateY(-2px);
}

.more-link {
    color: #FF004C;
    text-decoration: none;
    font-family: "Sofia Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 8px;
}

.chevron {
    font-size: 16px;
    font-weight: bold;
}

.footer-licenses {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.age-badge {
    width: 40px;
    height: 40px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Sofia Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #ffffff;
}

.license-badges {
    display: flex;
    gap: 8px;
}
.license-link {
    color: #FF004C;
    text-decoration: none;
    font-family: "Sofia Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-text {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 11px;
}

.footer-text p {
    font-family: "Sofia Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 12px;
    line-height: 135%;
    letter-spacing: 0;
    text-align: center;
    color: #ffffff;
    margin: 8px 0;
}

/* Desktop heading sizes */
h1 { font-size: 38px; }
h2 { font-size: 32px; }
h3 { font-size: 28px; }
h4 { font-size: 24px; }
h5 { font-size: 20px; }
h6 { font-size: 16px; }

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(32px);
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 30px 0 20px 0;
    overflow-y: auto;
}

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

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    padding: 0 24px;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px 24px 24px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 24px;
}

.mobile-menu-title {
    font-family: "Sofia Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 800;
    font-style: italic;
    font-size: 18px;
    color: #08132D;
    text-transform: uppercase;
    margin: 0;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}

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

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

.mobile-menu-nav a {
    display: block;
    padding: 5px 16px;
    font-family: "Sofia Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #646464;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.mobile-menu-nav a:hover {
    background-color: #f5f5f5;
    color: #08132D;
}

.mobile-menu-search {
    padding: 0 24px 24px 24px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 24px;
}

.mobile-menu-search input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d4af37;
    border-radius: 8px;
    font-family: "Sofia Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 14px;
    color: #333;
    background-color: #fff;
}

.mobile-menu-search input:focus {
    outline: none;
    border-color: #b8941f;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

.mobile-menu-actions {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-menu-actions .btn {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    text-align: center;
}

/* Mobile menu icon animation */
.mobile-menu-icon.active svg path:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-icon.active svg path:nth-child(2) {
    opacity: 0;
}

.mobile-menu-icon.active svg path:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu-icon svg path {
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

/* Body scroll lock when menu is open */
body.menu-open {
    overflow: hidden;
}

.footer-block-btn {
    display: none;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    body {
        padding-bottom: 80px;
    }

    .navigation-bar {
        display: none;
    }

    .action-buttons {
        display: none !important;
    }

    .footer-block-btn {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        gap: 12px;
        justify-content: center;
        background-color: #ffffff;
        padding: 12px 16px;
        box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        margin: 0;
    }

    .footer-block-btn .btn {
        flex: 1;
        min-width: auto;
    }

    .header {
        margin: 10px;
        border-radius: 16px;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(32px);
        box-shadow: 0px 2px 8px 0px #67514740;
        overflow: visible;
    }
    
    .header-container {
        flex-direction: row;
        gap: 16px;
        padding: 16px;
    }
    
    .brand-name {
        font-size: 1.25rem;
    }
    
    .logo {
        max-width: 100px;
        padding: 0;
        background: transparent;
        box-shadow: none;
        margin-bottom: -6px;
        height: 30px;
    }
    
    .search-section {
        width: 100%;
        max-width: none;
        margin: 0;
    }
    
    .main-content {
        margin: 0;
        border-radius: 0;
        background-color: #EFEFEF;
    }
    
    .content-container {
        padding: 24px 16px;
    }
    
    .footer {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    /* Mobile table styles */
    .games-table {
        font-size: 12px;
        border-radius: 16px;
    }
    
    .games-table th,
    .games-table td {
        padding: 12px 8px;
        font-size: 12px;
    }
    
    .games-table th:first-child,
    .games-table td:first-child {
        padding-left: 16px;
    }
    
    .games-table th:last-child,
    .games-table td:last-child {
        padding-right: 16px;
    }

    /* Mobile heading sizes */
    h1 { font-size: 21px; }
    h2 { font-size: 19px; }
    h3 { font-size: 17px; }
    h4 { font-size: 15px; }
    h5 { font-size: 13px; }
    h6 { font-size: 11px; }
}

@media (max-width: 480px) {
    body {
        padding-bottom: 70px;
    }

    .header {
        margin: 10px;
        border-radius: 16px;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(32px);
        box-shadow: 0px 2px 8px 0px #67514740;
    }
    .header-container {
        padding: 12px;
        border-radius: 16px;
    }
    
    .brand-name {
        font-size: 1.1rem;
    }
    .mobile-menu-icon{
        display: flex;
    }
    .search-input {
        padding: 10px 10px 10px 36px;
        font-size: 0.85rem;
    }
    
    .search-icon {
        left: 10px;
        width: 14px;
        height: 14px;
    }
    
    .footer-block-btn {
        padding: 10px 12px;
        gap: 8px;
    }

    .footer-block-btn .btn {
        padding: 10px 5px;
        font-size: 12px;
        text-align: center;
    }
    
    /* Extra small mobile table styles */
    .games-table {
        font-size: 11px;
    }
    
    .games-table th,
    .games-table td {
        padding: 10px 6px;
        font-size: 11px;
    }
    
    .games-table th:first-child,
    .games-table td:first-child {
        padding-left: 12px;
    }
    
    .games-table th:last-child,
    .games-table td:last-child {
        padding-right: 12px;
    }
}

@media (min-width: 1200px) {
    .header-container {
        padding: 20px 32px;
    }
    
    .brand-name {
        font-size: 1.75rem;
    }
    
    .search-input {
        padding: 14px 14px 14px 44px;
        font-size: 1rem;
    }
    
    .search-icon {
        left: 14px;
        width: 18px;
        height: 18px;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

/* Hide desktop search on mobile */
@media (max-width: 768px) {
    .search-section {
        display: none;
    }
}

/* Show mobile menu icon only on mobile */
@media (min-width: 769px) {
    .mobile-menu-icon {
        display: none;
    }
}

/* Desktop - hide mobile menu */
@media (min-width: 769px) {
    .mobile-menu,
    .mobile-menu-overlay {
        display: none;
    }
}

/* Navigation Bar Styles */
.navigation-bar {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    margin: 0 20px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 2px 8px 0 #67514740;
    backdrop-filter: blur(32px);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-direction: row-reverse;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-family: "Sofia Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #646464;
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #08132D;
}

.nav-link.active {
    color: #08132D;
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #08132D;
    border-radius: 1px;
}


.language-selector:hover {
    background-color: #f5f5f5;
}



@media (max-width: 480px) {
    .nav-links {
        gap: 12px;
    }
    
    .nav-right {
        gap: 12px;
    }
    
    .nav-link {
        font-size: 12px;
    }
}
    

/* Hide navigation on very small screens */
@media (max-width: 360px) {
    .navigation-bar {
        display: none;
    }
}

/* Hero Banner Styles */
.hero-banner {
    background-image: url('/assets/img/asiamain.webp');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    min-height: 369px;
    margin: 20px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 12px 0 #67514740;

}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-content {
    justify-content: center;
    display: flex;
    align-items: center;
    min-height: 400px;
}

.hero-text {
    text-align: center;
    max-width: 500px;
    color: #08132D;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bonus-label {
    font-size: 42px;
    color: #08132D;
    font-family: "Sofia Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 800;
    font-style: italic;
    line-height: 130%;
    letter-spacing: 0;
    vertical-align: middle;
    text-transform: uppercase;
}

.bonus-offer {
    font-family: "Sofia Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 800;
    font-style: italic;
    font-size: 28px;
    line-height: 1.1;
    color: #08132D;
    text-transform: uppercase;
    margin-bottom: 24px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.btn-join-now {
    background: radial-gradient(106.84% 107.5% at 50% 108.43%, #FF004C 0%, #AF0000 100%);
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    border: none;
    border-radius: 56px;
    color: #fff;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 76, 0.3);
    font-family: "Sofia Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    letter-spacing: -0.02em;
    line-height: 32px;
    vertical-align: middle;
    max-width: fit-content;
}

.btn-join-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 76, 0.4);
}

.btn-join-now:active {
    transform: translateY(0);
}

/* Mobile Hero Banner Styles */
@media (max-width: 768px) {
    .hero-banner {
        border-radius: 0;
        min-height: 350px;
        position: static;
        background-image: url('/assets/img/image-mob.jpg');
        box-shadow: none;
        margin-top: -120px;

        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
    
    .hero-container {
        padding: 0 16px;
    }
    
    .hero-content {
    justify-content: center;
        min-height: 300px;
    }
    
    .bonus-offer {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .btn-join-now {
        padding: 14px 28px;
        font-size: 16px;
    }
    
    .bonus-label {
        font-size: 12px;
    }
}

@media (min-width: 1200px) {
    .hero-banner {
        min-height: 369px;
    }
    
    .hero-content {
    justify-content: flex-start;
        min-height: 369px;
    }
    
    .bonus-offer {
        font-size: 45px;
    }
    
    .btn-join-now {
        padding: 18px 36px;
        font-size: 20px;
    }
}


/* Стили для нумерованного списка */
ol {
    counter-reset: list-counter; /* сброс счетчика */
    list-style: none;            /* убираем стандартные цифры */
    padding-left: 0;
}

ol li {
    counter-increment: list-counter; /* увеличиваем счетчик */
    position: relative;
    padding-left: 30px;              /* место для цифры */
}
ol li::before {
    content: counter(list-counter) ". "; /* вывод цифры */
    position: absolute;
    left: 0;
    top: 12px;
    width: 24px;
    height: 24px;
    background: radial-gradient(106.84% 107.5% at 50% 108.43%, #FF004C 0%, #AF0000 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 12px;
    font-family: "Sofia Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.footer__nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.footer__nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
}
.footer-logo {
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

/* RTL: направление текста и выравнивание вправо */
[dir="rtl"],
[lang="ar"],
[lang="he"],
[lang="fa"],
[lang="ur"] {
    direction: rtl;
    text-align: inherit;
}

[dir="rtl"] .hero-container .hero-content,
[lang="ar"] .hero-container .hero-content,
[lang="he"] .hero-container .hero-content,
[lang="fa"] .hero-container .hero-content,
[lang="ur"] .hero-container .hero-content {
    display: flex;
    justify-content: flex-end;
}

[dir="rtl"] .hero-text,
[dir="rtl"] .bonus-label,
[lang="ar"] .hero-text,
[lang="ar"] .bonus-label,
[lang="he"] .hero-text,
[lang="he"] .bonus-label,
[lang="fa"] .hero-text,
[lang="fa"] .bonus-label,
[lang="ur"] .hero-text,
[lang="ur"] .bonus-label {
    text-align: inherit;
    align-items: flex-end;
}

/* --- Slots Block Styles --- */
.slots-wrapper {
  margin: 30px 0;
}
.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
  align-items: start;
}
.slot-card {
  text-align: center;
  border-radius: 8px;
  transition: transform 0.2s ease, background 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: relative;
}
.slot-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  border-radius: 8px;
  transition: background 0.2s;
  z-index: 1;
}
.slot-image {
  border-radius: 6px;
  overflow: hidden;
}
.slot-image img {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  padding: 0;
}
.slot-name {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: calc(100% - 16px);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  background: #450C88;
  color: #FFFFFF;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 2;
}
.slot-card:hover .slot-name{
  opacity: 1;
}
.slot-card:hover::before {
  background: rgba(0, 0, 0, 0.6);
  opacity: 1;
}
@media (max-width: 600px) {
  .slots-grid {
    gap: 10px;
  }
  .slot-name {
    font-size: 12px;
  }
}


/* --- Review Block Styles --- */
#review-block {
  margin: 32px 0;
  background: #151b3a;
  border-radius: 14px;
  padding: 20px 16px 16px;
  overflow: hidden;
}
#review-block .review-block__header {
  display: grid;
  grid-template-columns: 280px 1fr 200px;
  gap: 16px;
  padding: 0 24px 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
}
.review-block__header span:first-child{
  padding-left: 32px;
}
.review-block__header span:nth-child(2){
  text-align: center;
}
#review-block .review-block__row {
  display: grid;
  grid-template-columns: 280px 1fr 200px;
  gap: 16px;
  align-items: center;
  padding: 16px 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.02);
  transition: background 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}
#review-block .review-block__row:last-child{
  margin: 0;
}
#review-block .review-block__row:hover {
  background: rgba(255, 255, 255, 0.05);
}
#review-block .review-block__row--highlighted {
  background: rgba(80, 100, 200, 0.18);
  border-color: rgba(100, 120, 220, 0.25);
}
#review-block .review-block__row--highlighted:hover {
  background: rgba(80, 100, 200, 0.24);
}
#review-block .review-block__label {
  position: absolute;
  top: -1px;
  left: 0;
  width: 120px;
  transform: rotate(-46deg) translate(-36px, -11px);
  height: 20px;
  padding: 0;
  font-size: 7px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 20px;
  color: #fff;
}
#review-block .review-block__casino {
  display: flex;
  align-items: center;
  gap: 12px;
}
#review-block .review-block__number {
  font-weight: 700;
  font-size: 15px;
  min-width: 20px;
  color: rgba(255, 255, 255, 0.7);
}
#review-block .review-block__logo-wrapper{
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 90px;
}
#review-block .review-block__logo {
  object-fit: contain;
  box-shadow: none;
  max-height: 90px;
  margin: 0;
}
#review-block .review-block__name {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  flex-grow: 1;
}
#review-block .review-block__bonus {
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}
#review-block .review-block__bonus:has(span:nth-child(2)) span:first-child{
  color: #FFDA03;
}
#review-block .review-block__bonus strong,
#review-block .review-block__bonus b {
  color: #fff;
  font-weight: 700;
}
#review-block .review-block__code {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}
#review-block .review-block__action {
  display: flex;
  justify-content: flex-end;
}
#review-block .review-block__button {
  display: inline-block;
  padding: 12px 32px;
  background: #e91e63;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
}
#review-block .review-block__button:hover {
  background: #d81b60;
  transform: translateY(-1px);
}
@media (max-width: 750px) and (min-width: 601px) {
  #review-block .review-block__header {
    grid-template-columns: 1fr 1fr;
  }
  #review-block .review-block__row {
    grid-template-columns: 1fr 1fr;
  }
  .review-block__action {
    grid-column-start: 1;
    grid-column-end: 3;
  }
  #review-block .review-block__button {
    width: 100%;
  }
}
@media (max-width: 600px) {
  #review-block {
    padding: 8px;
  }
  #review-block .review-block__header {
    display: none;
  }
  #review-block .review-block__row {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
    padding: 20px 16px;
  }
  #review-block .review-block__logo-wrapper {
    height: auto;
  }
  #review-block .review-block__casino {
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }
  #review-block .review-block__name {
    font-size: 15px;
  }
  #review-block .review-block__bonus {
    font-size: 15px;
  }
  #review-block .review-block__action {
    justify-content: center;
  }
  #review-block .review-block__button {
    width: 100%;
    padding: 14px 24px;
    font-size: 14px;
  }
}
