/* Estilos Customizados para Home Gaming */

/* Prevenir scroll horizontal na página */
body {
    overflow-x: hidden;
    width: 100%;
    font-family: 'DIN Next', 'Roboto Condensed', sans-serif;
}

.game-product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(219, 0, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(219, 0, 0, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Hero Carousel Section */
.hero-carousel-section {
    position: relative;
    overflow: visible;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

/* Separator Line */
.hero-separator-line {
    position: relative;
    width: 100%;
    height: 9px;
    margin: 0;
    overflow: visible;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    justify-content: center;
}

.separator-bar {
    width: 100%;
    height: 3px;
    background: #db0000;
    box-shadow: 0 0 15px rgba(219, 0, 0, 0.8), 0 0 30px rgba(219, 0, 0, 0.4);
    position: relative;
}

.separator-bar-middle {
    width: 100%;
    clip-path: none;
}

.separator-bar-top {
    clip-path: polygon(0 0, 5% 100%, 95% 100%, 100% 0);
    margin-bottom: 0;
}

.separator-bar-bottom {
    clip-path: polygon(0 100%, 5% 0, 95% 0, 100% 100%);
    margin-top: 0;
}

.hero-carousel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(219, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(219, 0, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-carousel-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 2px;
    height: 60%;
    background: linear-gradient(180deg, transparent, rgba(219, 0, 0, 0.3), transparent);
    transform: translateY(-50%);
    animation: sideGlow 3s ease infinite;
    pointer-events: none;
    z-index: 1;
}

.hero-carousel-section {
    position: relative;
}

.hero-carousel-section .container::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 2px;
    height: 60%;
    background: linear-gradient(180deg, transparent, rgba(219, 0, 0, 0.3), transparent);
    transform: translateY(-50%);
    animation: sideGlow 3s ease infinite 1.5s;
    pointer-events: none;
    z-index: 1;
}

@keyframes sideGlow {
    0%, 100% {
        opacity: 0.3;
        box-shadow: 0 0 10px rgba(219, 0, 0, 0.3);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 20px rgba(219, 0, 0, 0.6);
    }
}

.hero-carousel-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
    overflow: visible;
}

.hero-carousel-section .row {
    align-items: center;
}

/* Sidebar Cards */
.hero-sidebar-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-right: 15px;
}

.hero-sidebar-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: 15px;
}

.sidebar-card {
    position: relative;
    /* background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(20, 20, 20, 0.9) 100%); */
    border: 1px solid rgba(219, 0, 0, 0.2);
    border-radius: 12px;
    padding: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
    backdrop-filter: blur(10px);
    animation: cardFloat 6s ease-in-out infinite;
}

.sidebar-card:nth-child(1) {
    animation-delay: 0s;
}

.sidebar-card:nth-child(2) {
    animation-delay: 1s;
}

.sidebar-card:nth-child(3) {
    animation-delay: 2s;
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.sidebar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(219, 0, 0, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-card:hover::before {
    opacity: 1;
}

.sidebar-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(219, 0, 0, 0.6);
    box-shadow: 
        0 15px 40px rgba(219, 0, 0, 0.3),
        0 0 0 1px rgba(219, 0, 0, 0.3),
        inset 0 0 30px rgba(219, 0, 0, 0.1);
}

.stats-card {
    min-height: 80px;
}

.feature-card {
    min-height: 65px;
}

.card-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, rgba(219, 0, 0, 0.2) 0%, rgba(160, 0, 0, 0.2) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.sidebar-card:hover .card-icon {
    background: linear-gradient(135deg, rgba(219, 0, 0, 0.4) 0%, rgba(160, 0, 0, 0.4) 100%);
    transform: scale(1.1) rotate(5deg);
}

.card-icon i {
    font-size: 18px;
    color: #db0000;
    transition: all 0.3s ease;
}

.sidebar-card:hover .card-icon i {
    color: #db0000;
    transform: scale(1.2);
}

.card-content {
    position: relative;
    z-index: 2;
}

.card-number {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #db0000 0%, #a00000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
    line-height: 1;
    text-shadow: 0 0 30px rgba(219, 0, 0, 0.5);
}

.card-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #db0000;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.card-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    margin: 0;
    line-height: 1.3;
}

