/* Página Cassino - PINBET */

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Content - Compensar header fixo + barra de pesquisa */
.main-content {
    padding-top: 0; /* Removido pois a barra de pesquisa agora está fora */
}

@media (max-width: 768px) {
    .main-content {
        padding-top: 0; /* Removido pois a barra de pesquisa agora está fora */
    }
}

/* Casino Search - Sobreposto na imagem e sticky no topo */
.mostplayed-container-wrapper {
    position: relative;
    overflow: visible;
    padding-top: 5px;
    margin-bottom: 0;
}

.casinoSearch-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    z-index: 10;
    padding: 0;
    transition: all 0.3s ease;
}

/* Quando a página rolar, a barra fica sticky no topo */
.casinoSearch-container.sticky {
    position: fixed;
    top: 110px; /* 40px promo bar + 70px header */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .casinoSearch-container.sticky {
        top: calc(35px + 56px + 35px); /* promo + header + menu mobile */
        width: 100%;
        max-width: 100%;
        padding: 6px 15px;
        border-radius: 0;
    }
}

/* Desktop - Remover padding extra do main-content */
@media (min-width: 769px) {
    .main-content {
        padding-top: 0; /* Removido para colar a seção mostplayed no header */
    }
    
    .mostplayed-section {
        margin-top: 0;
        padding-top: 0;
    }
    
    .mostplayed-container-wrapper {
        padding-top: 0; /* Removido para colar no header */
    }
}

.casinoSearch {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
}

