* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #0f1923;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: #fff;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #161e28;
    border-bottom: 1px solid #252e3b;
    position: relative;
    z-index: 20;
}

.logo img {
    height: 60px;
}

.main-nav ul {
    display: flex;
    gap: 20px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.deposit-bonus {
    font-size: 14px;
    color: #aaa;
}

.register-btn {
    background-color: #ff3d00;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: bold;
}

.login-btn {
    background-color: transparent;
    color: white;
    padding: 8px 15px;
    border: 1px solid #333;
    border-radius: 4px;
}

.main-container {
    display: flex;
    min-height: calc(100vh - 60px);
    position: relative;
    max-width: 100%;
    overflow-x: hidden;
}

.sidebar {
    width: 200px;
    background-color: #141c25;
    padding: 10px 0;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 1;
}

.sidebar-menu li a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #aaa;
    font-size: 14px;
    transition: all 0.2s;
}

.sidebar-menu li a:hover {
    background-color: #1a2431;
    color: #fff;
}

.sidebar-menu li a i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.content {
    flex: 1;
    padding: 20px;
    position: relative;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

.header-slider {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    width: 100%;
    border-radius: 8px;
    height: 200px;
}

.slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.slide.active {
    display: block;
    animation: fadeIn 0.5s forwards;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-background img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center center; 
}

.slide-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(20, 28, 37, 0.5) 0%, rgba(20, 28, 37, 0.3) 50%, rgba(20, 28, 37, 0.1) 100%);
    z-index: 2;
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 40px;
    z-index: 3;
}

.slide-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: white;
}

.slide-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #ddd;
}

.slide-content .highlight {
    color: #ff3d00;
    font-weight: bold;
}

.slide-btn {
    background-color: #ff3d00;
    color: white;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: bold;
    width: fit-content;
    transition: background-color 0.3s;
}

.slide-btn:hover {
    background-color: #cc3100;
}

.slider-nav {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.3s;
}

.slider-dot.active {
    background-color: #fff;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.mobile-banner {
    display: none;
    background-color: #ff3d00;
    padding: 15px;
    text-align: center;
    margin-bottom: 15px;
    border-radius: 8px;
}

.mobile-banner h3 {
    font-size: 18px;
    margin-bottom: 5px;
}
 
.mobile-banner p {
    font-size: 14px;
    margin-bottom: 10px;
}

.mobile-banner .claim-btn {
    background-color: #fff;
    color: #ff3d00;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: bold;
    display: inline-block;
}

.tourney-banner {
    display: none;
    background-color: #1e2935;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.tourney-banner h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.tourney-banner p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 0;
}

.tourney-banner .highlight {
    color: #ff3d00;
    font-weight: bold;
}

.game-categories {
    margin-bottom: 20px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 5px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.game-categories::-webkit-scrollbar {
    display: none;
}

.categories-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 90%;
}

.tab-btn {
    background-color: #1e2935;
    color: #aaa;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
    margin-bottom: 5px;
}

.tab-btn.active {
    background-color: #283546;
    color: white;
}

.search-providers {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.search-box {
    background-color: #1e2935;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
}

.providers-btn {
    background-color: #1e2935;
    color: #aaa;
    padding: 8px 15px;
    border-radius: 4px;
}

.sub-categories {
    margin-bottom: 20px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 5px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.sub-categories::-webkit-scrollbar {
    display: none;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
    margin-bottom: 30px;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    padding: 0 10px;
    box-sizing: border-box;
}

.game-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
}

.game-card:hover {
    transform: translateY(-5px);
}

.game-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.game-title {
    font-size: 14px;
    font-weight: bold;
    color: white;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background: linear-gradient(0deg, rgba(0,0,0,0.8), transparent);
    text-align: center;
}

.game-subtitle {
    font-size: 12px;
    color: #ccc;
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
}

.game-card.new:before,
.game-card.exclusive:before {
    content: "NEW";
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #ff3d00;
    color: white;
    padding: 2px 8px;
    font-size: 10px;
    border-radius: 3px;
    z-index: 1;
}

.game-card.exclusive:before {
    content: "EXCLUSIVE";
    background-color: #00a651;
}

.load-more-btn {
    display: block;
    width: 200px;
    background-color: #ff3d00;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    margin: 0 auto 40px;
    font-weight: bold;
    animation: pulse-load-more 2s infinite;
}

@keyframes pulse-load-more {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 61, 0, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 61, 0, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 61, 0, 0);
    }
}