.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(219, 0, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.sidebar-card:hover .card-glow {
    opacity: 1;
    animation: pulseGlow 2s ease infinite;
}

.card-pulse {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 6px;
    height: 6px;
    background: #db0000;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(219, 0, 0, 0.8);
    animation: pulseDot 2s ease infinite;
}

@keyframes pulseDot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

.hero-carousel-wrapper {
    position: relative;
    padding: 20px 20px;
    animation: fadeInDown 0.8s ease-out;
    overflow: visible;
}

.hero-carousel-section .col-lg-6 {
    overflow: visible !important;
}

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

.hero-carousel {
    position: relative;
}

.hero-carousel-section .slick-slider {
    position: relative;
    overflow: visible;
}

/* Esconder slides antes da inicialização do Slick */
.hero-carousel-wrapper .hero-carousel:not(.slick-initialized) > div {
    display: none;
}

.hero-carousel-wrapper .hero-carousel:not(.slick-initialized) > div:first-child {
    display: block;
}

.hero-carousel-section .slick-list {
    border-radius: 20px;
    overflow: visible;
    padding: 20px 0;
    margin: 0 -15px;
}

.hero-carousel-section .slick-slide {
    opacity: 0.7;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-carousel-section .slick-slide.slick-active {
    opacity: 1;
    transform: scale(1);
}

.hero-carousel-section .slick-slide:not(.slick-active) {
    transform: scale(0.95);
}

.hero-carousel-section .slick-track {
    display: flex;
    align-items: center;
}

.hero-carousel-section .slick-dots {
    bottom: -40px;
    z-index: 10;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.hero-carousel-section .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}

.hero-carousel-section .slick-dots li button {
    width: 12px;
    height: 12px;
    padding: 0;
    border-radius: 20%;
    background: rgba(219, 0, 0, 0.3);
    border: 2px solid rgba(219, 0, 0, 0.5);
    transition: all 0.3s ease;
    position: relative;
}

.hero-carousel-section .slick-dots li button:before {
    display: none;
}

.hero-carousel-section .slick-dots li.slick-active button {
    background: linear-gradient(135deg, #db0000 0%, #a00000 100%);
    border-color: #db0000;
    width: 30px;
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(219, 0, 0, 0.8);
}

.hero-carousel-section .slick-prev,
.hero-carousel-section .slick-next {
    z-index: 15;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(219, 0, 0, 0.9) 0%, rgba(160, 0, 0, 0.9) 100%) !important;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 20%;
    border: 1px solid rgb(255 255 255 / 13%);
    box-shadow: 0 8px 25px rgba(219, 0, 0, 0.4);
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.hero-carousel-section .slick-prev:hover,
.hero-carousel-section .slick-next:hover {
    background: linear-gradient(135deg, #db0000 0%, #a00000 100%) !important;
    ;
    box-shadow: 0 12px 35px rgba(219, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-carousel-section .slick-prev:active,
.hero-carousel-section .slick-next:active {
    transform: scale(1.05);
}

.hero-carousel-section .slick-prev {
    left: -37px !important;
    position: absolute;
}

.hero-carousel-section .slick-next {
    right: -37px !important;
    position: absolute;
}

.hero-carousel-section .slick-prev:before,
.hero-carousel-section .slick-next:before {
    display: none;
}

.hero-carousel-section .slick-prev i,
.hero-carousel-section .slick-next i {
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.hero-carousel > div {
    padding: 0 20px;
}

.hero-slide-link {
    display: block;
    text-decoration: none;
}

.hero-slide {
    position: relative;
    cursor: pointer;
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(219, 0, 0, 0.2),
        inset 0 0 50px rgba(219, 0, 0, 0.05);
    transition: box-shadow 0.5s ease;
    background: #1a1a1a;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #db0000, #a00000, #db0000);
    background-size: 200% 200%;
    border-radius: 20px;
    z-index: 0;
    opacity: 0;
    animation: borderGlow 3s ease infinite;
    transition: opacity 0.3s ease;
}

.hero-slide:hover::before {
    opacity: 0;
}

.hero-slide:hover {
    box-shadow: 
        0 30px 80px rgba(219, 0, 0, 0.4),
        0 0 0 2px rgba(219, 0, 0, 0.5),
        inset 0 0 80px rgba(219, 0, 0, 0.1);
}

.slide-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(219, 0, 0, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.hero-slide:hover .slide-glow {
    opacity: 0;
}

.slide-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
    z-index: 2;
    pointer-events: none;
}

.hero-slide:hover .slide-shine {
    top: 150%;
    left: 150%;
}

.slide-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 1;
}

.hero-slide:hover .slide-image {
    transform: scale(1.08);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.hero-slide:hover .slide-overlay {
    opacity: 0;
}

.overlay-content {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.hero-slide:hover .overlay-content {
    transform: translateY(0);
}

.overlay-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(219, 0, 0, 0.9) 0%, rgba(160, 0, 0, 0.9) 100%);
    padding: 8px 20px;
    border-radius: 25px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    box-shadow: 0 5px 20px rgba(219, 0, 0, 0.5);
    animation: badgePulse 2s ease infinite;
}

.overlay-badge i {
    font-size: 1.2rem;
}

.overlay-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 15px;
    text-shadow: 
        0 0 20px rgba(219, 0, 0, 0.8),
        2px 2px 10px rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.overlay-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    line-height: 1.6;
}

.overlay-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #db0000 0%, #a00000 100%);
    padding: 15px 35px;
    border-radius: 35px;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(219, 0, 0, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
}

.overlay-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(219, 0, 0, 0.7);
    background: linear-gradient(135deg, #db0000 0%, #a00000 100%);
}

.overlay-button i {
    transition: transform 0.3s ease;
}

.overlay-button:hover i {
    transform: translateX(5px);
}

.slide-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.slide-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(219, 0, 0, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(219, 0, 0, 0.8);
    animation: floatParticle 6s ease-in-out infinite;
}

.slide-particles span:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 5s;
}

.slide-particles span:nth-child(2) {
    left: 30%;
    animation-delay: 1s;
    animation-duration: 6s;
}

.slide-particles span:nth-child(3) {
    left: 50%;
    animation-delay: 2s;
    animation-duration: 7s;
}

.slide-particles span:nth-child(4) {
    left: 70%;
    animation-delay: 1.5s;
    animation-duration: 5.5s;
}

.slide-particles span:nth-child(5) {
    left: 90%;
    animation-delay: 0.5s;
    animation-duration: 6.5s;
}

@keyframes borderGlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(219, 0, 0, 0.5);
    }
    50% {
        box-shadow: 0 5px 30px rgba(219, 0, 0, 0.8);
    }
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(20px);
        opacity: 0;
    }
}

@media (max-width: 992px) {
    .hero-sidebar-left,
    .hero-sidebar-right {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .sidebar-card {
        flex: 1;
        min-width: 180px;
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .hero-carousel-section {
        padding: 20px 0;
    }
    
    /* Reorganizar layout: banner primeiro, sidebars embaixo */
    .hero-carousel-section .row {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    /* Todas as colunas ocupam 100% da largura no mobile */
    .hero-carousel-section .row > [class*="col-"] {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* Sidebar left - vai para baixo do carousel */
    .hero-carousel-section .row > [class*="col-"]:first-child {
        order: 2 !important;
    }
    
    /* Carousel central - fica primeiro */
    .hero-carousel-section .row > [class*="col-"]:nth-child(2) {
        order: 1 !important;
    }
    
    /* Sidebar right - vai para o final */
    .hero-carousel-section .row > [class*="col-"]:last-child {
        order: 3 !important;
    }
    
    .hero-carousel-wrapper {
        padding: 10px 0;
    }
    
    .hero-carousel-section .slick-list {
        padding: 10px 0;
        border-radius: 15px;
    }
    
    .hero-slide {
        border-radius: 15px;
    }
    
    .hero-carousel-section .slick-prev,
    .hero-carousel-section .slick-next {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }
    
    .overlay-title {
        font-size: 1.8rem;
    }
    
    .overlay-text {
        font-size: 0.95rem;
    }
    
    .overlay-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    /* Esconder os containers pai e mostrar os cards diretamente */
    .hero-sidebar-left,
    .hero-sidebar-right {
        display: contents !important;
    }
    
    /* Juntar as duas colunas laterais em um único grid */
    .hero-carousel-section .row > [class*="col-"]:first-child,
    .hero-carousel-section .row > [class*="col-"]:last-child {
        display: contents !important;
    }
    
    /* O container de toda a seção hero vira um grid */
    .hero-carousel-section .row {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        padding: 0 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    
    /* O carousel ocupa as 2 colunas */
    .hero-carousel-section .row > [class*="col-"]:nth-child(2) {
        grid-column: 1 / -1 !important;
        order: -1 !important;
        display: block !important;
        margin-bottom: 15px;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 5px !important;
        box-sizing: border-box !important;
    }
    
    /* Hero section container */
    .hero-carousel-section {
        overflow: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    .hero-carousel-section .container {
        padding: 0 5px !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }
    
    /* Hero carousel wrapper e slides */
    .hero-carousel-wrapper {
        overflow: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 12px;
    }
    
    .hero-carousel-wrapper .slick-slider,
    .hero-carousel-wrapper .slick-list,
    .hero-carousel-wrapper .slick-track {
        overflow: visible !important;
    }
    
    .hero-slide {
        overflow: hidden !important;
        border-radius: 12px !important;
        box-shadow: none !important;
        background: transparent !important;
    }
    
    .hero-slide::before {
        display: none !important;
    }
    
    .hero-carousel > div {
        padding: 0 !important;
    }
    
    .hero-slide img,
    .hero-slide .slide-image {
        width: 100% !important;
        height: auto !important;
        border-radius: 12px !important;
        overflow: hidden !important;
    }
    
    .hero-slide-link {
        border-radius: 12px !important;
        overflow: hidden !important;
        display: block !important;
    }
    
    .hero-carousel .slick-slide {
        border-radius: 12px !important;
        overflow: hidden !important;
    }
    
    .sidebar-card {
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 12px 10px !important;
        min-height: 70px !important;
        height: 70px !important;
        flex: none !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        display: flex !important;
        align-items: center !important;
    }
    
    /* Esconder animações e efeitos extras no mobile para cards */
    .sidebar-card .card-glow,
    .sidebar-card .card-pulse {
        display: none;
    }
    
    .sidebar-card .card-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }
    
    .sidebar-card .card-icon i {
        font-size: 1rem;
    }
    
    .card-number {
        font-size: 1.2rem;
    }
    
    .card-label {
        font-size: 0.65rem;
    }
    
    .card-title {
        font-size: 0.75rem;
    }
    
    .card-desc {
        font-size: 0.6rem;
    }
}

/* Hero carousel setas escondidas em mobile pequeno */
@media (max-width: 576px) {
    .hero-carousel-section .slick-prev,
    .hero-carousel-section .slick-next {
        display: none !important;
    }
}

.hero-slide-content {
    animation: fadeInUp 0.8s ease-out;
}

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

/* Streamers Marquee Section */
.streamers-marquee-section {
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
}

.streamers-marquee-section .container {
    overflow-x: hidden;
    overflow-y: visible;
}

.streamers-marquee-section #marqueeContent {
    display: inline-flex;
    animation: scrollText 60s linear infinite;
    white-space: nowrap;
    will-change: transform;
    transition: animation-play-state 0.3s ease;
    padding: 10px 0;
}

.streamers-marquee-section #marqueeContent.paused {
    animation-play-state: paused;
}

.streamers-marquee-section .streamer-item {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    padding: 12px 20px;
    margin-right: 20px;
    color: #f1f3f5;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    flex-shrink: 0;
    background: #191919;
    border: 1px solid rgba(64, 64, 64, 0.3);
    gap: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: visible;
    min-width: 200px;
    min-height: 50px;
}

.streamers-marquee-section .streamer-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(219, 0, 0, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.streamers-marquee-section .streamer-item:hover::before {
    opacity: 1;
}

.streamers-marquee-section .streamer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(219, 0, 0, 0.3);
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.streamers-marquee-section .streamer-avatar-placeholder {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.streamers-marquee-section .streamer-item:hover .streamer-avatar {
    border-color: rgba(219, 0, 0, 0.6);
    box-shadow: 0 0 20px rgba(219, 0, 0, 0.5);
    transform: scale(1.1);
}

.streamers-marquee-section .streamer-item:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(219, 0, 0, 0.8);
    box-shadow: 
        0 10px 30px rgba(219, 0, 0, 0.3),
        0 0 0 1px rgba(219, 0, 0, 0.4),
        inset 0 0 40px rgba(219, 0, 0, 0.15);
    color: #ffffff;
    background: linear-gradient(135deg, rgba(26, 26, 26, 1) 0%, rgba(20, 20, 20, 1) 100%);
    filter: drop-shadow(0 10px 20px rgba(219, 0, 0, 0.2));
}

.streamers-marquee-section .streamer-item[data-status="online"] {
    color: #4ade80;
    text-shadow: 0 0 5px rgba(74, 222, 128, 0.4), 0 0 10px rgba(74, 222, 128, 0.2);
    border-color: rgba(74, 222, 128, 0.3);
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.05) 0%, rgba(20, 180, 0, 0.02) 100%);
}

.streamers-marquee-section .streamer-item[data-status="online"]:hover {
    border-color: rgba(74, 222, 128, 0.5);
    box-shadow: 
        0 10px 30px rgba(74, 222, 128, 0.2),
        0 0 0 1px rgba(74, 222, 128, 0.3),
        inset 0 0 40px rgba(74, 222, 128, 0.1);
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.08) 0%, rgba(20, 180, 0, 0.05) 100%);
    filter: drop-shadow(0 10px 20px rgba(74, 222, 128, 0.15));
}

.streamers-marquee-section .streamer-item[data-status="online"] .streamer-avatar {
    border-color: rgba(74, 222, 128, 0.4);
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.3), 0 2px 8px rgba(0, 0, 0, 0.3);
}

