/* mgmbetcasino - Estilo Manhwa Coreano 2026 */
:root {
    --cor-primaria: #6B21A8;
    --cor-secundaria: #A855F7;
    --cor-dourada: #F59E0B;
    --cor-dourada-clara: #FCD34D;
    --cor-fundo: #1E1033;
    --cor-fundo-card: #2D1B4E;
    --cor-texto: #F3E8FF;
    --cor-texto-secundario: #C4B5FD;
    --gradiente-principal: linear-gradient(135deg, #6B21A8 0%, #A855F7 50%, #6B21A8 100%);
    --gradiente-dourado: linear-gradient(135deg, #F59E0B 0%, #FCD34D 50%, #F59E0B 100%);
    --sombra-neon: 0 0 20px rgba(168, 85, 247, 0.5);
    --sombra-dourada: 0 0 20px rgba(245, 158, 11, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Noto Sans', sans-serif;
    background: var(--cor-fundo);
    color: var(--cor-texto);
    line-height: 1.8;
    min-height: 100vh;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--cor-texto-secundario);
}

a {
    color: var(--cor-dourada);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--cor-dourada-clara);
    text-shadow: var(--sombra-dourada);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header - Não sticky */
.cabecalho {
    background: linear-gradient(180deg, rgba(30, 16, 51, 0.98) 0%, rgba(30, 16, 51, 0.9) 100%);
    padding: 1rem 0;
    border-bottom: 2px solid var(--cor-secundaria);
}

.cabecalho-conteudo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-texto {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradiente-dourado);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navegação */
.navegacao {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.navegacao a {
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    background: var(--cor-fundo-card);
    color: var(--cor-texto);
    font-weight: 500;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.navegacao a:hover {
    background: var(--cor-secundaria);
    border-color: var(--cor-dourada);
    transform: translateY(-2px);
}

.btn-jogar {
    background: var(--gradiente-dourado) !important;
    color: var(--cor-fundo) !important;
    font-weight: 700 !important;
    box-shadow: var(--sombra-dourada);
}

.btn-jogar:hover {
    transform: translateY(-3px) scale(1.05) !important;
}

/* Menu Mobile */
.menu-toggle {
    display: none;
    background: var(--cor-secundaria);
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Hero Section */
.heroi {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cor-fundo) 0%, var(--cor-primaria) 100%);
}

.heroi-fundo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.heroi-conteudo {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
}

.heroi h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.heroi h1 span {
    background: var(--gradiente-dourado);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.heroi p {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 2rem;
    color: var(--cor-texto);
}

.btn-principal {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradiente-dourado);
    color: var(--cor-fundo);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: var(--sombra-dourada);
    transition: all 0.3s ease;
}

.btn-principal:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

/* Seções */
.secao {
    padding: 4rem 0;
}

.secao-titulo {
    text-align: center;
    margin-bottom: 3rem;
}

.secao-titulo h2 {
    display: inline-block;
    position: relative;
    padding-bottom: 1rem;
}

.secao-titulo h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradiente-dourado);
    border-radius: 2px;
}

/* Cards de Jogos */
.jogos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.jogo-card {
    background: var(--cor-fundo-card);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
}

.jogo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradiente-principal);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.jogo-card:hover {
    transform: translateY(-10px);
    border-color: var(--cor-dourada);
    box-shadow: var(--sombra-neon);
}

.jogo-card:hover::before {
    opacity: 0.1;
}

.jogo-imagem {
    width: 100%;
    height: 200px;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.jogo-info {
    padding: 1.5rem;
    position: relative;
    z-index: 1;
}

.jogo-info h3 {
    color: var(--cor-dourada);
    margin-bottom: 0.75rem;
}

.jogo-info p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.jogo-btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: var(--gradiente-dourado);
    color: var(--cor-fundo);
    font-weight: 600;
    border-radius: 25px;
    font-size: 0.9rem;
}

/* Breadcrumb */
.migalhas {
    padding: 1rem 0;
    background: rgba(45, 27, 78, 0.5);
}

.migalhas-lista {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    flex-wrap: wrap;
}

.migalhas-lista li::after {
    content: '›';
    margin-left: 0.5rem;
    color: var(--cor-secundaria);
}

.migalhas-lista li:last-child::after {
    display: none;
}

.migalhas-lista a {
    color: var(--cor-texto-secundario);
}

.migalhas-lista li:last-child {
    color: var(--cor-dourada);
}

/* Autor */
.autor-box {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    background: var(--cor-fundo-card);
    padding: 2rem;
    border-radius: 20px;
    border-left: 4px solid var(--cor-dourada);
    margin: 2rem 0;
}

.autor-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--cor-dourada);
}

.autor-info h4 {
    color: var(--cor-dourada);
    margin-bottom: 0.25rem;
}

.autor-info span {
    font-size: 0.9rem;
    color: var(--cor-texto-secundario);
}

/* Avaliações */
.avaliacoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.avaliacao-card {
    background: var(--cor-fundo-card);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.avaliacao-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.avaliacao-autor {
    font-weight: 600;
    color: var(--cor-texto);
}

.avaliacao-cidade {
    font-size: 0.85rem;
    color: var(--cor-texto-secundario);
}

.avaliacao-estrelas {
    color: var(--cor-dourada);
    font-size: 1.1rem;
}

.avaliacao-texto {
    font-style: italic;
    margin-bottom: 0.75rem;
}

.avaliacao-data {
    font-size: 0.8rem;
    color: var(--cor-texto-secundario);
}

/* FAQ */
.faq-lista {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--cor-fundo-card);
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.faq-pergunta {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--cor-dourada);
    transition: background 0.3s ease;
}