.now-winning {
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}

.winner-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 10px;
}

.winner-card {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.winner-card img {
    width: 100%;
    height: 50px;
    object-fit: cover;
}

.winner-amount {
    font-size: 12px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 5px;
    background: rgba(0,0,0,0.7);
    text-align: center;
}

footer {
    background-color: #141c25;
    padding: 30px 20px;
    border-top: 1px solid #252e3b;
    text-align: center;
}

.footer-top {
    margin-bottom: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-column h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #ccc;
    text-align: center;
}

.footer-column ul {
    text-align: center;
    padding-left: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #888;
    font-size: 14px;
}

.footer-column ul li a:hover {
    color: #fff;
}

.support-buttons, .promo-buttons, .social-icons, .app-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
}

.support-btn, .join-btn, .app-btn {
    background-color: #1e2935;
    color: #ccc;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: #1e2935;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 20px;
}

.footer-section {
    margin-bottom: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #ccc;
    text-align: center;
}

.payment-providers, .payment-methods, .certifications {
    margin-bottom: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.provider-logos, .method-logos, .cert-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.provider-logos img, .method-logos img, .cert-logos img {
    height: 50px;
    object-fit: contain;
    opacity: 0.7;
}

.legal-info {
    margin-bottom: 30px;
    font-size: 12px;
    color: #666;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.legal-info p {
    margin-bottom: 10px;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #252e3b;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.support-247, .language-select {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.certification {
    display: flex;
    align-items: center;
    gap: 10px;
}

.certification img {
    height: 40px;
}

.cert-info {
    font-size: 12px;
    color: #ccc;
}

.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 10px;
    z-index: 1;
}

.badge.hot {
    background-color: #ff3d00;
}

.badge.new {
    background-color: #00a651;
}

.game-card:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s;
}

.game-card:hover:after {
    opacity: 1;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background-color: rgba(255, 61, 0, 0.9);
    color: white;
    width: auto;
    min-width: 100px;
    height: 36px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    opacity: 0;
    transition: all 0.3s;
    z-index: 1;
    animation: pulse-play 2s infinite;
    font-weight: bold;
    letter-spacing: 0.5px;
}

@keyframes pulse-play {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 61, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 61, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 61, 0, 0);
    }
}

.game-card:hover .play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.play-btn i {
    margin-right: 8px;
    font-size: 14px;
}

@media screen and (min-width: 1200px) {
    .header-slider {
        height: 300px;
    }
    
    .slide-content h2 {
        font-size: 32px;
    }
    
    .slide-content p {
        font-size: 18px;
    }
}

@media screen and (min-width: 1920px) {
    .header-slider {
        height: 400px;
    }
    
    .slide-content {
        padding: 0 60px;
    }
    
    .slide-background img {
        object-fit: contain;
    }
}

@media screen and (min-width: 2560px) {
    .header-slider {
        height: 500px;
    }
    
    .slide-content h2 {
        font-size: 38px;
    }
    
    .slide-content p {
        font-size: 22px;
    }
    
    .slide-btn {
        padding: 12px 30px;
        font-size: 18px;
    }
    
    .slide-background img {
        object-fit: contain;
    }
}

@media screen and (min-width: 3840px) {
    .header-slider {
        height: 600px;
    }
    
    .main-container, .content, .header-slider, .games-grid, .footer-columns, 
    .footer-section, .payment-providers, .payment-methods, .certifications, 
    .legal-info, .footer-bottom {
        max-width: 2400px;
    }
    
    .slide-background img {
        object-fit: contain;
    }
}

@media screen and (max-width: 1024px) {
    .main-container {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        order: 2;
        height: auto;
        position: static;
        max-height: 300px;
        overflow-y: auto;
    }

    .content {
        order: 1;
    }

    .sidebar-menu {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
    }

    .sidebar-menu li a {
        padding: 8px 15px;
    }

    .header-right {
        flex-direction: column;
        align-items: flex-end;
    }
}

@media screen and (min-width: 1024px) {
    .header-slider {
        height: 240px;
    }
}