.streamers-marquee-section .streamer-item[data-status="online"]:hover .streamer-avatar {
    border-color: rgba(74, 222, 128, 0.6);
    box-shadow: 0 0 15px rgba(74, 222, 128, 0.4);
    transform: scale(1.1);
}

.streamers-marquee-section .streamer-item[data-status="offline"] {
    color: #cbcbcb;
    opacity: 0.8;
}

.streamers-marquee-section .streamer-item[data-status="offline"] .streamer-avatar,
.streamers-marquee-section .streamer-item[data-status="offline"] .streamer-avatar-placeholder {
    opacity: 0.4;
    filter: grayscale(0.6);
    transition: all 0.3s ease;
}

.streamers-marquee-section .streamer-item[data-status="offline"]:hover {
    opacity: 1;
    color: #ffffff;
}

.streamers-marquee-section .streamer-item[data-status="offline"]:hover .streamer-avatar,
.streamers-marquee-section .streamer-item[data-status="offline"]:hover .streamer-avatar-placeholder {
    opacity: 0.7;
    filter: grayscale(0.3);
}

.streamers-marquee-section .streamer-name {
    display: block;
    line-height: 1.2;
}

.streamers-marquee-section .streamer-name-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.streamers-marquee-section .streamer-info-badges {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.streamers-marquee-section .streamer-uptime {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    font-size: 0.55rem;
    color: #4ade80;
    font-weight: 500;
    background: rgba(74, 222, 128, 0.08);
    border: 1px solid rgba(74, 222, 128, 0.25);
    border-radius: 10px;
    white-space: nowrap;
    text-shadow: none;
    transition: all 0.3s ease;
    line-height: 1.2;
}

.streamers-marquee-section .streamer-uptime i {
    font-size: 0.6rem;
    animation: pulse 2s infinite;
}

.streamers-marquee-section .streamer-item:hover .streamer-uptime {
    background: rgba(74, 222, 128, 0.12);
    border-color: rgba(74, 222, 128, 0.35);
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.2);
    transform: scale(1.02);
}

