/* 879bet Digimon Style CSS - 2026 Edition */
/* Cores principais inspiradas em Digimon */
:root {
    --digi-blue: #00d4ff;
    --digi-orange: #ff6b35;
    --digi-purple: #9b59b6;
    --digi-dark: #0a0e1a;
    --digi-darker: #050810;
    --digi-gold: #ffd700;
    --digi-green: #00ff88;
    --digi-pink: #ff69b4;
    --digi-cyan: #00ffff;
    --gradient-cyber: linear-gradient(135deg, #0a0e1a 0%, #1a1a3e 50%, #0a0e1a 100%);
    --gradient-neon: linear-gradient(90deg, var(--digi-blue), var(--digi-purple), var(--digi-orange));
    --glow-blue: 0 0 20px rgba(0, 212, 255, 0.5);
    --glow-orange: 0 0 20px rgba(255, 107, 53, 0.5);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background: var(--gradient-cyber);
    color: #e0e0e0;
    line-height: 1.8;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Efeito de partículas digitais de fundo */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(155, 89, 182, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Container principal */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cabeçalho - Estilo Digimon */
header {
    background: linear-gradient(180deg, rgba(10, 14, 26, 0.98) 0%, rgba(10, 14, 26, 0.95) 100%);
    border-bottom: 2px solid var(--digi-blue);
    padding: 15px 0;
    position: relative;
    z-index: 100;
}

header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-neon);
    animation: neonPulse 3s ease-in-out infinite;
}

@keyframes neonPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    box-shadow: var(--glow-blue);
}

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

/* Navegação */
nav ul {
    display: flex;
    list-style: none;
    gap: 8px;
    flex-wrap: wrap;
}

nav ul li a {
    display: block;
    padding: 10px 18px;
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

nav ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

nav ul li a:hover::before {
    left: 100%;
}

nav ul li a:hover {
    color: var(--digi-blue);
    background: rgba(0, 212, 255, 0.1);
    box-shadow: var(--glow-blue);
}

/* Botão CTA - Jogar Agora */
.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--digi-orange) 0%, #ff8c42 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: var(--glow-orange);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

/* Seção Hero */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 50px rgba(0, 212, 255, 0.3);
    animation: textGlow 3s ease-in-out infinite;
}

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