.casinoSearch .bc-i-search {
    position: absolute;
    left: 12px;
    color: #99ff00;
    font-size: 16px;
    z-index: 2;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Fallback: se bc-i-search não tiver conteúdo, usar Font Awesome */
.casinoSearch .bc-i-search:empty::before {
    content: "\f002"; /* Font Awesome search icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.casinoSearch #casino-search-input {
    width: 100%;
    padding: 8px 12px 8px 40px;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(153, 255, 0, 0.3);
    border-radius: 6px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    outline: none;
    transition: all 0.3s ease;
    height: 36px;
    line-height: 1.4;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.casinoSearch #casino-search-input:focus {
    border-color: rgba(153, 255, 0, 0.6);
    background: rgba(26, 26, 26, 0.95);
    box-shadow: 0 0 15px rgba(153, 255, 0, 0.4);
}

.casinoSearch #casino-search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Mobile Search */
@media (max-width: 768px) {
    .casinoSearch-container {
        width: 95%;
        max-width: 100%;
    }
    
    .main-content {
        padding-top: calc(35px + 56px + 35px); /* promo + header + menu mobile */
    }
    
    .casinoSearch {
        max-width: 100%;
    }
    
    .casinoSearch #casino-search-input {
        padding: 6px 10px 6px 35px;
        font-size: 12px;
        height: 32px;
    }
    
    .casinoSearch .bc-i-search {
        left: 10px;
        font-size: 14px;
    }
}

/* Hero Banner - corrigido */
.hero-banner,
.hero-banner-carousel,
.banner-image-container {
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    position: relative !important;
    top: 0 !important;
    height: auto !important;
    overflow: hidden !important;
}

/* Ajuste visual do banner e imagens */
.hero-banner-carousel img,
.banner-slide img,
.banner-image {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    margin: 0 auto !important;
}


/* Para dispositivos móveis — mantém proporção e evita altura fixa */
@media (max-width: 768px) {
    .hero-banner-carousel,
    .carousel-container,
    .banner-slide {
        min-height: auto !important;
        height: auto !important;
    }

    .hero-banner-carousel img,
    .banner-slide img {
        max-height: 60vh !important;
    }
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.banner-text {
    flex: 1;
    z-index: 3;
}

.banner-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.highlight {
    color: #99ff00;
    text-shadow: 0 0 20px rgba(153, 255, 0, 0.5);
}

.banner-characters {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.character img {
    width: 120px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.character img:hover {
    transform: translateY(-10px);
}

.banner-games {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.game-thumbnails {
    display: flex;
    gap: 15px;
}

.game-thumb img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.game-thumb img:hover {
    transform: scale(1.1);
}

.plus-signs {
    display: flex;
    gap: 15px;
    align-items: center;
}

.plus {
    font-size: 24px;
    font-weight: 700;
    color: #99ff00;
    text-shadow: 0 0 10px rgba(153, 255, 0, 0.5);
}

.banner-logo {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 4;
}

.logo-text {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
}

.logo-exclamation {
    color: #99ff00;
}

.responsible-gaming {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 4;
}

.age-limit {
    background: #99ff00;
    color: #000000;
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.responsible-text {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.banner-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 4;
    pointer-events: none;
}

.banner-controls button {
    pointer-events: all;
}

.banner-arrow {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-arrow:hover {
    background: #99ff00;
    color: #000000;
    transform: scale(1.1);
}

/* Game Categories */
.game-categories {
    background: #2a004a;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.categories-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.category-btn {
    background: #6a1b9a;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 12px 24px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.category-btn:hover {
    background: #99ff00;
    color: #000000;
    border-color: #99ff00;
    transform: translateY(-2px);
}

.category-btn.active {
    background: #99ff00;
    color: #000000;
    border-color: #99ff00;
    box-shadow: 0 4px 15px rgba(153, 255, 0, 0.3);
}

.search-section {
    display: flex;
    justify-content: center;
}

.search-box {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #99ff00;
    font-size: 16px;
}

.search-input {
    width: 100%;
    background: #6a1b9a;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 15px 15px 15px 45px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #99ff00;
    box-shadow: 0 0 0 2px rgba(153, 255, 0, 0.2);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Featured Games */
.featured-games {
    padding: 60px 0;
    background: #1a1a1a;
}

.section-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.game-card {
    background: #2a004a;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: #99ff00;
}

.game-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.play-btn {
    background: #99ff00;
    border: none;
    border-radius: 25px;
    padding: 12px 24px;
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.play-btn:hover {
    background: #7acc00;
    transform: scale(1.05);
}

.game-info {
    padding: 20px;
}

.game-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.game-provider {
    color: #99ff00;
    font-size: 14px;
    margin-bottom: 12px;
}

.game-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rtp, .min-bet {
    color: #cccccc;
    font-size: 12px;
    font-weight: 500;
}

/* Biggest Wins */
.biggest-wins {
    padding: 60px 0;
    background: #2a004a;
}

.wins-carousel {
    position: relative;
    overflow: hidden;
}

.wins-track {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.wins-track::-webkit-scrollbar {
    height: 6px;
}

.wins-track::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 3px;
}

.wins-track::-webkit-scrollbar-thumb {
    background: #99ff00;
    border-radius: 3px;
}

.win-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 20px;
    min-width: 250px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.win-card:hover {
    transform: translateY(-5px);
    border-color: #99ff00;
}

.win-image {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.win-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.win-game {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.win-amount {
    color: #99ff00;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.win-player {
    color: #cccccc;
    font-size: 14px;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.carousel-arrow:hover {
    background: #99ff00;
    color: #000000;
}

.carousel-arrow.left {
    left: 20px;
}

.carousel-arrow.right {
    right: 20px;
}

/* Providers Section */
.providers-section {
    padding: 60px 0;
    background: #1a1a1a;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.provider-card {
    background: #2a004a;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.provider-card:hover {
    transform: translateY(-5px);
    border-color: #99ff00;
}

.provider-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #6a1b9a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.provider-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.provider-name {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .banner-title {
        font-size: 32px;
    }
    
    .banner-characters {
        justify-content: center;
    }
    
    .character img {
        width: 100px;
        height: 120px;
    }
    
    .categories-nav {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .category-btn {
        flex-shrink: 0;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .carousel-arrow {
        display: none;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .win-card {
        min-width: 200px;
    }
    
    .provider-card {
        padding: 20px;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.game-card {
    animation: slideInUp 0.6s ease forwards;
}

.game-card:nth-child(1) { animation-delay: 0.1s; }
.game-card:nth-child(2) { animation-delay: 0.2s; }
.game-card:nth-child(3) { animation-delay: 0.3s; }
.game-card:nth-child(4) { animation-delay: 0.4s; }
.game-card:nth-child(5) { animation-delay: 0.5s; }
.game-card:nth-child(6) { animation-delay: 0.6s; }

/* Focus states for accessibility */
button:focus,
input:focus {
    outline: 2px solid #99ff00;
    outline-offset: 2px;
}

/* Loading state */
.games-grid.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.games-grid.loading::after {
    content: '';
    width: 50px;
    height: 50px;
    border: 4px solid rgba(153, 255, 0, 0.3);
    border-top: 4px solid #99ff00;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Carrossel de Banners */
.hero-banner-carousel {
    background: transparent;
    padding: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s ease-in-out;
    transform: translateX(100%);
}

.banner-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    position: relative;
}

.banner-slide.prev {
    transform: translateX(-100%);
}

/* Controles do Carrossel */
.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.carousel-arrow {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-arrow:hover {
    background: #99ff00;
    color: #000000;
    border-color: #99ff00;
    transform: scale(1.1);
}

.carousel-arrow.left {
    left: 20px;
}

.carousel-arrow.right {
    right: 20px;
}

/* Indicadores do Carrossel */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #99ff00;
    border-color: #99ff00;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(153, 255, 0, 0.7);
    border-color: #99ff00;
}

/* Estilos específicos para cada banner */
.banner-subtitle {
    font-size: 24px;
    color: #99ff00;
    margin: 20px 0;
    text-shadow: 0 0 10px rgba(153, 255, 0, 0.5);
}

.play-now-btn {
    background: #99ff00;
    color: #000000;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-top: 20px;
}

.play-now-btn:hover {
    background: #7acc00;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(153, 255, 0, 0.3);
}

/* Banner 2 - Diversão Garantida */
.banner-games-left {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.games-spiral {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: spiralRotate 10s linear infinite;
}

.game-icon {
    font-size: 30px;
    animation: bounce 2s ease-in-out infinite;
}

.game-icon:nth-child(2) { animation-delay: 0.2s; }
.game-icon:nth-child(3) { animation-delay: 0.4s; }
.game-icon:nth-child(4) { animation-delay: 0.6s; }
.game-icon:nth-child(5) { animation-delay: 0.8s; }
.game-icon:nth-child(6) { animation-delay: 1s; }

@keyframes spiralRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.banner-characters-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 30px;
    z-index: 2;
}

.banner-text-right {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    text-align: right;
    z-index: 3;
}

/* Banner 3 - Bônus Especial */
.bonus-elements {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.bonus-icon {
    font-size: 24px;
    animation: pulse 2s ease-in-out infinite;
}

.bonus-icon:nth-child(2) { animation-delay: 0.3s; }
.bonus-icon:nth-child(3) { animation-delay: 0.6s; }
.bonus-icon:nth-child(4) { animation-delay: 0.9s; }

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

/* Banner com Imagem */
.banner-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.banner-image:hover {
    transform: scale(1.05);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    z-index: 2;
}

.banner-logo-overlay {
    align-self: flex-end;
    margin-top: 20px;
}

.banner-logo-overlay .logo-text {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.banner-logo-overlay .logo-exclamation {
    color: #99ff00;
    text-shadow: 0 0 10px rgba(153, 255, 0, 0.8);
}

.responsible-gaming-overlay {
    align-self: flex-end;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.responsible-gaming-overlay .age-limit {
    background: #99ff00;
    color: #000000;
    padding: 5px 10px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 14px;
}

.responsible-gaming-overlay .responsible-text {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

/* Responsive para banner com imagem */
@media (max-width: 768px) {
    .banner-overlay {
        padding: 15px;
    }
    
    .banner-logo-overlay .logo-text {
        font-size: 24px;
    }
    
    .responsible-gaming-overlay {
        flex-direction: column;
        gap: 10px;
        padding: 8px 15px;
    }
    
    .responsible-gaming-overlay .age-limit {
        font-size: 12px;
        padding: 4px 8px;
    }
    
    .responsible-gaming-overlay .responsible-text {
        font-size: 12px;
        text-align: center;
    }
}

/* Casino Navigation */
.casino-navigation {
    background: #1a1a1a;
    padding: 20px 0;
    border-bottom: 1px solid #333;
}

.nav-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.nav-btn {
    background: transparent;
    border: 1px solid #6a1b9a;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-weight: 500;
    font-size: 14px;
}

.nav-btn:hover {
    background: #6a1b9a;
    border-color: #99ff00;
}

.nav-btn.active {
    background: #99ff00;
    color: #000000;
    border-color: #99ff00;
    font-weight: 600;
}

.search-section {
    display: flex;
    justify-content: center;
}

.search-box {
    position: relative;
    max-width: 600px;
    width: 100%;
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    font-size: 16px;
}

.search-input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    background: #6a1b9a;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #99ff00;
    box-shadow: 0 0 0 2px rgba(153, 255, 0, 0.2);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

/* Biggest Wins Section */
.biggest-wins-section {
    background: #1a1a1a;
    padding: 30px 0;
    border-bottom: 1px solid #333;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    padding: 4px 0;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
}

.section-title i {
    color: #ffd700;
    font-size: 18px;
}

.see-all-link {
    color: #99ff00;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.see-all-link:hover {
    color: #7acc00;
}

.wins-carousel {
    position: relative;
    overflow: hidden;
}

.wins-track {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 0;
    scroll-behavior: smooth;
    /* Ocultar scrollbar */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.wins-track::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.win-card {
    background: #2a2a2a;
    border-radius: 10px;
    padding: 15px;
    min-width: 200px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    position: relative;
}

.win-card:hover {
    border-color: #99ff00;
    transform: translateY(-2px);
}

.win-image {
    width: 100%;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
    position: relative;
}

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

.win-player-id {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: #99ff00;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 2;
}

.win-info {
    text-align: center;
}

.win-game {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.win-amount {
    color: #99ff00;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

/* Most Popular, Crash, Slot & Roleta Sections - Layout Contínuo */
.most-popular-section,
.crash-section,
.slot-section,
.pgsoft-section,
.pp-section,
.roleta-section,
.roletas-section {
    background: #1a0a2e;
    padding: 30px 0;
    border-bottom: none;
}

.carousel-controls {
    display: flex;
    gap: 10px;
}

.carousel-arrow {
    background: #6a1b9a;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background: #99ff00;
    color: #000000;
    border-color: #99ff00;
}

.games-carousel {
    position: relative;
    overflow: visible;
    margin-bottom: 20px;
    width: 100%;
}

.games-track {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scroll-padding: 10px;
    scrollbar-width: none; /* oculta a barra */
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    will-change: scroll-position;
}
.games-track::-webkit-scrollbar {
    display: none;
}

.game-card {
    background: #2a2a2a;
    border-radius: 10px;
    padding: 15px;
    min-width: 180px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    cursor: pointer;
}

.game-card:hover {
    border-color: #99ff00;
    transform: translateY(-2px);
}

.game-image {
    width: 100%;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
}

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

.game-info {
    text-align: center;
}

.game-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-provider {
    color: #cccccc;
    font-size: 12px;
    margin: 0;
}

.section-footer {
    text-align: right;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-buttons {
        gap: 10px;
    }
    
    .nav-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    .win-card,
    .game-card {
        min-width: 160px;
    }
    
    .game-image {
        height: 100px;
    }
}

/* Games Container - Layout Contínuo */
.games-container {
    background: #1a0a2e;
    padding: 0;
}

.game-section {
    padding: 30px 0;
    border-bottom: none;
}

.game-section:last-child {
    border-bottom: none;
}

/* Providers Section */
.providers-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #1a0a2e 0%, #16213e 100%);
}

.providers-carousel {
    overflow: hidden;
    position: relative;
}

.providers-track {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    
    /* Ocultar scrollbar */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.providers-track::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.provider-card {
    background: linear-gradient(135deg, #2a004a 0%, #4a148c 100%);
    border: 1px solid #6a1b9a;
    border-radius: 12px;
    padding: 20px;
    min-width: 200px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.provider-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.provider-card:hover::before {
    left: 100%;
}

.provider-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(106, 27, 154, 0.3);
    border-color: #99ff00;
}

.provider-logo {
    margin-bottom: 15px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.provider-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: brightness(1.1);
}

.provider-info {
    text-align: center;
}

.provider-name {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.provider-games {
    color: #99ff00;
    font-size: 12px;
    font-weight: 500;
    margin: 0;
    background: rgba(153, 255, 0, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
    display: inline-block;
}

/* Responsive para provedores */
@media (max-width: 768px) {
    .provider-card {
        min-width: 150px;
        padding: 15px;
    }
    
    .provider-logo {
        height: 50px;
    }
    
    .provider-logo img {
        max-height: 50px;
    }
    
    .provider-name {
        font-size: 14px;
    }
    
    .provider-games {
        font-size: 11px;
    }
}

/* Override - Interface Idêntica à Imagem */
.most-popular-section,
.crash-section,
.slot-section,
.pgsoft-section,
.pp-section,
.roleta-section,
.roletas-section {
    background: transparent !important;
    padding: 15px 0 !important;
}

.section-header {
    max-width: 1400px !important;
    padding: 4px 30px !important;
    margin-bottom: 8px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.section-header-left {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.section-title {
    font-size: 16px !important;
    font-weight: 600 !important;
    margin: 0 !important;
    line-height: 1.2 !important;
}

.section-controls {
    display: flex !important;
    gap: 4px !important;
    margin-left: 8px !important;
}

.scroll-btn,
.carousel-arrow {
    background: transparent !important;
    border: none !important;
    width: 24px !important;
    height: 24px !important;
    border-radius: 0 !important;
    padding: 0 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: opacity 0.3s ease !important;
}

.scroll-btn:hover,
.carousel-arrow:hover {
    opacity: 0.7 !important;
    background: transparent !important;
}

.scroll-btn i,
.carousel-arrow i {
    font-size: 14px !important;
    color: #8b5cf6 !important; /* Cor roxa/lilás da imagem */
}

.scroll-btn.left i,
.carousel-arrow.left i {
    color: #8b5cf6 !important;
}

.scroll-btn.right i,
.carousel-arrow.right i {
    color: #a78bfa !important; /* Tom mais claro para a seta direita */
}

/* Game Cards - Estilo da Imagem */
.games-carousel {
    max-width: 1400px !important;
    padding: 0 30px !important;
}

.games-track {
    gap: 12px !important;
    padding: 10px 0 !important;
}

.game-card {
    background: transparent !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 0 !important;
    min-width: 160px !important;
    max-width: 160px !important;
    cursor: pointer !important;
}

.game-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 20px rgba(153, 255, 0, 0.2) !important;
}

.game-image {
    height: 160px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    margin-bottom: 8px !important;
}

.game-image img {
    border-radius: 8px !important;
}

.game-info {
    padding: 0 !important;
    text-align: center !important;
}

.game-title {
    font-size: 13px !important;
    font-weight: 500 !important;
    margin-bottom: 4px !important;
    color: #ffffff !important;
}

.game-provider {
    font-size: 11px !important;
    color: rgba(255, 255, 255, 0.6) !important;
    background: none !important;
    padding: 0 !important;
}

/* Banner Arrows - Estilo da Imagem */
.banner-btn,
.banner-arrow {
    background: rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(5px) !important;
}

.banner-btn:hover,
.banner-arrow:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    transform: scale(1.05) !important;
}

.banner-btn i,
.banner-arrow i {
    font-size: 16px !important;
}

/* Botão Ver Todos */
.see-all-btn {
    background: transparent !important;
    border: none !important;
    color: #a78bfa !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    padding: 0 !important;
    transition: color 0.3s ease !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    line-height: 1.2 !important;
}

.see-all-btn:hover {
    color: #8b5cf6 !important;
}

.see-all-btn i {
    font-size: 10px !important;
}

/* ===================================================== */
/* 🔹 BARRA DE CATEGORIAS ABAIXO DO BANNER */
/* ===================================================== */
.casino-navigation {
    background: transparent !important;
    padding: 15px 0 !important;
    border-bottom: none !important;
    margin-top: 0 !important;
}

.nav-container {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.nav-categories {
    display: flex !important;
    gap: 10px !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scrollbar-width: none !important; /* Firefox */
    -ms-overflow-style: none !important; /* IE/Edge */
    -webkit-overflow-scrolling: touch !important; /* iOS */
    scroll-behavior: smooth !important;
    padding-bottom: 10px !important;
}

.nav-categories::-webkit-scrollbar {
    display: none !important; /* Chrome/Safari */
}

.category-btn {
    background: transparent !important;
    border: 1px solid #99ff00 !important;
    border-radius: 25px !important;
    color: #99ff00 !important;
    padding: 10px 22px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    flex-shrink: 0 !important;
}

.category-btn:hover {
    background: #99ff00 !important;
    color: #000 !important;
}

.category-btn.active {
    background: #99ff00 !important;
    border-color: #99ff00 !important;
    color: #000 !important;
}

/* 🔸 Primeira categoria sempre destacada */
.category-btn:first-child {
    background: #99ff00 !important;
    border-color: #99ff00 !important;
    color: #000 !important;
}

/* 🔸 Ajustes para mobile */
@media (max-width: 768px) {
    .casino-navigation {
        padding: 10px 0 !important;
    }

    .nav-container {
        padding: 0 10px !important;
    }

    .nav-categories {
        gap: 8px !important;
        padding: 5px 0 10px 5px !important;
    }

    .category-btn {
        font-size: 13px !important;
        padding: 8px 18px !important;
    }
}

/* Mobile - Categorias em linha horizontal */
@media (max-width: 768px) {
    .nav-categories {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 8px !important;
        padding: 0 15px !important;
    }
    
    .nav-categories::-webkit-scrollbar {
        display: none !important;
    }
    
    .category-btn {
        flex-shrink: 0 !important;
        white-space: nowrap !important;
        font-size: 12px !important;
        padding: 8px 16px !important;
    }
}

.search-container {
    position: relative !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
}

.search-icon {
    position: absolute !important;
    left: 20px !important;
    color: #ffffff !important;
    font-size: 16px !important;
    z-index: 2 !important;
}

.search-input {
    width: 100% !important;
    background: linear-gradient(90deg, #7c3aed 0%, #6366f1 100%) !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 15px 20px 15px 50px !important;
    color: #ffffff !important;
    font-size: 14px !important;
    outline: none !important;
    transition: all 0.3s ease !important;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}

.search-input:focus {
    box-shadow: 0 0 0 2px rgba(153, 255, 0, 0.3) !important;
}

/* ============================================
   RESPONSIVE MOBILE - CASINO.PHP COMPLETO
   ============================================ */

@media (max-width: 768px) {
    /* Main Content */
    .main-content {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
    
    /* Hero Banner Carousel */
    .hero-banner-carousel {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        position: relative !important;
        overflow: hidden !important;
    }
    
    .banner-container {
        width: 100% !important;
        height: auto !important;
        position: relative !important;
        display: flex !important;
        overflow: hidden !important;
    }
    
    .banner-slide {
        min-width: 100% !important;
        flex-shrink: 0 !important;
        position: relative !important;
        opacity: 0 !important;
        transition: opacity 0.5s ease-in-out !important;
    }
    
    .banner-slide.active {
        opacity: 1 !important;
    }
    
    .banner-image {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        object-fit: cover !important;
    }
    
    .banner-controls {
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: 100% !important;
        display: flex !important;
        justify-content: space-between !important;
        padding: 0 10px !important;
        pointer-events: none !important;
        z-index: 10 !important;
    }
    
    .banner-btn {
        pointer-events: auto !important;
        background: rgba(0, 0, 0, 0.5) !important;
        border: none !important;
        color: white !important;
        width: 35px !important;
        height: 35px !important;
        border-radius: 50% !important;
        cursor: pointer !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        transition: background 0.3s !important;
        font-size: 14px !important;
    }
    
    .banner-btn:hover {
        background: rgba(0, 0, 0, 0.7) !important;
    }
    
    .banner-dots {
        position: absolute !important;
        bottom: 15px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        display: flex !important;
        gap: 8px !important;
        z-index: 10 !important;
    }
    
    .banner-dots .dot {
        width: 8px !important;
        height: 8px !important;
        border-radius: 50% !important;
        background: rgba(255, 255, 255, 0.5) !important;
        cursor: pointer !important;
        transition: background 0.3s !important;
    }
    
    .banner-dots .dot.active {
        background: rgba(255, 255, 255, 1) !important;
        width: 24px !important;
        border-radius: 4px !important;
    }
    
    /* Casino Navigation */
    .casino-navigation {
        padding: 15px 0 !important;
        background: #0f172a !important;
    }
    
    .nav-container {
        padding: 0 15px !important;
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    .nav-categories {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 8px !important;
        padding: 0 !important;
        padding-bottom: 5px !important;
    }
    
    .nav-categories::-webkit-scrollbar {
        display: none !important;
        height: 0 !important;
    }
    
    .category-btn {
        flex-shrink: 0 !important;
        white-space: nowrap !important;
        font-size: 12px !important;
        padding: 8px 16px !important;
        border-radius: 20px !important;
    }
    
    .nav-search {
        width: 100% !important;
        padding: 0 !important;
    }
    
    .search-container {
        width: 100% !important;
        position: relative !important;
    }
    
    .search-icon {
        left: 15px !important;
        font-size: 14px !important;
    }
    
    .search-input {
        padding: 12px 15px 12px 45px !important;
        font-size: 13px !important;
    }
    
    /* Sections */
    .most-popular-section,
    .crash-section,
    .slot-section,
    .pgsoft-section,
    .pp-section,
    .roleta-section,
    .roletas-section,
    .providers-section {
        padding: 20px 15px !important;
    }
    
    .section-header {
        flex-direction: column !important;
        gap: 8px !important;
        margin-bottom: 8px !important;
        padding: 4px 0 !important;
    }
    
    .section-header-left {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        gap: 10px !important;
    }
    
    .section-title {
        font-size: 16px !important;
        margin: 0 !important;
        line-height: 1.2 !important;
    }
    
    .scroll-btn {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        font-size: 12px !important;
    }
    
    .see-all-btn {
        font-size: 11px !important;
        padding: 4px 8px !important;
        align-self: flex-start !important;
        line-height: 1.2 !important;
    }
    
    /* Games Carousel */
    .games-carousel {
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        -webkit-overflow-scrolling: touch !important;
        padding: 0 !important;
        margin: 0 -15px !important;
        padding-left: 15px !important;
    }
    
    .games-carousel::-webkit-scrollbar {
        display: none !important;
        height: 0 !important;
    }
    
    .games-track {
        display: flex !important;
        gap: 12px !important;
        padding-right: 15px !important;
    }
    
    .game-card {
        flex-shrink: 0 !important;
        width: 140px !important;
        min-width: 140px !important;
    }
    
    .game-image {
        width: 100% !important;
        height: 180px !important;
        border-radius: 8px !important;
        overflow: hidden !important;
    }
    
    .game-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    
    .game-info {
        padding: 8px 0 !important;
    }
    
    .game-title {
        font-size: 13px !important;
        line-height: 1.3 !important;
        margin-bottom: 4px !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
    }
    
    .game-provider {
        font-size: 11px !important;
        opacity: 0.7 !important;
    }
    
    /* Providers Carousel */
    .providers-carousel {
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        -webkit-overflow-scrolling: touch !important;
        padding: 0 !important;
        margin: 0 -15px !important;
        padding-left: 15px !important;
    }
    
    .providers-carousel::-webkit-scrollbar {
        display: none !important;
        height: 0 !important;
    }
    
    .providers-track {
        display: flex !important;
        gap: 12px !important;
        padding-right: 15px !important;
    }
    
    .provider-card {
        flex-shrink: 0 !important;
        width: 120px !important;
        min-width: 120px !important;
    }
    
    .provider-logo {
        width: 100% !important;
        height: 120px !important;
        border-radius: 8px !important;
        overflow: hidden !important;
    }
    
    .provider-logo img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    
    .provider-info {
        padding: 8px 0 !important;
    }
    
    .provider-name {
        font-size: 12px !important;
        margin-bottom: 4px !important;
    }
    
    .provider-games {
        font-size: 10px !important;
        opacity: 0.7 !important;
    }
}

/* Mobile Extra Small */
@media (max-width: 480px) {
    .banner-btn {
        width: 30px !important;
        height: 30px !important;
        font-size: 12px !important;
    }
    
    .banner-dots {
        bottom: 10px !important;
    }
    
    .banner-dots .dot {
        width: 6px !important;
        height: 6px !important;
    }
    
    .banner-dots .dot.active {
        width: 20px !important;
    }
    
    .nav-categories {
        padding: 0 10px !important;
    }
    
    .category-btn {
        font-size: 11px !important;
        padding: 6px 14px !important;
    }
    
    .section-title {
        font-size: 16px !important;
    }
    
    .game-card {
        width: 120px !important;
        min-width: 120px !important;
    }
    
    .game-image {
        height: 150px !important;
    }
    
    .game-title {
        font-size: 12px !important;
    }
    
    .game-provider {
        font-size: 10px !important;
    }
    
    .provider-card {
        width: 100px !important;
        min-width: 100px !important;
    }
    
    .provider-logo {
        height: 100px !important;
    }
    
    .provider-name {
        font-size: 11px !important;
    }
    
    .provider-games {
        font-size: 9px !important;
    }
}

/* Botão Voltar ao Topo (Mobile) */
.scroll-to-top {
    position: fixed !important;
    bottom: 80px !important;
    right: 20px !important;
    width: 45px !important;
    height: 45px !important;
    background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%) !important;
    border: none !important;
    border-radius: 50% !important;
    color: white !important;
    font-size: 18px !important;
    cursor: pointer !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4) !important;
    z-index: 1000 !important;
    transition: all 0.3s ease !important;
}

.scroll-to-top:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.6) !important;
}

@media (max-width: 768px) {
    .scroll-to-top {
        display: flex !important;
        bottom: 20px !important;
        right: 15px !important;
        width: 40px !important;
        height: 40px !important;
        font-size: 16px !important;
    }
}

/* Ajustes adicionais para mobile */
@media (max-width: 768px) {
    /* Melhorar toque em elementos interativos */
    .game-card,
    .provider-card,
    .category-btn,
    .banner-btn,
    .scroll-btn,
    .see-all-btn {
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2) !important;
        touch-action: manipulation !important;
    }
    
    /* Evitar zoom ao tocar em inputs */
    input[type="text"],
    input[type="search"],
    textarea,
    select {
        font-size: 16px !important;
    }
    
    /* Melhorar scroll suave em mobile */
    * {
        -webkit-overflow-scrolling: touch !important;
    }
    
    /* Ajustar espaçamento geral */
    section {
        padding: 15px 0 !important;
    }
    
    /* Header das seções mais compacto em mobile */
    .section-header {
        margin-bottom: 12px !important;
    }
    
    /* Garantir que imagens não ultrapassem a largura */
    img {
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* Melhorar visibilidade dos controles em mobile */
    .banner-controls {
        opacity: 0.9 !important;
    }
    
    .banner-btn:active {
        transform: scale(0.9) !important;
    }
    
    /* Scroll buttons mais acessíveis em mobile */
    .scroll-btn {
        min-width: 36px !important;
        width: 36px !important;
        height: 36px !important;
    }
    
    .scroll-btn:active {
        transform: scale(0.9) !important;
    }
}

/* =====================================================
   MOST PLAYED GAMES SECTION
   ===================================================== */
.mostplayed-section {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #1a1a1a;
}

.mostplayed-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.mostplayed-title {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
}


.mostplayed-banner {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center;
    border-radius: 12px;
    display: block;
    margin-top: 60px;
}

.mostplayed-list-container {
    display: flex;
    flex-direction: row;
    gap: 12px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(153, 255, 0, 0.3) rgba(42, 0, 74, 0.3);
    padding: 10px 0 20px 0;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    position: relative;
    margin-top: -120px;
    z-index: 5;
}

.mostplayed-list-container:active {
    cursor: grabbing;
}

.mostplayed-list-container::-webkit-scrollbar {
    height: 8px;
}

.mostplayed-list-container::-webkit-scrollbar-track {
    background: rgba(42, 0, 74, 0.3);
    border-radius: 10px;
}

.mostplayed-list-container::-webkit-scrollbar-thumb {
    background: rgba(153, 255, 0, 0.5);
    border-radius: 10px;
}

.mostplayed-list-container::-webkit-scrollbar-thumb:hover {
    background: rgba(153, 255, 0, 0.7);
}

.mostplayed-list-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: rgba(42, 0, 74, 0.6);
    border: 1px solid rgba(153, 255, 0, 0.2);
    border-radius: 10px;
    padding: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    gap: 10px;
    min-width: 200px;
    max-width: 200px;
    flex-shrink: 0;
    position: relative;
    height: auto;
}

.mostplayed-list-item:hover {
    background: rgba(42, 0, 74, 0.9);
    border-color: rgba(153, 255, 0, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(153, 255, 0, 0.3);
}

.mostplayed-item-all-container {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
}

.mostplayed-item-all-container:first-of-type {
    flex-direction: column;
    gap: 8px;
    width: 100%;
    align-items: center;
}

.mostplayed-item-thumb {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(153, 255, 0, 0.3);
}

.mostplayed-item-button {
    background: #99ff00;
    color: #000;
    font-weight: 700;
    font-size: 11px;
    padding: 6px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-block;
    border: none;
    width: 100%;
    text-align: center;
}

.mostplayed-item-button:hover {
    background: #baff33;
    transform: scale(1.05);
}

.mostplayed-item-all-container:nth-of-type(2) {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    flex-wrap: wrap;
}

.mostplayed-item-pos {
    background: linear-gradient(135deg, #99ff00, #baff33);
    color: #000;
    font-weight: 800;
    font-size: 16px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mostplayed-item-title {
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

.mostplayed-item-final-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    margin-top: 4px;
}

.mostplayed-item-coin {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.mostplayed-item-amount {
    color: #99ff00;
    font-weight: 700;
    font-size: 12px;
    white-space: nowrap;
    text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mostplayed-section {
        padding: 0;
        margin-top: 0;
    }

    .mostplayed-container {
        padding: 0 10px;
        gap: 0;
    }
    
    .mostplayed-container-wrapper {
        position: relative;
        margin-bottom: 0;
        padding-top: 5px;
        overflow: visible;
    }

    .mostplayed-title {
        max-width: 200px;
        margin-bottom: 15px;
    }

    .mostplayed-banner {
        max-height: none;
        border-radius: 8px;
        margin-top: 50px;
        object-fit: contain;
        object-position: center;
    }

    .mostplayed-list-container {
        gap: 10px;
        padding: 10px 0 15px 0;
        margin-top: -80px;
    }

    .mostplayed-list-item {
        padding: 10px;
        gap: 6px;
        min-width: 160px;
        max-width: 160px;
    }

    .mostplayed-item-thumb {
        width: 70px;
        height: 70px;
    }

    .mostplayed-item-pos {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .mostplayed-item-title {
        font-size: 11px;
    }

    .mostplayed-item-amount {
        font-size: 11px;
    }

    .mostplayed-item-coin {
        width: 16px;
        height: 16px;
    }

    .mostplayed-item-button {
        font-size: 10px;
        padding: 5px 12px;
    }
}

/* =====================================================
   WALL SECTION - NOVO HEADER DE SEÇÃO
   ===================================================== */
.wall-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 20px;
    margin-bottom: 10px;
}

.wall-section__group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.wall-section__title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.wall-section__title .fa {
    font-size: 16px;
    color: #99ff00;
}

.scroll-buttons {
    display: flex;
    align-items: center;
    gap: 4px;
}

.scroll-button {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(153, 255, 0, 0.1);
    border: 1px solid rgba(153, 255, 0, 0.3);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #99ff00;
}

.scroll-button:hover {
    background: rgba(153, 255, 0, 0.2);
    border-color: rgba(153, 255, 0, 0.5);
}

.scroll-button.disabled-scroll-button {
    opacity: 0.4;
    cursor: not-allowed;
}

.scroll-button.disabled-scroll-button:hover {
    background: rgba(153, 255, 0, 0.1);
    border-color: rgba(153, 255, 0, 0.3);
}

.scroll-button.enabled-scroll-button {
    opacity: 1;
}

.scroll-button i {
    font-size: 12px;
}

.wall-section__see-all {
    color: #99ff00;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    padding: 4px 8px;
    border-radius: 4px;
    line-height: 1.2;
    display: flex;
    align-items: center;
}

.wall-section__see-all:hover {
    color: #baff33;
    background: rgba(153, 255, 0, 0.1);
    transform: translateX(3px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .wall-section {
        padding: 6px 15px;
        margin-bottom: 8px;
    }
    
    .wall-section__group {
        gap: 8px;
    }
    
    .wall-section__title {
        font-size: 16px;
        gap: 6px;
    }
    
    .wall-section__title .fa {
        font-size: 14px;
    }
    
    .scroll-button {
        width: 24px;
        height: 24px;
    }
    
    .scroll-button i {
        font-size: 10px;
    }
    
    .wall-section__see-all {
        font-size: 11px;
        padding: 3px 6px;
    }
}

.view-title-more {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    flex: 1;
    line-height: 1.2;
}

.view-title-more.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.view-see-more {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #99ff00;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    padding: 4px 8px;
    border-radius: 4px;
    line-height: 1.2;
}

.view-see-more:hover {
    color: #baff33;
    background: rgba(153, 255, 0, 0.1);
    transform: translateX(3px);
}

.view-arrow-more {
    font-size: 10px;
    transition: transform 0.3s ease;
    line-height: 1;
}

.view-see-more:hover .view-arrow-more {
    transform: translateX(3px);
}

.bc-i-small-arrow-right::before {
    content: "\f054"; /* Font Awesome chevron-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: inline-block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .page-view-more {
        padding: 6px 15px;
        margin-bottom: 8px;
    }
    
    .view-title-more {
        font-size: 16px;
        line-height: 1.2;
    }
    
    .view-see-more {
        font-size: 11px;
        padding: 3px 6px;
        gap: 3px;
        line-height: 1.2;
    }
    
    .view-arrow-more {
        font-size: 9px;
        line-height: 1;
    }
}

/* =====================================================
   STORIES SYSTEM - STORY THUMBS CONTAINER
   ===================================================== */
.story-thumbs-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 15px 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(153, 255, 0, 0.3) rgba(42, 0, 74, 0.3);
    background: #1a1a1a;
    border-bottom: 1px solid rgba(153, 255, 0, 0.1);
    -webkit-overflow-scrolling: touch;
    cursor: grab;
}

.story-thumbs-container:active {
    cursor: grabbing;
}

.story-thumbs-container::-webkit-scrollbar {
    height: 6px;
}

.story-thumbs-container::-webkit-scrollbar-track {
    background: rgba(42, 0, 74, 0.3);
    border-radius: 10px;
}

.story-thumbs-container::-webkit-scrollbar-thumb {
    background: rgba(153, 255, 0, 0.5);
    border-radius: 10px;
}

.story-thumbs-container::-webkit-scrollbar-thumb:hover {
    background: rgba(153, 255, 0, 0.7);
}

.story-thumbs-container > div {
    flex-shrink: 0;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    background: linear-gradient(135deg, #99ff00, #baff33);
    padding: 3px;
    box-sizing: border-box;
}

.story-thumbs-container > div:hover {
    transform: scale(1.1);
    border-color: #99ff00;
    box-shadow: 0 0 15px rgba(153, 255, 0, 0.5);
}

.story-thumbs-container > div:active {
    transform: scale(0.95);
}

.story-thumbs-wrapper-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    background: #2a004a;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .story-thumbs-container {
        gap: 10px;
        padding: 12px 15px;
    }
    
    .story-thumbs-container > div {
        width: 60px;
        height: 60px;
        border-width: 2px;
    }
}