.streamers-marquee-section .streamer-viewers {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    font-size: 0.65rem;
    color: #9146ff;
    font-weight: 500;
    background: rgba(145, 70, 255, 0.08);
    border: 1px solid rgba(145, 70, 255, 0.25);
    border-radius: 10px;
    white-space: nowrap;
    text-shadow: none;
    transition: all 0.3s ease;
    line-height: 1.2;
    margin-top: 0;
}

.streamers-marquee-section .streamer-viewers i {
    font-size: 0.6rem;
}

.streamers-marquee-section .streamer-item:hover .streamer-viewers {
    background: rgba(145, 70, 255, 0.12);
    border-color: rgba(145, 70, 255, 0.35);
    box-shadow: 0 0 8px rgba(145, 70, 255, 0.2);
    transform: scale(1.02);
}

.streamers-marquee-section .status-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 6px;
    flex-shrink: 0;
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
}

.streamers-marquee-section .status-online {
    background: #4ade80;
    box-shadow: 0 0 6px rgba(74, 222, 128, 0.6), 0 0 12px rgba(74, 222, 128, 0.3);
}

.streamers-marquee-section .status-offline {
    background: #666;
}

@keyframes scrollText {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Container do marquee com gradientes laterais */
.streamers-marquee-section #marqueeWrapper {
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
    width: 100%;
}

.streamers-marquee-section .container {
    position: relative;
}

/* Gradientes laterais na section, não no container */
.streamers-marquee-section::before,
.streamers-marquee-section::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 10;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.streamers-marquee-section::before {
    left: 0;
    background: linear-gradient(90deg, rgba(24, 24, 24, 0.98) 0%, rgba(26, 26, 26, 0) 100%);
}