.hero p {
    font-size: 1.3rem;
    color: #b0b0b0;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Breadcrumb */
.breadcrumb {
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.breadcrumb ol {
    display: flex;
    list-style: none;
    gap: 10px;
    align-items: center;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #888;
    font-size: 0.9rem;
}

.breadcrumb li a {
    color: var(--digi-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb li a:hover {
    color: var(--digi-orange);
}

.breadcrumb li::after {
    content: '›';
    color: #555;
}

.breadcrumb li:last-child::after {
    content: '';
}

/* Seções */
section {
    padding: 80px 0;
    position: relative;
}

section:nth-child(even) {
    background: rgba(0, 0, 0, 0.2);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--gradient-neon);
    margin: 15px auto 0;
    border-radius: 2px;
}

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

.game-card {
    background: linear-gradient(145deg, rgba(20, 25, 45, 0.9) 0%, rgba(10, 14, 26, 0.95) 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

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

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
    border-color: var(--digi-blue);
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.game-card-content {
    padding: 25px;
    position: relative;
    z-index: 2;
}

.game-card h3 {
    font-size: 1.4rem;
    color: var(--digi-blue);
    margin-bottom: 12px;
}

.game-card p {
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.game-card .btn-play {
    display: inline-block;
    padding: 10px 25px;
    background: var(--digi-orange);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.game-card .btn-play:hover {
    background: #ff8c42;
    box-shadow: var(--glow-orange);
}

/* Seção de Autor/Especialista */
.author-section {
    background: linear-gradient(145deg, rgba(20, 25, 45, 0.8) 0%, rgba(10, 14, 26, 0.9) 100%);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    border: 1px solid rgba(0, 212, 255, 0.2);
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.author-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid var(--digi-blue);
    box-shadow: var(--glow-blue);
    object-fit: cover;
}

.author-info h3 {
    font-size: 1.5rem;
    color: var(--digi-blue);
    margin-bottom: 10px;
}

.author-info .title {
    color: var(--digi-orange);
    font-weight: 600;
    margin-bottom: 15px;
}

.author-info p {
    color: #b0b0b0;
    max-width: 600px;
}

/* Avaliações de Usuários */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.review-card {
    background: linear-gradient(145deg, rgba(20, 25, 45, 0.9) 0%, rgba(10, 14, 26, 0.95) 100%);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(0, 212, 255, 0.15);
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: var(--digi-blue);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--digi-purple);
    object-fit: cover;
}

.review-user h4 {
    color: #fff;
    font-size: 1.1rem;
}

.review-user .location {
    color: #888;
    font-size: 0.85rem;
}

.review-stars {
    color: var(--digi-gold);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-text {
    color: #b0b0b0;
    font-style: italic;
    margin-bottom: 15px;
}

.review-date {
    color: #666;
    font-size: 0.85rem;
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(145deg, rgba(20, 25, 45, 0.9) 0%, rgba(10, 14, 26, 0.95) 100%);
    border-radius: 15px;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 212, 255, 0.15);
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 212, 255, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--digi-blue);
    font-weight: 600;
}

.faq-question .icon {
    color: var(--digi-orange);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 30px 25px;
    color: #b0b0b0;
    line-height: 1.8;
}

/* Métodos de Pagamento */
.payment-section {
    text-align: center;
}

.payment-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.payment-item {
    background: rgba(20, 25, 45, 0.8);
    padding: 20px 30px;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
}

.payment-item:hover {
    border-color: var(--digi-green);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.payment-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.payment-item p {
    margin-top: 10px;
    color: #b0b0b0;
    font-weight: 600;
}

/* Licença */
.license-section {
    text-align: center;
    padding: 60px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    margin: 40px 0;
}

.license-badge {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
    border-radius: 15px;
    box-shadow: var(--glow-blue);
}

.license-info h3 {
    color: var(--digi-gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.license-info p {
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
}

/* Suporte */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.support-item {
    background: linear-gradient(145deg, rgba(20, 25, 45, 0.9) 0%, rgba(10, 14, 26, 0.95) 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 0.15);
    transition: all 0.3s ease;
}

.support-item:hover {
    border-color: var(--digi-green);
    transform: translateY(-5px);
}

.support-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.support-item h3 {
    color: var(--digi-blue);
    margin-bottom: 10px;
}

.support-item p {
    color: #888;
}

/* Jogo Responsável */
.responsible-gaming {
    background: linear-gradient(145deg, rgba(20, 40, 45, 0.9) 0%, rgba(10, 20, 26, 0.95) 100%);
    border-radius: 20px;
    padding: 50px;
    margin: 40px 0;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.responsible-gaming h2 {
    color: var(--digi-green);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.responsible-gaming img {
    width: 60px;
    height: 60px;
}

.responsible-gaming ul {
    list-style: none;
    margin-bottom: 30px;
}

.responsible-gaming li {
    padding: 12px 0;
    color: #b0b0b0;
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.responsible-gaming li::before {
    content: '✓';
    color: var(--digi-green);
    font-weight: bold;
}

/* Footer */
footer {
    background: linear-gradient(180deg, rgba(5, 8, 16, 0.98) 0%, rgba(0, 0, 0, 1) 100%);
    padding: 60px 0 30px;
    border-top: 2px solid var(--digi-blue);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-neon);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--digi-blue);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--digi-orange);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--digi-blue);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--digi-blue);
    box-shadow: var(--glow-blue);
}

.footer-social img {
    width: 25px;
    height: 25px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.age-restriction {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 0, 0, 0.1);
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.age-restriction img {
    width: 40px;
    height: 40px;
}

.age-restriction span {
    color: #ff6b6b;
    font-weight: 600;
}

/* Página de Conteúdo */
.content-page {
    padding: 60px 0;
}

.content-page article {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(20, 25, 45, 0.9) 0%, rgba(10, 14, 26, 0.95) 100%);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.15);
}

.content-page h1 {
    font-size: 2.5rem;
    color: var(--digi-blue);
    margin-bottom: 30px;
    text-align: center;
}

.content-page h2 {
    font-size: 1.8rem;
    color: var(--digi-orange);
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
}

.content-page h3 {
    font-size: 1.4rem;
    color: var(--digi-purple);
    margin: 30px 0 15px;
}

.content-page p {
    color: #b0b0b0;
    margin-bottom: 20px;
    text-align: justify;
}

.content-page ul, .content-page ol {
    margin: 20px 0 20px 30px;
    color: #b0b0b0;
}

.content-page li {
    margin-bottom: 10px;
}

.content-page img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.content-page .game-info-box {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--digi-blue);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
}

.content-page .game-info-box h4 {
    color: var(--digi-blue);
    margin-bottom: 15px;
}

.content-page table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.content-page table th,
.content-page table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.content-page table th {
    background: rgba(0, 212, 255, 0.1);
    color: var(--digi-blue);
}

.content-page table td {
    color: #b0b0b0;
}

/* Sitemap Page */
.sitemap-page {
    padding: 60px 0;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.sitemap-section {
    background: linear-gradient(145deg, rgba(20, 25, 45, 0.9) 0%, rgba(10, 14, 26, 0.95) 100%);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.15);
}

.sitemap-section h2 {
    color: var(--digi-blue);
    font-size: 1.4rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--digi-orange);
}

.sitemap-section ul {
    list-style: none;
}

.sitemap-section li {
    margin-bottom: 12px;
}

.sitemap-section a {
    color: #b0b0b0;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.sitemap-section a::before {
    content: '→';
    color: var(--digi-orange);
}

.sitemap-section a:hover {
    color: var(--digi-blue);
    padding-left: 10px;
}

/* Responsivo */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        justify-content: center;
    }
    
    .author-section {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    nav ul {
        gap: 5px;
    }
    
    nav ul li a {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .content-page article {
        padding: 30px 20px;
    }
    
    .responsible-gaming {
        padding: 30px 20px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.7rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

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

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Loading lazy images */
img[loading="lazy"] {
    opacity: 1;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}