@media screen and (max-width: 768px) {
    header {
        flex-wrap: wrap;
    }
    
    .logo {
        order: 1;
        width: 50%;
    }
    
    .auth-buttons {
        order: 2;
        width: 50%;
        display: flex;
        justify-content: flex-end;
    }
    
    .main-nav {
        order: 3;
        width: 50%;
        margin-top: 10px;
    }
    
    .deposit-bonus {
        order: 4;
        width: 50%;
        text-align: right;
        margin-top: 10px;
    }

    .header-slider {
        height: 180px;
    }
    
    .slide-content {
        width: 100%;
        padding: 0 20px;
    }
    
    .slide-background img {
        object-position: center center;
    }
    
    .slide-content h2 {
        font-size: 22px;
        margin-bottom: 8px;
    }
    
    .slide-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .slide-btn {
        padding: 8px 20px;
        font-size: 14px;
    }

    .content {
        padding: 10px;
    }
    
    .game-categories {
        margin-bottom: 10px;
    }
    
    .categories-tabs {
        gap: 5px;
    }
    
    .tab-btn {
        padding: 5px 10px;
        font-size: 12px;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 10px;
        padding: 0 5px;
    }
    
    .game-card img {
        height: 100px;
    }
    
    .game-title {
        font-size: 12px;
        padding: 8px 5px;
    }
    
    .game-subtitle {
        font-size: 10px;
        bottom: 25px;
    }
    
    .load-more-btn {
        width: 160px;
        padding: 8px 15px;
        margin-bottom: 20px;
        font-size: 13px;
    }
    
    .winner-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .winner-card img {
        height: 40px;
    }
    
    .winner-amount {
        font-size: 10px;
        padding: 3px;
    }

    .sidebar {
        display: none !important;
    }

    .mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
        background-color: #0f1923;
    }
    
    .mobile-logo img {
        height: 25px;
    }
    
    .mobile-auth {
        display: flex;
        gap: 10px;
    }
    
    .mobile-nav {
        background-color: #141c25;
        padding: 8px 5px;
        overflow-x: auto;
        white-space: nowrap;
        scrollbar-width: none;
    }
    
    .mobile-nav::-webkit-scrollbar {
        display: none;
    }
    
    .mobile-nav-items {
        display: inline-flex;
        gap: 15px;
    }
    
    .mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 12px;
        color: #aaa;
    }
    
    .mobile-nav-item i {
        font-size: 18px;
        margin-bottom: 5px;
    }
    
    .mobile-nav-item.active {
        color: #fff;
    }
    
    .mobile-search {
        padding: 10px;
        position: sticky;
        top: 0;
        background-color: #0f1923;
        z-index: 10;
    }
    
    .search-input {
        width: 100%;
        padding: 8px 12px;
        background-color: #1e2935;
        border: none;
        border-radius: 4px;
        color: #fff;
        font-size: 12px;
    }
}

@media screen and (max-width: 480px) {
    .header-slider {
        height: 160px;
    }
    
    .slide-content h2 {
        font-size: 20px;
    }
    
    .slide-content p {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .slide-btn {
        padding: 6px 15px;
        font-size: 12px;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 8px;
    }
    
    .categories-tabs {
        gap: 4px;
        max-width: 80%;
    }
    
    .tab-btn {
        padding: 4px 8px;
        font-size: 11px;
    }
    
    .winner-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }
    
    .provider-logos, .method-logos, .cert-logos {
        justify-content: center;
    }
    
    .register-btn, .login-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .deposit-bonus {
        font-size: 12px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .play-btn {
        min-width: 80px;
        height: 32px;
        font-size: 12px;
    }
}

@media screen and (max-width: 375px) {
    .header-slider {
        height: 140px;
    }
    
    .slide-content {
        padding: 0 15px;
    }
    
    .slide-content h2 {
        font-size: 18px;
    }
    
    .slide-content p {
        font-size: 11px;
        margin-bottom: 10px;
    }
    
    .slide-btn {
        padding: 5px 12px;
        font-size: 11px;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 6px;
    }
    
    .game-card img {
        height: 85px;
    }
    
    .winner-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
    }
    
    .auth-buttons {
        flex-direction: column;
        gap: 5px;
    }
    
    .register-btn, .login-btn {
        width: 100%;
        text-align: center;
        padding: 5px 8px;
        font-size: 11px;
    }
    
    .mobile-nav-items {
        gap: 10px;
    }
    
    .mobile-nav-item i {
        font-size: 16px;
    }
    
    .mobile-nav-item {
        font-size: 10px;
    }
}