.streamers-marquee-section::after {
    right: 0;
    background: linear-gradient(270deg, rgba(24, 24, 24, 0.98) 0%, rgba(26, 26, 26, 0) 100%);
}

/* Promotional Banners Section */
.promotional-banners-section {
    position: relative;
    overflow: hidden;
}

.promo-banner-card {
    position: relative;
    overflow: hidden;
}

.promo-banner-card:hover {
    transform: translateY(-10px);
    border-color: #ec8951 !important;
    box-shadow: 0 15px 40px rgba(219, 0, 0, 0.3) !important;
}

.promo-banner-card:hover button {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(219, 0, 0, 0.5) !important;
}

.promo-banner-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(219, 0, 0, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.promo-banner-card:hover::before {
    opacity: 1;
}

.promo-banner-card button:hover {
    transform: scale(1.05);
}

.promo-banner-card button:hover div {
    left: 100%;
}

.promo-tibia {
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(219, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(219, 0, 0, 0.05) 0%, transparent 50%);
}

.promo-rubini {
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(219, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(219, 0, 0, 0.05) 0%, transparent 50%);
}

/* Hero Section Melhorado */
.hero-gaming {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2b2b2b 50%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-gaming::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(219, 0, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(219, 0, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-gaming .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 40px 20px;
}

.hero-gaming .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #db0000 0%, #b00000 50%, #db0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(219, 0, 0, 0.5);
}

@keyframes shimmer {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2);
    }
}

.hero-gaming .hero-subtitle {
    font-size: 1.5rem;
    color: #f1f3f5;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-gaming .hero-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-badge {
    background: rgba(219, 0, 0, 0.2);
    border: 2px solid #ec8951;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    color: #db0000;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: #db0000;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(219, 0, 0, 0.4);
}

/* Seção de Jogos */
.games-section {
    background: linear-gradient(180deg, #2b2b2b 0%, #1a1a1a 100%);
    padding: 80px 0;
    position: relative;
}

.games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #db0000, transparent);
}

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

.game-card {
    background: linear-gradient(135deg, #2b2b2b 0%, #1f1f1f 100%);
    border: 2px solid #404040;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.game-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(219, 0, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.game-card:hover {
    transform: translateY(-10px);
    border-color: #db0000;
    box-shadow: 0 10px 40px rgba(219, 0, 0, 0.3);
}

.game-card-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #db0000;
    filter: drop-shadow(0 0 10px rgba(219, 0, 0, 0.5));
}

.game-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #f1f3f5;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.game-card p {
    color: #cbcbcb;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.game-card .game-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.game-card .game-features li {
    color: #db0000;
    padding: 8px 0;
    font-size: 0.95rem;
}

.game-card .game-features li::before {
    content: '▶';
    margin-right: 10px;
    font-size: 0.7rem;
}

/* Títulos Melhorados */
.section-title-gaming {
    text-align: center;
}

.section-title-gaming h4 {
    font-size: 1.2rem;
    color: #db0000;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title-gaming h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #f1f3f5;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.section-title-gaming p {
    font-weight: 600;
    color: #f1f3f5;
    font-size: 0.85rem !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 10px;
}

.section-title-gaming p::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #db0000, transparent);
    border-radius: 2px;
}

