/* Estilos globais personalizados */
        body {
            font-family: 'Inter', sans-serif;
            background-color: #0f172a;
            /* Fundo mais escuro */
            color: #e2e8f0;
            /* Cor de texto padrão clara */
        }

        /* Estilos do Menu Mobile */
        #mobile-menu {
            position: fixed;
            top: 68px;
            /* Altura do cabeçalho, ajuste se necessário */
            left: 0;
            width: 100%;
            max-height: 0;
            /* Começa oculto */
            overflow: hidden;
            opacity: 0;
            transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
            z-index: 50;
            background-color: #2d3748;
            padding: 0 1rem;
            /* Padding horizontal, vertical será controlado por max-height */
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transform: translateZ(0); /* Força o uso de GPU para evitar redimensionamento */
        }

        #mobile-menu.is-open {
            max-height: 500px;
            /* Valor grande o suficiente para o conteúdo do menu */
            opacity: 1;
            padding-top: 1rem;
            padding-bottom: 1rem;
        }

        /* Estilo para links do menu mobile */
        .mobile-nav-link {
            display: block;
            padding: 0.75rem 1rem;
            color: #e2e8f0;
            transition: background-color 0.2s ease-in-out;
        }

        .mobile-nav-link:hover {
            background-color: #1e293b;
        }

        /* Estilos do Slider de Banners */
        .slider-container {
            position: relative;
            width: 100%;
            height: 450px;
            /* Altura ajustada para o slider */
            overflow: hidden;
            border-radius: 0.75rem;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            display: flex;
            /* Usar flexbox para alinhar conteúdo */
            align-items: center;
            /* Centraliza verticalmente o conteúdo */
            justify-content: flex-end;
            /* Alinha o painel lateral à direita */
            text-align: left;
            /* Alinha texto à esquerda por padrão */
        }

        .slide.active {
            opacity: 1;
        }

        /* Estilos para o painel lateral à direita */
        .slide-side-panel {
            background-color: rgba(0, 0, 0, 0.6);
            /* Fundo semi-transparente escuro */
            border-radius: 0.75rem;
            padding: 1.0rem;
            width: 400px;
            /* Largura fixa para o painel */
            height: 100%;
            /* Altura ajustada para 100% */
            overflow: hidden;
            /* Oculta qualquer conteúdo que exceda a altura */
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            /* Espaça conteúdo e botão */
            z-index: 2;
            /* Acima da imagem de fundo */
            margin-right: 0;
            /* Colado à direita */
        }

        .side-panel-title {
            font-size: 1.5rem;
            /* text-3xl */
            font-weight: 700;
            /* font-bold */
            color: #e2e8f0;
            /* text-light */
            margin-bottom: 1rem;
            text-align: center;
        }

        .side-panel-screenshots {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            /* 2 colunas */
            gap: 0.5rem;
            /* Espaçamento entre as imagens */
            margin-bottom: 1rem;
        }

        .side-panel-screenshots img {
            width: 100%;
            height: auto;
            border-radius: 0.5rem;
            object-fit: cover;
        }

        .side-panel-description {
            font-size: 0.875rem;
            /* text-sm */
            color: #cbd5e0;
            /* text-muted */
            margin-bottom: 0.75rem;
            flex-grow: 1;
            /* Permite que a descrição ocupe o espaço disponível */
            overflow: hidden;
            /* Garante que o texto não cause scroll */
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            /* Limita a 3 linhas */
            -webkit-box-orient: vertical;
        }

        .side-panel-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 0.75rem;
        }

        .side-panel-tag {
            background-color: #63b3ed;
            /* accent-blue */
            color: white;
            font-size: 0.75rem;
            /* text-xs */
            padding: 0.25rem 0.75rem;
            border-radius: 0.5rem;
            font-weight: 600;
        }

        .side-panel-price {
            font-size: 1.5rem;
            /* text-2xl */
            font-weight: 700;
            /* font-bold */
            color: #a78bfa;
            /* accent-purple */
            margin-bottom: 1rem;
            text-align: right;
        }

        .slider-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            padding: 0.75rem 1rem;
            border-radius: 0.5rem;
            cursor: pointer;
            z-index: 10;
            transition: background-color 0.3s ease;
        }

        .slider-button:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }

        .slider-button.prev {
            left: 1rem;
        }

        .slider-button.next {
            right: 1rem;
        }

        .slider-indicators {
            position: absolute;
            bottom: 1rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.5rem;
            z-index: 10;
        }

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

        .indicator.active {
            background-color: white;
        }

        /* Efeito de hover para cards de jogos */
        .game-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
        }

        /* Estilos para os novos cards de jogos grátis */
        .free-games-container {
            overflow-x: auto;
            /* Adiciona a barra de rolagem horizontal */
            -webkit-overflow-scrolling: touch;
            /* Melhora a rolagem em dispositivos iOS */
            padding-bottom: 1rem;
            /* Espaço para a barra de rolagem */
        }

        .free-games-grid {
            display: flex;
            /* Usa flexbox para os cards */
            justify-content: flex-start;
            /* Alinha os cards ao início da linha */
            flex-wrap: nowrap;
            /* Impede que os cards quebrem para a próxima linha */
            gap: 1.5rem;
            /* Espaçamento entre os cards */
            padding: 0.5rem;
            /* Padding para a rolagem */
        }

        .free-game-card {
            background-color: #1f2937;
            /* Um fundo escuro ligeiramente diferente */
            border-radius: 0.75rem;
            overflow: hidden;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
            /* Sombra mais forte */
            transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
            display: flex;
            flex-direction: column;
            width: 250px;
            min-width: 160px;
            /* Largura mínima ainda mais reduzida */
            flex-shrink: 0;
            /* Impede que os cards encolham */
            border: 2px solid #a78bfa;
            /* Borda accent-purple */
            height: 400px;
            /* Altura fixa para os cards */
        }

        .free-game-card:hover {
            transform: translateY(-8px);
            /* Efeito de elevação mais pronunciado */
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.7);
        }

        .free-game-card .game-cover-container {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%;
            /* Proporção 16:9 para as imagens */
            overflow: hidden;
        }

        .free-game-card img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0.75rem 0.75rem 0 0;
        }

        .free-game-card-text {
            padding: 1rem;
            /* Preenchimento reduzido */
            flex-grow: 1;
            /* Permite que o texto ocupe o espaço restante */
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            /* Espaça o conteúdo e o botão */
            background-color: #1a202c;
        }

        .free-game-card h4 {
            font-size: 1.125rem;
            /* Título menor (text-lg) */
            font-weight: 700;
            /* Fonte mais negrito */
            color: #63b3ed;
            /* accent-blue para o título */
            margin-bottom: 0.5rem;
            /* Espaçamento reduzido */
        }

        .free-game-card p {
            font-size: 0.8rem;
            /* Texto da descrição ainda menor */
            color: #cbd5e0;
            flex-grow: 1;
            /* Permite que a descrição ocupe o espaço */
            margin-bottom: 0.75rem;
            /* Espaçamento reduzido */
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            /* Limita a 3 linhas para a descrição */
            -webkit-box-orient: vertical;
        }

        .countdown-timer {
            font-size: 0.75rem;
            /* text-xs */
            color: #fca311;
            /* Um tom de laranja/amarelo para o tempo */
            font-weight: 600;
            margin-top: 0.5rem;
            text-align: center;
            background-color: rgba(0, 0, 0, 0.3);
            padding: 0.25rem 0.5rem;
            border-radius: 0.25rem;
        }

        /* Estilos para o card "Ver Todas as Promoções" */
        .see-all-card {
            /* Classe genérica para os novos cards "Ver Todos" */
            background-color: #2d3748;
            /* Cor de fundo secundária */
            border-radius: 0.75rem;
            overflow: hidden;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
            transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
            display: flex;
            flex-direction: column;
            justify-content: center;
            /* Centraliza o conteúdo verticalmente */
            align-items: center;
            /* Centraliza o conteúdo horizontalmente */
            text-align: center;
            padding: 1rem;
            cursor: pointer;
            border: 2px solid #63b3ed;
            /* Borda accent-blue */

            /* Removendo width e height fixos daqui para que se adapte ao grid/flex */
        }

        /* Específico para o card "Ver Todas as Promoções" na seção de jogos grátis */
        .free-games-see-all-card {
            width: 250px;
            /* Mantém a largura consistente com os free-game-card */
            min-width: 160px;
            flex-shrink: 0;
            height: 400px;
            /* Mantém a altura consistente com os free-game-card */
        }
        
        /* Card "Ver Todas as Promoções" na seção de jogos em oferta */
        .free-games-grid .see-all-card {
            width: 250px;
            min-width: 160px;
            flex-shrink: 0;
            height: 400px;
            background-color: #1f2937;
            border: 2px solid #a78bfa;
        }

        /* Específico para os cards "Ver Todos" nas seções de grid (jogos em destaque, guias, etc.) */
        .grid-see-all-card {
            height: 100%;
            /* Ocupa a altura total do grid item */
            width: 100%;
            /* Ocupa a largura total do grid item */
            background-color: #1a202c;
        }


        .see-all-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.7);
        }

        .see-all-card .icon {
            font-size: 4rem;
            /* Tamanho grande para o ícone */
            color: #63b3ed;
            /* accent-blue */
            margin-bottom: 1rem;
        }

        .see-all-card h4 {
            font-size: 1.5rem;
            /* Título maior */
            font-weight: 700;
            color: #e2e8f0;
        }


        /* Estilos do Sidebar de Novidades */
        .news-sidebar-item {
            background-color: #2d3748;
            border-radius: 0.75rem;
            padding: 1rem;
            transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
        }

        .news-sidebar-item:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        /* Estilo para vídeos responsivos */
        .video-container {
            position: relative;
            padding-bottom: 56.25%;
            /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
            border-radius: 0.5rem;
            /* rounded-md */
            background-color: #374151;
            /* Cor de fundo para depuração, visível se a imagem não carregar */
        }

        .video-container iframe,
        .video-container img {
            /* Aplicar estilos também à imagem */
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* Garante que a imagem preencha o contêiner */
        }

        .view-link {
            color: #63b3ed;
            /* accent-blue */
            text-decoration: none;
            font-weight: 600;
            transition: color 0.2s ease-in-out;
        }

        .view-link:hover {
            color: #a78bfa;
            /* accent-purple */
        }

        /* Estilos para cards dinâmicos (guias, builds, receitas, dicas) */
        .dynamic-card {
            background-color: #2d3748;
            /* secondary-dark */
            border-radius: 0.75rem;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
            display: flex;
            /* Para alinhar o conteúdo e o link "Ver Detalhes" */
            flex-direction: column;
            /* Conteúdo em coluna */
            height: 100%;
            /* Garante que todos os cards tenham a mesma altura */
            min-height: 250px;
            /* Adicionado para garantir altura mínima e empurrar o botão */
        }

        .dynamic-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
        }

        .dynamic-card-content {
            padding: 1.5rem;
            flex-grow: 1;
            background-color: #1a202c;
            /* Faz o conteúdo crescer e ocupar o espaço disponível */
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            /* Distribui o conteúdo verticalmente */
        }

        .dynamic-card h4 {
            font-size: 1.25rem;
            /* text-xl */
            font-weight: 600;
            /* font-semibold */
            color: #e2e8f0;
            /* text-light */
            margin-bottom: 0.5rem;
            white-space: nowrap;
            /* Título em uma linha */
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .dynamic-card p {
            font-size: 0.875rem;
            /* text-sm */
            color: #cbd5e0;
            /* text-muted */
            flex-grow: 1;
            /* Permite que a descrição ocupe o espaço */
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            /* Limita a 3 linhas para a descrição */
            -webkit-box-orient: vertical;
        }

        .dynamic-card .view-link-button {
            /* Renomeado para evitar conflito com .view-link geral */
            display: inline-block;
            background-color: #63b3ed;
            /* accent-blue */
            color: white;
            font-weight: bold;
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            /* rounded-lg */
            margin-top: auto;
            /* Empurra para o final do card-content */
            transition: background-color 0.3s ease-in-out;
            text-align: center;
        }

        .dynamic-card .view-link-button:hover {
            background-color: #4299e1;
            /* blue-700 */
        }

        .bg-offer-green {
            background-color: #b9109d !important;
            /* green-700 */
        }

        /* Estilos para cards de Novidades com imagem */
        .news-card {
            background-color: #2d3748;
            border-radius: 0.75rem;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            height: 100%;
            min-height: 300px;
            /* Adicionado para garantir altura mínima e empurrar o botão */
        }

        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
        }

        /* Removed fixed height from .news-card img to allow object-fit to work better */
        .news-card img {
            width: 100%;
            height: 180px;
            /* Fixed height for news thumbnails */
            object-fit: cover;
            border-radius: 0.75rem 0.75rem 0 0;
            /* Rounded top corners */
        }

        .news-card-content {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            background-color: #1a202c;
        }

        /* Novos estilos para os cards de jogos em destaque */
        .featured-game-card {
            background-color: #2d3748;
            /* secondary-dark */
            border-radius: 0.75rem;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
            display: flex;
            flex-direction: column;
            min-height: 400px;
            /* Altura mínima para os cards */
            justify-content: space-between;
            /* Distribui o conteúdo e o botão */
            position: relative;
            /* Adicionado para posicionamento absoluto dos badges */
        }

        .featured-game-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
        }

        .featured-game-card .game-cover-container {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%;
            /* Ajustado para proporção 16:9, igual aos cards de oferta */
            overflow: hidden;
        }

        .featured-game-card img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0.75rem 0.75rem 0 0;
            /* Bordas arredondadas apenas no topo */
        }

        .featured-game-card-text {
            padding: 1rem;
            /* Ajustado para 1.5rem */
            color: #e2e8f0;
            /* text-light */
            text-shadow: none;
            /* Removido text-shadow */
            flex-grow: 1;
            /* Permite que o texto ocupe o espaço disponível */
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            /* Empurra a avaliação e o preço para o final */
            background-color: #1a202c;
        }

        .featured-game-card h4 {
            font-size: 1.25rem;
            /* Ajustado para text-xl */
            font-weight: 700;
            /* font-bold */
            color: #e2e8f0;
            /* text-light */
            margin-bottom: 0.25rem;
            white-space: nowrap;
            /* Título em uma linha */
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .featured-game-card p {
            font-size: 0.875rem;
            /* Ajustado para text-sm */
            color: #cbd5e0;
            /* text-muted */
            margin-bottom: 0.5rem;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            /* Limita a 3 linhas para a descrição */
            -webkit-box-orient: vertical;
        }

        .featured-game-card .game-rating {
            font-size: 0.875rem;
            /* text-sm */
            color: #cbd5e0;
            /* text-muted */
            margin-top: auto;
            /* Empurra a avaliação para o final */
            margin-bottom: 0.5rem;
            /* Pequena margem antes do botão */
        }

        .featured-game-card-buttons {
            background-color: #4a5568;
            /* Cor de fundo para a área dos botões (bg-gray-700) */
            border-top: 1px solid #1a202c;
            /* Linha divisória */
            margin-top: auto;
            /* Empurra para o final do flex container */
        }

        .bg-accent-blue,
        .bg-offer-green {
            border-top-left-radius: 0rem !important;
            border-top-right-radius: 0rem !important;
        }

        .view-wiki-button {
            /* REMOVED .featured-game-card prefix */
            display: inline-block;
            color: white;
            font-weight: bold;
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            transition: background-color 0.3s ease-in-out;
            text-align: center;
            width: 100%;
            /* Ocupa a largura total do card */
        }

        .featured-game-card .view-wiki-button:hover {
            /* Keep hover effect, Tailwind will handle base color */
            /* This will be handled by the hover:bg-green-700 or hover:bg-blue-700 classes */
        }

        /* Estilos para o FAQ */
        .faq-item {
            background-color: #1a202c;
            /* primary-dark */
            border-radius: 0.75rem;
            padding: 1.5rem;
            margin-bottom: 1rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        .faq-question {
            font-size: 1.125rem;
            /* text-lg */
            font-weight: 600;
            /* font-semibold */
            color: #e2e8f0;
            /* text-light */
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-answer {
            font-size: 0.95rem;
            /* slightly larger than text-sm */
            color: #cbd5e0;
            /* text-muted */
            margin-top: 1rem;
            display: none;
            /* Hidden by default */
        }

        .faq-answer.active {
            display: block;
        }

        .faq-icon {
            transition: transform 0.3s ease;
        }

        .faq-icon.rotate {
            transform: rotate(180deg);
        }

        /* Estilos para as caixas individuais de contato e FAQ */
        .contact-box,
        .faq-box {
            background-color: #2d3748;
            /* secondary-dark */
            border-radius: 0.75rem;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            padding: 2rem;
            border: 1px solid #63b3ed;
            /* accent-blue */
        }

        /* Estilos para a caixa de valores (normal price) */
        .price-box {
            background-color: #2d3748;
            /* secondary-dark - Cor de fundo alterada para melhor visibilidade */
            /* rounded-lg */
            margin-top: 1rem;
            /* mt-4 */
            display: flex;
            align-items: stretch;
            /* Estica os filhos para preencher a altura */
            overflow: hidden;
            /* Garante que as bordas arredondadas se apliquem aos filhos */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            width: 100%;
            /* Garante que ocupe a largura total disponível */
            min-height: 70px;
            /* Altura mínima para simetria */
            border: 2px solid #63b3ed;
            /* Adicionado para visibilidade */
        }

        /* Estilos para a caixa de preço de oferta (similar à imagem) */
        .price-box-offer {
            display: flex;
            align-items: stretch;
            /* Estica os filhos para preencher a altura */
            margin-top: 1rem;
            overflow: hidden;
            /* Garante que as bordas arredondadas se apliquem aos filhos */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            width: 100%;
            /* Garante que ocupe a largura total disponível */
            min-height: 50px;
            /* Altura mínima para simetria */
            border: 2px solid #63b3ed;
            /* Adicionado para visibilidade */
        }

        .discount-percentage-area {
            background-color: #10B981;
            /* offer-green */
            color: white;
            font-weight: bold;
            font-size: 1.8rem;
            /* Maior para destaque */
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0.5rem 1rem;
            flex-shrink: 0;
            /* Impede que encolha */
        }

        .prices-area {
            background-color: #2d3748;
            /* secondary-dark */
            flex-grow: 1;
            /* Ocupa o espaço restante */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-end;
            /* Alinha os preços à direita */
            padding: 0.5rem 1rem;
        }

        .prices-area .original-price {
            font-size: 0.9rem;
            /* Ligeiramente menor que antes */
            color: #cbd5e0;
            /* text-muted */
            text-decoration: line-through;
        }

        .prices-area .final-price {
            font-size: 1.3rem;
            /* Ajustado para melhor encaixe */
            font-weight: bold;
            color: white;
            /* Alterado para branco para melhor contraste no fundo escuro */
        }

        /* Estilo para a área de preço normal (sem desconto percentual) */
        .normal-price-area {
            background-color: #2d3748;
            /* secondary-dark */
            flex-grow: 1;
            /* Ocupa o espaço restante */
            display: flex;
            flex-direction: row;
            /* Alinha na mesma linha */
            justify-content: center;
            /* Centraliza horizontalmente */
            align-items: center;
            /* Centraliza verticalmente */
            padding: 0.5rem 1rem;
            gap: 0.5rem;
            /* Espaçamento entre os elementos */
        }

        /* Badges de oferta e economia */
        .offer-badge,
        .economy-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            /* rounded-full */
            font-weight: bold;
            font-size: 0.875rem;
            /* text-sm */
            z-index: 10;
            display: block;
            /* Garante que esteja sempre visível */
            opacity: 1;
            /* Garante que esteja sempre visível */
        }

        .offer-badge {
            background-color: #ef4444;
            /* bg-red-500 */
        }

        .economy-badge {
            background-color: #3b82f6;
            /* economy-blue */
        }

        /* NEW: Styles for section titles */
        .section-title {
            font-size: 2.5rem;
            /* text-4xl */
            font-weight: 800;
            /* font-extrabold */
            color: #e2e8f0;
            /* text-light */
            margin-bottom: 0.5rem;
            margin-top: 1rem !important;
            /* mb-8 */
            text-align: center;
        }


        /* Media Queries para responsividade */
        @media (max-width: 768px) {
            .slide {
                flex-direction: column;
                /* Empilha o conteúdo em telas menores */
                justify-content: center;
                /* Centraliza o conteúdo verticalmente */
                align-items: center;
                /* Centraliza o conteúdo horizontalmente */
            }

            #latestNewsGrid,
            #featuredGamesGrid,
            #popularGuidesGrid,
            #popularBuildsRecipesGrid,
            #popularTipsGrid,
            #featuredVideosGrid {
                padding: 0.5rem;
            }


            /* Removido: .slide-large-title */

            .slide-side-panel {
                width: 90%;
                /* Ocupa mais largura em mobile */
                margin-right: 0;
                margin-top: 1rem;
                padding: 1rem;
                height: auto;
                /* Permite que a altura se ajuste ao conteúdo em mobile */
            }

            .side-panel-title {
                font-size: 1.1rem;
            }

            .contact-box,
            .faq-box {
                padding: 0.5rem;
            }


            .side-panel-screenshots {
                grid-template-columns: repeat(2, 1fr);
                /* Mantém 2 colunas */
            }

            .side-panel-price {
                text-align: center;
            }

            .p-8 {
                padding: 0rem !important;
            }

            #contato {
                padding: 0rem !important;
            }

            .featured-game-card .view-wiki-button {
                font-size: 0.875rem;
                /* Reduz o tamanho da fonte do botão no mobile */
            }

            .section-title {
                font-size: 2rem !important;
                /* Smaller size for mobile */
            }

        }

        /* Estilos para a área combinada de preço e botão no side panel do banner */
        .price-button-container {
            display: flex;
            flex-direction: column;
            width: 100%;
            margin-top: 1rem;
            border-radius: 0.5rem;
            /* Aplica o arredondamento externo */
            overflow: hidden;
            /* Garante que os filhos respeitem o arredondamento */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }

        .price-button-container .price-box-offer,
        .price-button-container .price-box {
            margin-top: 0;
            /* Remove a margem superior individual */
            border: none;
            /* Remove a borda individual */
            border-radius: 0;
            /* Remove arredondamento individual */
            box-shadow: none;
            /* Remove sombra individual */
        }

        .price-button-container .discover-button {
            border-radius: 0;
            /* Remove arredondamento individual do botão */
            margin-top: 0;
            /* Remove a margem superior individual do botão */
            padding: 0.75rem 1rem;
            /* Ajusta o padding para ficar mais próximo do design */
            font-size: 1.125rem;
            /* Aumenta a fonte do botão */
        }

        /* Ajustes específicos para o botão de oferta dentro do container */
        .price-button-container .bg-offer-green {
            border-bottom-left-radius: 0.5rem;
            /* Arredonda a borda inferior esquerda do botão */
            border-bottom-right-radius: 0.5rem;
            /* Arredonda a borda inferior direita do botão */
        }

        .price-button-container .bg-accent-blue {
            border-bottom-left-radius: 0.5rem;
            /* Arredonda a borda inferior esquerda do botão */
            border-bottom-right-radius: 0.5rem;
            /* Arredonda a borda inferior direita do botão */
        }

        .mt-16 {
            margin-top: 2rem !important;
        }

        /* Ajustes para o topo da área de preços */
        .price-button-container .price-box-offer .discount-percentage-area {
            border-top-left-radius: 0.5rem;
            /* Arredonda o canto superior esquerdo da área de desconto */
        }

        .price-button-container .price-box-offer .prices-area {
            border-top-right-radius: 0.5rem;
            /* Arredonda o canto superior direito da área de preços */
        }

        .price-button-container .price-box .normal-price-area {
            border-top-left-radius: 0.5rem;
            /* Arredonda o canto superior esquerdo da área de preço normal */
            border-top-right-radius: 0.5rem;
            /* Arredonda o canto superior direito da área de preço normal */
        }