@media screen and (max-width: 320px) {
    .header-slider {
        height: 130px;
    }
    
    .slide-content h2 {
        font-size: 16px;
    }
    
    .slide-content p {
        font-size: 10px;
        margin-bottom: 8px;
    }
    
    .slide-btn {
        padding: 5px 10px;
        font-size: 10px;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
        gap: 4px;
    }
    
    .game-card img {
        height: 75px;
    }
    
    .winner-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
    }
    
    .game-title {
        font-size: 10px;
        padding: 6px 4px;
    }
	
	.game-subtitle {
        font-size: 9px;
        bottom: 22px;
    }
}

.mobile-footer {
    padding: 15px;
    text-align: center;
}

.mobile-footer-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.mobile-footer-item {
    padding: 10px 0;
    border-bottom: 1px solid #252e3b;
}

.mobile-footer-title {
    font-size: 14px;
    color: #ccc;
    display: flex;
    justify-content: space-between;
}

.mobile-footer-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}

.mobile-footer-item.active .mobile-footer-content {
    max-height: 500px;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #141c25;
}

::-webkit-scrollbar-thumb {
    background: #283546;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #384556;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.register-btn:hover {
    animation: pulse 1s infinite;
}

.scroll-top-btn {
    position: fixed;
    bottom: 10px;
    right: 5px;
    width: 40px;
    height: 40px;
    background-color: #ff3d00;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 100; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.3); 
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background-color: #e63600;
    transform: translateY(-3px); 
}

@media screen and (max-width: 768px) {
    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 35px;
        height: 35px;
    }
}

.mobile-menu-toggle {
    display: none;
    background: none;
    color: white;
    font-size: 24px;
}

@media screen and (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .sidebar {
        display: none !important;
    }
}

@keyframes flash {
    0%, 100% { color: white; }
    50% { color: #ff3d00; }
}

.highlight {
    animation: flash 1s;
}

.mobile-header, .mobile-nav, .mobile-search {
    display: none;
}

@media screen and (max-width: 768px) {
    .mobile-header, .mobile-nav, .mobile-search {
        display: block;
    }
    
    header {
        display: none !important;
    }
    
.main-container {
        margin-top: 0;
    }
}

.tab-btn i {
    margin-right: 5px;
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    .tab-btn i {
        margin-right: 3px;
        font-size: 12px;
    }
}

.section-divider {
    border-top: 1px solid #252e3b;
    margin: 20px auto;
    width: 90%;
}

.article-section {
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
    background-color: #1e2935;
    border-radius: 8px;
    color: #fff;
}

.article-section p {
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 16px;
    color: #ddd;
    padding-top: 10px;
}

.article-section ul li:last-child,
.article-section ol li:last-child {
    margin-bottom: 30px;
}

.article-section ul, 
.article-section ol {
    margin: 20px 0 30px 20px;
    padding-left: 20px;
}

.article-section h2 {
    margin-top: 40px;
    margin-bottom: 25px;
}

.article-section h2 + p {
    margin-top: 25px;
}

.article-section .section-divider {
    margin: 40px auto;
}

.app-article p {
    margin-top: 35px;
    margin-bottom: 35px;
    line-height: 2;
    font-size: 16px;
    color: #ddd;
}

.app-article h2 {
    margin-top: 50px;
    margin-bottom: 30px;
    color: #ff3d00;
    font-size: 24px;
    font-weight: bold;
}

.app-article ul,
.app-article ol {
    margin-top: 35px;
    margin-bottom: 35px;
    padding-left: 20px;
}

.app-article li {
    margin-bottom: 15px;
    line-height: 1.8;
}


.testimonial-slider {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  position: relative;
}

.testimonial {
  display: none;
  background-color: #1a2733;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease;
}

.testimonial.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  flex-shrink: 0;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #e0e0e0;
}

.testimonial-content {
  margin-bottom: 15px;
  color: #c0c0c0;
}

.testimonial-info {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  font-size: 14px;
  color: #8a9aa8;
}

.testimonial-author {
  font-weight: bold;
}