/* Cards de Produtos Melhorados */
.game-product-card {
    background: linear-gradient(135deg, #2b2b2b 0%, #1f1f1f 100%);
    border: 2px solid #404040;
    overflow: hidden;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    margin: 0;
    padding: 0 !important
}

.game-product-card:hover {
    transform: translateY(-5px);
    border-color: #db0000;
}

.game-product-card .img-wrapper {
    background: linear-gradient(135deg, #1a1a1a 0%, #2b2b2b 100%);
    position: relative;
    overflow: hidden;
}

.game-product-card .img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(219, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-product-card:hover .img-wrapper::after {
    opacity: 1;
}

.game-product-card .product-detail {
    padding: 12px !important;
    background: #2b2b2b;
}

.game-product-card .product-title {
    color: #f1f3f5;
    font-weight: 600;
    font-size: 1.4rem !important;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.game-product-card .price {
    color: #db0000;
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 10px;
}

.game-product-card .price del {
    color: #666;
    font-size: 1rem;
    margin-left: 10px;
}

.game-product-card .discounted-price {
    color: #4caf50;
    font-size: 0.9rem;
    margin-left: 10px;
}

/* Badge de Desconto */
.discount-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #db0000 0%, #a00000 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(219, 0, 0, 0.4);
}

/* Botões de Ação */
.cart-info {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 10px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.game-product-card:hover .cart-info {
    opacity: 1;
}

.cart-info .wishlist-icon,
.cart-info .add-to-cart-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.cart-info .wishlist-icon:hover,
.cart-info .add-to-cart-btn:hover {
    background: rgba(219, 0, 0, 0.8);
    border-color: rgba(219, 0, 0, 0.5);
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(219, 0, 0, 0.5);
}

/* Botão principal de comprar */
.add-to-cart-btn-main {
    width: 100%;
    padding: 12px 20px;
    background: #eeb54e;
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.add-to-cart-btn-main:hover:not(:disabled) {
    background: linear-gradient(135deg, #ff0000 0%, #db0000 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(219, 0, 0, 0.5);
}

.add-to-cart-btn-main:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(219, 0, 0, 0.3);
}

.add-to-cart-btn-main:disabled {
    background: #666;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Filtros e Busca Gaming */
.gaming-filters-section {
    margin-bottom: 40px;
}

.gaming-search-input:focus {
    outline: none;
    border-color: #db0000 !important;
    box-shadow: 0 0 20px rgba(219, 0, 0, 0.3) !important;
    background: rgba(26, 26, 26, 0.95) !important;
}

.gaming-search-input::placeholder {
    color: #888;
}

.gaming-sort-select:focus {
    outline: none;
    border-color: #db0000 !important;
    box-shadow: 0 0 20px rgba(219, 0, 0, 0.3) !important;
    background: rgba(26, 26, 26, 0.95) !important;
}

.gaming-category-btn {
    background: transparent;
    box-shadow: none;
    border: none;
    color: #f1f3f5;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    padding: 8px 16px;
    position: relative;
}

.gaming-category-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #db0000;
    transition: width 0.3s ease;
}

.gaming-category-btn:hover {
    color: #db0000;
}

.gaming-category-btn:hover::after {
    width: 80%;
}

.gaming-category-btn.active {
    color: #db0000;
    font-weight: 700;
}

.gaming-category-btn.active::after {
    width: 100%;
    background: #db0000;
}

/* Seção de Features */
.features-section {
    background: #1a1a1a;
    padding: 80px 0;
}

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

.feature-item {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    font-size: 3rem;
    color: #db0000;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(219, 0, 0, 0.5));
}

.feature-item h4 {
    color: #f1f3f5;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-item p {
    color: #cbcbcb;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Grid de Produtos - CSS Grid Customizado */
.products-section-wrapper {
    width: 100%;
}

/* Forçar que o container não seja afetado por Bootstrap */
.row #products-grid-container,
.col #products-grid-container,
.theme-tab #products-grid-container,
.tab-content-cls #products-grid-container,
.tab-content #products-grid-container {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 15px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box;
    clear: both;
}

#products-grid-container {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 15px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box;
    clear: both;
}

#products-grid-container .product-card-wrapper {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box;
    display: block;
    max-width: 100%;
}

#products-grid-container .fade-in-up {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    max-width: 100%;
}

/* Mobile (até 767px) - Scroll horizontal */
@media (max-width: 767px) {
    /* Fix overflow na seção de produtos */
    #products-section {
        overflow: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    #products-section .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100% !important;
        overflow: visible !important;
    }
    
    #products-section .row,
    #products-section .col,
    #products-section .theme-tab,
    #products-section .tab-content-cls,
    #products-section .tab-content {
        overflow: visible !important;
    }
    
    .row #products-grid-container,
    .col #products-grid-container,
    .theme-tab #products-grid-container,
    .tab-content-cls #products-grid-container,
    .tab-content #products-grid-container,
    #products-grid-container {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 12px !important;
        padding: 10px 15px !important;
        margin: 0 !important;
        width: 100% !important;
        margin-left: 15px !important;
    }
    
    #products-grid-container::-webkit-scrollbar {
        display: none;
    }
    
    #products-grid-container .product-card-wrapper,
    #products-grid-container .fade-in-up {
        flex: 0 0 auto !important;
        width: 280px !important;
        min-width: 280px !important;
        max-width: 280px !important;
        scroll-snap-align: start;
        margin: 0 !important;
    }
    
    .game-product-card {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }
    
    .game-product-card .product-detail {
        padding: 10px !important;
    }
    
    .game-product-card .product-title {
        font-size: 1rem !important;
    }
    
    .game-product-card .price {
        font-size: 1.2rem !important;
    }
    
    /* Filtros ajuste mobile */
    .gaming-filters-section {
        padding: 0 15px;
    }
    
    .gaming-category-buttons {
        overflow-x: auto;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .gaming-category-buttons::-webkit-scrollbar {
        display: none;
    }
    
    .gaming-category-btn {
        flex-shrink: 0;
        white-space: nowrap;
    }
}

/* Tablet (768px a 991px) - 3 colunas */
@media (min-width: 768px) and (max-width: 991px) {
    #products-grid-container {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 15px !important;
    }
}

/* Desktop (992px+) - 4 colunas */
@media (min-width: 992px) {
    #products-grid-container {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 15px !important;
    }
}

/* Mensagem de nenhum produto encontrado */
.products-empty-message {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    padding: 60px 20px;
    color: #888;
}

.products-empty-message i {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    opacity: 0.5;
    color: rgba(255, 255, 255, 0.3);
}

.products-empty-message h3 {
    color: #cbcbcb;
    margin-bottom: 10px;
    font-family: var(--font-tungsten-bold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.products-empty-message p {
    color: rgba(255, 255, 255, 0.6);
}

#gamingNoResults {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    padding: 60px 20px;
}

#gamingNoResults i {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    opacity: 0.5;
    color: rgba(255, 255, 255, 0.3);
}

#gamingNoResults h3 {
    color: #cbcbcb;
    margin-bottom: 10px;
    font-family: var(--font-tungsten-bold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

#gamingNoResults p {
    color: rgba(255, 255, 255, 0.6);
}

