@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;
    text-align: left;
    vertical-align: middle;
    text-transform: uppercase;
}

/* Content headings styling */
.content-container h2,
.content-container h3,
.content-container h4,
.content-container h5,
.content-container h6 {
    text-align: left;
    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;
}

/*!* Games table styling *!*/
/*.games-table, .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: 0px 2px 8px 0px #67514740;*/
/*    backdrop-filter: blur(32px);*/
/*    font-family: "Sofia Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;*/
/*}*/

/*!*.games-table thead,.lexical-table-row{*!*/
/*!*    background: radial-gradient(106.84% 107.5% at 50% 108.43%, #FF004C 0%, #AF0000 100%);*!*/
/*!*}*!*/

/*.games-table th, .lexical-table th {*/
/*    padding: 16px 20px;*/
/*    text-align: left;*/
/*    font-weight: 800;*/
/*    font-style: italic;*/
/*    font-size: 14px;*/
/*    color: white;*/
/*    text-transform: uppercase;*/
/*    letter-spacing: 0.5px;*/
/*    border: none;*/
/*}*/

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

/*.games-table tbody tr:hover,*/
/*.lexical-table tbody tr:hover*/
/*{*/
/*    background-color: rgba(212, 175, 55, 0.05);*/
/*}*/

/*.games-table tbody tr:hover td,*/
/*.lexical-table tbody tr:hover td {*/
/*    color: #08132D;*/
/*}*/

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

/* Общая таблица */
.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 0;
}

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

/* 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: 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-family: "Sofia Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #08132D;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    opacity: 0.9;
}

.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: 48px;
    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 {
        margin: 0;
        border-radius: 0;
        min-height: 500px;
        position: static;
        background-image: url('/assets/img/image-mob.jpg');
        box-shadow: none;
        margin-top: -120px;
    }
    
    .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 (max-width: 480px) {
    .hero-banner {
        min-height: 480px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
    
    .hero-content {
    justify-content: center;
        min-height: 200px;
    }
    
    .bonus-offer {
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    .btn-join-now {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .bonus-label {
        font-size: 14px;
        font-weight: 800;
    }
}

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