.slider-controls {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.control-btn {
  background-color: #1a2733;
  color: #e0e0e0;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 10px;
  cursor: pointer;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.control-btn:hover {
  background-color: #2c3e50;
}

.control-btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #e0e0e0;
  stroke-width: 2;
}


@media (max-width: 768px) {
  .testimonial {
    padding: 20px 15px;
  }
  
  .testimonial-title {
    font-size: 18px;
  }
  
  .testimonial-info {
    flex-direction: column;
    gap: 5px;
  }
}

@media (max-width: 480px) {
  .testimonial-slider {
    padding: 10px;
  }
  
  .testimonial {
    padding: 15px 10px;
  }
  
  .testimonial-title {
    font-size: 16px;
  }
  
  .control-btn {
    width: 36px;
    height: 36px;
  }
}


.banner-float-bar-bg {
    position: fixed;
    bottom: -130px;
    left: 0;
    right: 0;
    top: auto;
    color: #fff;
    background-color: #313334;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.show-banner {
    margin-bottom: 114px;
}

.show-banner .banner-float-bar-bg {
    opacity: 1;
    visibility: visible;
    bottom: 0;
    z-index: 99;
}

.banner-float-bar-bg-ins {
    padding: 10px 0;
}

.banner-float-bar {
    margin: 0 15px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    height: 94px;
    position: relative;
}

.banner-float-bar-data {
    width: 100%;
    max-width: 50%;
}

.banner-float-bar-data-ins {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.banner-float-bar-logo {
    flex: 0 0 120px;
}

.banner-float-bar-logo-img {
    line-height: 1;
}

.banner-float-bar-logo-img img {
    max-width: 100px;
    max-height: 80px;
    object-fit: contain;
}

.banner-float-bar-title-wrap {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
}

.banner-float-bar-rating {
    font-size: 16px;
    line-height: 1;
    display: flex;
    align-items: center;
}

.banner-float-bar-rating .star-rating {
    margin-bottom: 3px;
    display: flex;
    margin-right: 5px;
}

.banner-float-bar-rating .star-rating .star {
    color: #fed330;
    display: inline-block;
    font-size: 24px;
    font-style: normal;
    line-height: 1;
    text-align: center;
    text-decoration: inherit;
    vertical-align: top;
    padding: 0 3px 0 0;
}

.banner-float-bar-rating span {
    color: #7f8c8d;
}

.banner-float-bar-button {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 30px;
}

.banner-float-bar-button-wrap .btn {
    display: inline-block;
    font-size: 18px;
    line-height: 1;
    padding: 14px 30px;
    text-align: center;
    margin: 0;
    font-weight: 700;
    border-radius: 4px;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -ms-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    text-decoration: none;
    border: 0;
    height: auto;
    width: auto;
}

.banner-float-bar-button-wrap .btn-primary, 
.banner-float-bar-button-wrap .btn-primary:hover {
    color: #fff;
    background: #ff2400;
}

.banner-float-bar-button-wrap .btn-secondary {
    color: #fff;
    background: 0 0;
    border: 1px solid;
    margin-right: 10px;
}

.banner-float-bar-close {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 20px;
    cursor: pointer;
    color: #aaa; 
    transition: color 0.3s ease;
    z-index: 100;
}

.banner-float-bar-close:hover {
    color: #fff; 
}

@media screen and (max-width: 768px) {
    .banner-float-bar-button-wrap .btn-secondary {
        display: none;
    }
    .banner-float-bar-logo-img img {
        max-height: 40px;
    }
    .banner-float-bar-title-wrap {
        font-size: 20px;
    }
    .banner-float-bar-button-wrap .btn {
        padding: 14px 10px;
    }
}

:root {
    --ch-popup-primary-color: #ff2400;
    --ch-popup-text-color: #000000;
    --ch-popup-overlay-background-color: rgba(0, 0, 0, 0.7);
    --ch-popup-background-color: #ffffff;
    --ch-popup-loading-bar: #ff2400;
    --ch-popup-loading-bar-stripe: #ff2400;
    --ch-popup-button-text-color: #FFFF;
    --ch-popup-button-hover-text-color: #ffffff;
    --ch-popup-button-background-color: #ff2400;
    --ch-popup-button-hover-color: #f34e24;
}

html.ch-popup-opened,
body.ch-popup-opened {
    overflow: hidden;
}

.ch-popup {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 10001;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    color: var(--ch-popup-text-color);
    font-weight: normal;
    font-size: 1em;
    background-color: var(--ch-popup-overlay-background-color);
}

.ch-popup:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(3px);
}

.ch-popup__wrapper {
    width: 100%;
    min-height: calc(100% - 3.5rem);
    max-width: 670px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.ch-popup__close {
    top: 20px;
    right: 20px;
    width: 12px;
    position: absolute;
    line-height: 1;
    cursor: pointer;
    z-index: 20;
}

.ch-popup__bg {
    background-color: var(--ch-popup-background-color);
    margin: 0 auto;
    max-width: 670px;
    width: 100%;
    overflow: auto;
    border-radius: 12px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1), 0 18px 26px 6px rgba(0, 0, 0, 0.1);
}

.ch-popup__body {
    width: 100%;
    height: 100%;
    max-width: 670px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 20px 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    position: relative;
}

.ch-popup__caption {
    padding: 10px 20px;
}

.ch-popup__picture {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.ch-popup__picture img {
    max-width: calc(100vh - 6.5rem) !important;
    object-fit: contain;
}

.ch-popup__content {
    width: 100%;
    max-width: 670px;
}

.ch-popup__content img {
    width: 100%;
    object-fit: contain;
    max-height: calc(100vh - 6rem) !important;
}

.ch-popup__grid {
    display: grid;
    align-items: center;
}

.ch-popup__grid_2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ch-popup__step {
    display: none;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
}

.ch-popup__step:nth-child(1) {
    padding-right: 0;
    padding-left: 40px;
    text-align: left;
}

.ch-popup__step:nth-child(2) {
    padding-bottom: 60px;
}

.ch-popup__step:nth-child(2) .ch-popup__step-title {
    max-width: 450px;
    margin: 0 auto 65px;
}

.ch-popup__step:nth-child(3) .ch-popup__step-over-title {
    margin-bottom: 10px;
}

.ch-popup__step:nth-child(3) .ch-popup__step-title {
    font-size: 24px;
    margin-bottom: 40px;
}

.ch-popup__step:nth-child(3) .ch-popup__button {
    font-size: 12px;
    line-height: 1.2;
    padding: 10px 25px;
    min-height: 52px;
    margin: 0;
}

.ch-popup__step.active {
    display: block;
}

.ch-popup__step-over-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--ch-popup-primary-color);
}