/* Responsivo */
@media (max-width: 768px) {
    .hero-gaming .hero-title {
        font-size: 2rem;
    }
    
    .hero-gaming {
        height: 400px;
    }
    
    .section-title-gaming h2 {
        font-size: 2rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Efeito de Partículas no Background */
.particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #db0000;
    border-radius: 50%;
    opacity: 0.3;
    animation: float-particle 20s infinite;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}


/* About Black Coins Section */
.about-blackcoins-section {
    position: relative;
    overflow: hidden;
}

.coins-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.coin {
    position: absolute;
    width: 40px;
    height: 40px;
    object-fit: contain;
    animation: coinFloat 15s infinite ease-in-out;
    opacity: 0.7;
    pointer-events: none;
}

.coin-1 { top: 10%; left: 5%; animation-delay: 0s; width: 35px; height: 35px; }
.coin-2 { top: 20%; left: 15%; animation-delay: 1s; width: 45px; height: 45px; }
.coin-3 { top: 15%; right: 10%; animation-delay: 2s; width: 40px; height: 40px; }
.coin-4 { top: 30%; left: 8%; animation-delay: 3s; width: 38px; height: 38px; }
.coin-5 { top: 25%; right: 15%; animation-delay: 4s; width: 42px; height: 42px; }
.coin-6 { top: 50%; left: 3%; animation-delay: 5s; width: 36px; height: 36px; }
.coin-7 { top: 45%; right: 8%; animation-delay: 6s; width: 44px; height: 44px; }
.coin-8 { top: 60%; left: 12%; animation-delay: 7s; width: 40px; height: 40px; }
.coin-9 { top: 55%; right: 5%; animation-delay: 8s; width: 38px; height: 38px; }
.coin-10 { top: 70%; left: 6%; animation-delay: 9s; width: 43px; height: 43px; }
.coin-11 { top: 75%; right: 12%; animation-delay: 10s; width: 37px; height: 37px; }
.coin-12 { top: 85%; left: 10%; animation-delay: 11s; width: 41px; height: 41px; }
.coin-13 { top: 80%; right: 3%; animation-delay: 12s; width: 39px; height: 39px; }
.coin-14 { top: 40%; left: 20%; animation-delay: 13s; width: 35px; height: 35px; }
.coin-15 { top: 35%; right: 20%; animation-delay: 14s; width: 45px; height: 45px; }

@keyframes coinFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.7;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 0.9;
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-25px) rotate(270deg);
        opacity: 0.9;
    }
}

.about-content {
    position: relative;
}

.about-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-content:hover::before {
    opacity: 1;
}

@media (max-width: 768px) {
    .about-content {
        padding: 40px 30px !important;
    }
    
    .about-content h2 {
        font-size: 2rem !important;
    }
    
    .about-text {
        font-size: 1rem !important;
    }

    /* Moedas no mobile - tamanho menor e reposicionamento */
    .coins-background {
        display: none;
    }
}

/* Banners Carousel Section */
.banners-carousel-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banners-carousel-wrapper {
    position: relative;
    width: 100%;
}

/* Barra de progresso */
.banner-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #111111;
    z-index: 5;
}

.banner-progress-fill {
    height: 2px;
    width: 0%;
    background: rgba(219, 0, 0, 0.3);
    transition: width linear;
}

.banners-carousel {
    position: relative;
}

.banner-slide {
    position: relative;
    width: 100%;
    outline: none;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    pointer-events: auto;
}

.banners-carousel .slick-slider {
    position: relative;
    cursor: grab;
}

.banners-carousel .slick-slider:active {
    cursor: grabbing;
}

.banners-carousel .slick-list {
    overflow: hidden;
    cursor: grab;
}

.banners-carousel .slick-list.dragging {
    cursor: grabbing;
}

.banners-carousel .slick-slide {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.banners-carousel .slick-slide.dragging {
    opacity: 0.8;
}

.banners-carousel .slick-dots {
    display: none !important;
}

.banners-carousel .slick-dots li {
    margin: 0;
    width: 12px;
    height: 12px;
}

.banners-carousel .slick-dots li button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    font-size: 0;
    line-height: 0;
    transition: all 0.3s ease;
}

.banners-carousel .slick-dots li button:hover,
.banners-carousel .slick-dots li.slick-active button {
    background: #db0000;
    border-color: #db0000;
    width: 30px;
    border-radius: 6px;
}

.banners-carousel .slick-arrow {
    display: none !important;
}

.banners-carousel .slick-arrow::before {
    display: none !important;
}

.banners-carousel .slick-arrow:hover {
    background: rgba(219, 0, 0, 0.8);
    border-color: #db0000;
    color: #ffffff;
}

.banners-carousel .slick-arrow:focus {
    outline: none;
}

.banners-carousel .slick-prev {
    left: 20px;
}

.banners-carousel .slick-next {
    right: 20px;
}

.banners-carousel .slick-arrow i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 1;
    color: #ffffff;
}

@media (max-width: 768px) {
    .banners-carousel .slick-arrow {
        display: none !important;
    }
    
    .banners-carousel .slick-dots {
        bottom: 15px;
    }
    
    .banners-carousel .slick-dots li button {
        width: 10px;
        height: 10px;
    }
    
    .banners-carousel .slick-dots li.slick-active button {
        width: 25px;
    }

    /* Banner carousel mobile adjustments */
    .banners-carousel-section {
        padding-top: 0 !important;
    }

    .banners-carousel-wrapper {
        position: relative;
    }

    .banners-carousel {
        height: auto !important;
        min-height: 120px;
    }

    .banner-slide {
        height: auto;
    }

    .banner-image {
        width: 100%;
        height: auto;
        min-height: 100px;
        object-fit: cover;
        object-position: center;
    }

    .banner-progress-bar {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
    }
}

/* =====================================================
   STREAMERS HOME - Layout Compacto Horizontal
   ===================================================== */
