/* 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;
}

/* 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: 20px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
}

.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,
.roleta-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: hidden;
    margin-bottom: 20px;
}

.games-track {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 0;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scroll-padding: 10px;
    scrollbar-width: none; /* oculta a barra */
    -ms-overflow-style: none;
}
.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,
.roleta-section {
    background: transparent !important;
    padding: 15px 0 !important;
}

.section-header {
    max-width: 1400px !important;
    padding: 0 30px !important;
    margin-bottom: 12px !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: 18px !important;
    font-weight: 600 !important;
    margin: 0 !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: 14px !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;
}

.see-all-btn:hover {
    color: #8b5cf6 !important;
}

.see-all-btn i {
    font-size: 12px !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;
}