.ch-popup__step-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 20px;
}

.ch-popup__step-title {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 600;
}

.ch-popup__loading-bar-container {
    width: 100%;
    height: 16px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background-color: #FAF8F8;
    border-radius: 20px;
    position: relative;
	margin-top: 60px;
}

.ch-popup__loading-bar-label {
    font-weight: 400;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: -25px;
    left: 0;
	transform: translateX(-50%);
}

.ch-popup__loading-bar-label i {
    font-style: normal;
}

.ch-popup__loading-bar-label:nth-child(1) {
    left: 0;
    transform: translateX(0);
}

.ch-popup__loading-bar-label:nth-child(2) {
    left: 50%;
    transform: translateX(-50%);
    color: var(--ch-popup-primary-color);
}

.ch-popup__loading-bar-label:nth-child(3) {
    left: 100%;
    transform: translateX(-100%); 
}

.ch-popup__loading-bar .ch-popup__loading-bar-label {
    left: auto;
    right: -18px;
    color: var(--ch-popup-primary-color);
}

.ch-popup__loading-bar {
    width: 0%;
    height: calc(100% + 2px);
    margin-top: -1px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    position: relative;
    background: repeating-linear-gradient(-45deg,
            var(--ch-popup-loading-bar),
            var(--ch-popup-loading-bar) 10px,
            var(--ch-popup-loading-bar-stripe) 10px,
            var(--ch-popup-loading-bar-stripe) 20px);
    transition: width 0.2s linear;
}

.ch-popup__loading-bar .ch-popup__loading-label {
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ch-popup-primary-color);
    font-size: 14px;
    line-height: 1;
}

.ch-popup__loading-label {
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 400;
    font-size: 14px;
    color: var(--ch-popup-primary-color);
    line-height: 1;
}

.ch-popup__loading-bar:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: blur(14px);
    background: linear-gradient(270deg, var(--ch-popup-loading-bar) 0%, rgba(181, 28, 120, 0) 100%);
}