.streamers-home-section {
    background: #0a0a0a;
    padding: 40px 0;
    overflow: hidden;
}

.streamers-home-grid {
    display: flex;
    gap: 25px;
    overflow: hidden;
    padding: 15px 0;
    position: relative;
    width: 100%;
}

/* Efeito fade nas laterais */
.streamers-home-grid::before,
.streamers-home-grid::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 5;
    pointer-events: none;
}

.streamers-home-grid::before {
    left: 0;
    background: linear-gradient(to right, #0a0a0a 0%, transparent 100%);
}

.streamers-home-grid::after {
    right: 0;
    background: linear-gradient(to left, #0a0a0a 0%, transparent 100%);
}

.streamers-home-marquee {
    display: flex;
    gap: 25px;
    animation: streamers-marquee 30s linear infinite;
    will-change: transform;
}

.streamers-home-marquee:hover {
    animation-play-state: paused;
}

@keyframes streamers-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Override dos cards na home */
.streamers-home-grid .streamer-card,
.streamers-home-marquee .streamer-card {
    position: relative;
    min-width: 100px;
    width: 100px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    background: transparent;
    border: none;
    padding: 10px 5px;
    border-radius: 12px;
    overflow: visible;
}

.streamers-home-grid .streamer-card:hover,
.streamers-home-marquee .streamer-card:hover {
    transform: scale(1.08);
    background: rgba(255, 255, 255, 0.05);
}

.streamers-home-grid .streamer-card-image,
.streamers-home-marquee .streamer-card-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #2a2a2a;
    transition: all 0.3s ease;
    position: relative;
}

/* Borda verde para quem está live */
.streamers-home-grid .streamer-card:not(.streamer-card-offline) .streamer-card-image,
.streamers-home-marquee .streamer-card:not(.streamer-card-offline) .streamer-card-image {
    border-color: #1cff00;
    box-shadow: 0 0 15px rgba(28, 255, 0, 0.4);
}

.streamers-home-grid .streamer-card-overlay,
.streamers-home-marquee .streamer-card-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    position: relative;
    height: auto;
    background: none;
    padding: 0;
    pointer-events: none;
}

.streamers-home-grid .streamer-card-live-badge,
.streamers-home-marquee .streamer-card-live-badge {
    position: absolute;
    top: 58px;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    background: #1cff00;
    color: #000;
    padding: 2px 7px;
    border-radius: 3px;
    font-size: 0.45rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    z-index: 3;
    box-shadow: 0 0 6px rgba(28, 255, 0, 0.5);
    animation: none;
}

.streamers-home-grid .streamer-card-viewers,
.streamers-home-marquee .streamer-card-viewers {
    position: absolute;
    top: -2px;
    right: -2px;
    left: auto;
    bottom: auto;
    background: rgba(0, 0, 0, 0.85);
    padding: 2px 5px;
    border-radius: 8px;
    font-size: 0.6rem;
}

.streamers-home-grid .streamer-card-name,
.streamers-home-marquee .streamer-card-name {
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    margin: 0;
    z-index: 3;
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    text-align: center;
    padding: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    max-width: 100px;
}

/* Uptime para home */
.streamers-home-grid .streamer-card-uptime,
.streamers-home-marquee .streamer-card-uptime {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
}

.streamers-home-grid .streamer-card-uptime i,
.streamers-home-marquee .streamer-card-uptime i {
    font-size: 0.5rem;
    color: rgba(28, 255, 0, 0.7);
}

.streamers-home-grid .streamer-card-offline,
.streamers-home-marquee .streamer-card-offline {
    opacity: 0.5;
}

.streamers-home-grid .streamer-card-offline .streamer-card-image,
.streamers-home-marquee .streamer-card-offline .streamer-card-image {
    border-color: #333;
    box-shadow: none;
    filter: grayscale(0.5);
}

.streamers-home-grid .streamer-card-placeholder,
.streamers-home-marquee .streamer-card-placeholder {
    background: linear-gradient(135deg, rgba(28, 255, 0, 0.1) 0%, rgba(219, 0, 0, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.5rem;
    font-weight: 800;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    position: relative;
}

/* Skeleton loader para home */
.streamers-home-grid .skeleton-card {
    min-width: 100px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px 5px;
}

.streamers-home-grid .skeleton-card::before {
    content: '';
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(90deg, #1a1a1a 25%, #252525 50%, #1a1a1a 75%);
    background-size: 200% 100%;
    animation: skeleton-pulse-home 1.5s infinite;
}

.streamers-home-grid .skeleton-card::after {
    content: '';
    width: 60px;
    height: 12px;
    border-radius: 6px;
    background: linear-gradient(90deg, #1a1a1a 25%, #252525 50%, #1a1a1a 75%);
    background-size: 200% 100%;
    animation: skeleton-pulse-home 1.5s infinite;
}

@keyframes skeleton-pulse-home {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Responsivo para streamers home */
@media (max-width: 768px) {
    .streamers-home-section {
        padding: 30px 0;
    }

    .streamers-home-grid {
        gap: 15px;
        padding: 10px 5px;
    }

    .streamers-home-grid .streamer-card {
        min-width: 85px;
        width: 85px;
    }

    .streamers-home-grid .streamer-card-image {
        width: 60px;
        height: 60px;
    }

    .streamers-home-grid .streamer-card-live-badge {
        top: 45px;
        font-size: 0.5rem;
        padding: 2px 6px;
    }

    .streamers-home-grid .streamer-card-name {
        font-size: 0.6rem;
        max-width: 85px;
    }
}