.faq-pergunta:hover {
    background: rgba(168, 85, 247, 0.1);
}

.faq-pergunta::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--cor-secundaria);
}

.faq-item.ativo .faq-pergunta::after {
    content: '−';
}

.faq-resposta {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.ativo .faq-resposta {
    padding: 1rem 1.5rem;
    max-height: 500px;
}

/* Pagamento */
.pagamento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.pagamento-card {
    background: var(--cor-fundo-card);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(168, 85, 247, 0.2);
    transition: all 0.3s ease;
}

.pagamento-card:hover {
    border-color: var(--cor-dourada);
    transform: translateY(-5px);
}

.pagamento-card img {
    height: 60px;
    margin-bottom: 1rem;
}

.pagamento-card h4 {
    color: var(--cor-dourada);
    margin-bottom: 0.5rem;
}

/* Licença */
.licenca-box {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: var(--cor-fundo-card);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid var(--cor-secundaria);
}

.licenca-badge {
    width: 120px;
    height: auto;
}

.licenca-info h3 {
    color: var(--cor-dourada);
    margin-bottom: 0.5rem;
}

/* Suporte */
.suporte-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.suporte-item {
    background: var(--cor-fundo-card);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.suporte-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-neon);
}

.suporte-icone {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.suporte-item h4 {
    color: var(--cor-dourada);
}

/* Responsável */
.responsavel-conteudo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.responsavel-imagem {
    width: 100%;
    max-width: 300px;
    border-radius: 20px;
}

.responsavel-lista {
    list-style: none;
}

.responsavel-lista li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
}

.responsavel-lista li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--cor-dourada);
    font-weight: bold;
}

/* Footer */
.rodape {
    background: linear-gradient(180deg, var(--cor-fundo-card) 0%, var(--cor-fundo) 100%);
    padding: 4rem 0 2rem;
    border-top: 2px solid var(--cor-secundaria);
}

.rodape-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.rodape-coluna h4 {
    color: var(--cor-dourada);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.rodape-links {
    list-style: none;
}

.rodape-links li {
    margin-bottom: 0.75rem;
}

.rodape-links a {
    color: var(--cor-texto-secundario);
    transition: all 0.3s ease;
}

.rodape-links a:hover {
    color: var(--cor-dourada);
    padding-left: 5px;
}

.rodape-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.rodape-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cor-secundaria);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.rodape-social a:hover {
    background: var(--cor-dourada);
    transform: translateY(-3px);
}

.rodape-inferior {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(168, 85, 247, 0.3);
}

.idade-restricao {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #DC2626;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.rodape-pagamentos {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.rodape-pagamentos img {
    height: 30px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.rodape-pagamentos img:hover {
    opacity: 1;
}

/* Página Interna */
.pagina-heroi {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--cor-fundo) 0%, var(--cor-primaria) 50%, var(--cor-fundo) 100%);
    text-align: center;
}

.pagina-heroi img {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: var(--sombra-neon);
}

.conteudo-principal {
    background: var(--cor-fundo-card);
    padding: 3rem;
    border-radius: 20px;
    margin: -2rem auto 2rem;
    position: relative;
    z-index: 2;
}

.conteudo-principal h2 {
    color: var(--cor-dourada);
    margin-top: 2rem;
}

.conteudo-principal h2:first-child {
    margin-top: 0;
}

.tabela-info {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.tabela-info th,
.tabela-info td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
}

.tabela-info th {
    background: rgba(107, 33, 168, 0.3);
    color: var(--cor-dourada);
}

.tabela-info tr:hover {
    background: rgba(168, 85, 247, 0.1);
}

/* Sitemap */
.sitemap-lista {
    list-style: none;
    columns: 2;
    gap: 2rem;
}

.sitemap-lista li {
    padding: 0.5rem 0;
    break-inside: avoid;
}

.sitemap-lista a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sitemap-lista a::before {
    content: '→';
    color: var(--cor-secundaria);
}

/* Sobre Nós */
.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.sobre-imagem {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--sombra-neon);
}

/* Animações */
@keyframes pulsar {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes brilhar {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.animacao-pulsar {
    animation: pulsar 2s ease-in-out infinite;
}

.animacao-brilhar {
    animation: brilhar 1.5s ease-in-out infinite;
}

/* Responsivo */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .navegacao {
        display: none;
        width: 100%;
        flex-direction: column;
        background: var(--cor-fundo-card);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    }
    
    .navegacao.ativa {
        display: flex;
    }
    
    .heroi h1 {
        font-size: 2rem;
    }
    
    .responsavel-conteudo,
    .sobre-grid {
        grid-template-columns: 1fr;
    }
    
    .licenca-box {
        flex-direction: column;
        text-align: center;
    }
    
    .autor-box {
        flex-direction: column;
        text-align: center;
    }
    
    .sitemap-lista {
        columns: 1;
    }
    
    .conteudo-principal {
        padding: 1.5rem;
    }
    
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .jogos-grid {
        grid-template-columns: 1fr;
    }
    
    .heroi {
        min-height: 400px;
    }
    
    .btn-principal {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}