.ch-popup__button {
    min-height: 56px;
    align-items: center;
    justify-content: center;
    display: inline-flex;
    padding: 10px 25px;
    margin: 10px 0;
    border-radius: 40px;
    background-color: var(--ch-popup-button-background-color);
    color: var(--ch-popup-button-text-color);
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.ch-popup__button:hover {
    color: var(--ch-popup-button-hover-text-color);
    background-color: var(--ch-popup-button-hover-color);
}

.ch-popup__casino {
    display: grid;
    align-items: center;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    margin-bottom: 10px;
    gap: 20px;
    grid-template-columns: 1fr 1fr 1fr min-content;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1), 0 0 2px 1px rgba(0, 0, 0, 0.02);
    background: #fff;
}

.ch-popup__casino-logo img {
    max-width: 90px;
}

.ch-popup__casino-promo-code {
    margin: 0 auto;
    height: 40px;
    width: 90px;
    border-radius: 3px;
    display: flex;
    font-size: 14px;
    font-weight: 500;
    justify-content: center;
    align-items: center;
    background: url(data:image/jpeg;base64,iVBORw0KGgoAAAANSUhEUgAAAFoAAAAoCAYAAAB+Qu3IAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAHKSURBVHgB7ZuxSgNBFEWvMSiC26hNUgWErbRJqlilsjIfkMrOj/IH/ACtrFKLWllZpdLKKjYKou86s7Kuu2F3ZZYQ7oFL2JkJPC7Lm7fMmzUUE5tGpkfTNPWccOc18nMJl6Zn09jUSY1fmOamiSlKjZ/737PU2Nyv75pOUuNPpqsFsQy8EqY+/hHyY8zGksSYF0vk12djSWKcma5RgzgTtChmD79fCLFs9Ey7EFXYNB0UTbZyxpiLhqY3iCp8mg5N/bzJ9cwzNy/mmhu4zUKU5wNuQzwybSDj3xrcpseJB7h08WeRqMQ2XCXCaocv7ndV04YrfW79oheI//IKZzJh3qbpMY1mnXgPEYKZVwdCrBwTiNBMWEdHEKGJWhCNIKMbIvky1AeKWB1UTIenwxw9hgjNWJthQ8johpDRDdKFCI08bhK1FIRnwBwto8Mz0GbYEDK6IWj0HCI08lisIDozDM/PmaFKvDD04BqUIp6wMFG/w3UpsSWs7Z9FPdidtA/n5xacl7Psoh5cKokh6pDcChiWWcwmvVPo5KUONLlf5Q80eQeiCuzCVSZYZnhNQNVIOXhZ6HjRgvaCOe6W7F5ngp9C19/KXH8r5AtDRFojxhaf1gAAAABJRU5ErkJggg==)
}

.ch-popup__casino-text {
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    line-height: 1.2;
}

.ch-popup-overlay,
.ch-popup {
    display: none;
}

.ch-popup-opened .ch-popup-overlay {
    display: block;
}

.ch-popup-opened .ch-popup {
    display: flex;
}

@media (max-width:670px) {
    .ch-popup__content img {
        width: auto;
    }

    .ch-popup__grid_2 {
        grid-template-columns: 1fr;
    }

    .ch-popup__step:nth-child(1) {
        text-align: center;
        padding-left: 0;
    }

    .ch-popup__step:nth-child(1) .ch-popup__grid-item:first-child {
        order: 2;
    }

    .ch-popup__casino {
        padding-bottom: 15px;
    }

    .ch-popup__casino-logo {
        grid-column: 1/-1;
    }

    .ch-popup__casino-text {
        grid-column: 1/3;
    }

    .ch-popup__casino-promo-code {
        grid-column: 3/-1;
    }

    .ch-popup__casino .ch-popup__button {
        grid-column: 1/-1;
        max-width: 200px;
        justify-self: center;
    }
}

@media (max-width:767px) {
    .ch-popup__bg {
        max-width: 90vw;
    }

    .ch-popup__step-over-title {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .ch-popup__step-title {
        font-size: 24px;
    }

    .ch-popup__button {
        font-size: 16px;
    }

    .ch-popup__step {
        padding-left: 0;
        padding-right: 0;
    }

    .ch-popup__step:nth-child(3) .ch-popup__step-over-title,
    .ch-popup__step:nth-child(3) .ch-popup__step-title {
        font-size: 20px;
    }

    .ch-popup__step:nth-child(3) .ch-popup__step-title {
        margin-bottom: 20px;
    }
}