/* betaobet - Matrix Style CSS 2026 */
/* Estilo Cyberpunk Inspirado em Matrix */

:root {
    --matrix-green: #00ff41;
    --matrix-dark-green: #008f11;
    --matrix-light-green: #39ff14;
    --matrix-black: #0d0d0d;
    --matrix-dark: #0a0a0a;
    --matrix-gray: #1a1a1a;
    --matrix-text: #c0ffc0;
    --matrix-glow: 0 0 10px #00ff41, 0 0 20px #00ff41, 0 0 30px #00ff41;
    --matrix-border: 1px solid rgba(0, 255, 65, 0.3);
    --font-primary: 'Courier New', 'Lucida Console', monospace;
    --font-secondary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--matrix-black);
    color: var(--matrix-text);
    line-height: 1.8;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Matrix Rain Background Animation */
.matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background: linear-gradient(180deg, var(--matrix-black) 0%, var(--matrix-dark) 50%, var(--matrix-black) 100%);
}

.matrix-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 255, 65, 0.03) 2px,
            rgba(0, 255, 65, 0.03) 4px
        );
    animation: scanlines 8s linear infinite;
}

@keyframes scanlines {
    0% { transform: translateY(0); }
    100% { transform: translateY(4px); }
}

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

/* Header */
.site-header {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(13, 13, 13, 0.9) 100%);
    border-bottom: var(--matrix-border);
    padding: 15px 0;
}

.header-inner {
    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 {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 8px var(--matrix-green));
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--matrix-green);
    text-shadow: var(--matrix-glow);
    letter-spacing: 2px;
}

/* Navigation */
.main-nav {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.nav-link {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: var(--matrix-text);
    text-decoration: none;
    padding: 10px 18px;
    border: var(--matrix-border);
    background: rgba(0, 255, 65, 0.05);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover {
    background: rgba(0, 255, 65, 0.2);
    color: var(--matrix-green);
    box-shadow: var(--matrix-glow);
}

.nav-link.active {
    background: rgba(0, 255, 65, 0.15);
    color: var(--matrix-green);
    border-color: var(--matrix-green);
}

/* CTA Button */
.cta-btn {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: bold;
    color: var(--matrix-black);
    background: linear-gradient(135deg, var(--matrix-green) 0%, var(--matrix-light-green) 100%);
    padding: 14px 32px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
    animation: pulse-glow 2s infinite;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0, 255, 65, 0.8);
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 65, 0.5); }
    50% { box-shadow: 0 0 35px rgba(0, 255, 65, 0.8); }
}

/* Hero Section */
.hero-section {
    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%;
    object-fit: cover;
    opacity: 0.4;
    z-index: -1;
}

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

.hero-title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    color: var(--matrix-green);
    text-shadow: var(--matrix-glow);
    margin-bottom: 20px;
    letter-spacing: 4px;
    animation: flicker 3s infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    92% { opacity: 1; }
    93% { opacity: 0.8; }
    94% { opacity: 1; }
    95% { opacity: 0.9; }
    96% { opacity: 1; }
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--matrix-text);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Breadcrumb */
.breadcrumb {
    padding: 15px 0;
    border-bottom: var(--matrix-border);
    background: rgba(0, 0, 0, 0.5);
}

.breadcrumb-list {
    display: flex;
    gap: 10px;
    list-style: none;
    font-family: var(--font-primary);
    font-size: 0.85rem;
}

.breadcrumb-list li::after {
    content: '>';
    margin-left: 10px;
    color: var(--matrix-dark-green);
}

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

.breadcrumb-list a {
    color: var(--matrix-green);
    text-decoration: none;
}

.breadcrumb-list a:hover {
    text-decoration: underline;
}

/* Section Styles */
.section {
    padding: 80px 0;
    border-bottom: var(--matrix-border);
}

.section-title {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    color: var(--matrix-green);
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.section-title::before,
.section-title::after {
    content: '//';
    margin: 0 15px;
    color: var(--matrix-dark-green);
}

/* Game Cards Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.game-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9) 0%, rgba(13, 13, 13, 0.95) 100%);
    border: var(--matrix-border);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

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

.game-card:hover::before {
    left: 100%;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(0, 255, 65, 0.2);
    border-color: var(--matrix-green);
}

.game-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: var(--matrix-border);
}

.game-card-content {
    padding: 25px;
}

.game-card-title {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--matrix-green);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.game-card-desc {
    color: var(--matrix-text);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.game-card-link {
    display: inline-block;
    color: var(--matrix-green);
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    padding: 8px 20px;
    border: 1px solid var(--matrix-green);
    transition: all 0.3s ease;
}

.game-card-link:hover {
    background: var(--matrix-green);
    color: var(--matrix-black);
}

/* Content Box */
.content-box {
    background: rgba(26, 26, 26, 0.8);
    border: var(--matrix-border);
    padding: 40px;
    margin-bottom: 40px;
}

.content-box h2,
.content-box h3 {
    font-family: var(--font-primary);
    color: var(--matrix-green);
    margin-bottom: 20px;
}

.content-box h2 {
    font-size: 1.8rem;
}

.content-box h3 {
    font-size: 1.4rem;
}

.content-box p {
    margin-bottom: 18px;
    text-align: justify;
}

.content-box ul,
.content-box ol {
    margin: 20px 0;
    padding-left: 30px;
}

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

/* Author Box - E-E-A-T */
.author-box {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    background: rgba(0, 255, 65, 0.05);
    border: var(--matrix-border);
    padding: 30px;
    margin: 40px 0;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid var(--matrix-green);
    object-fit: cover;
}

.author-info h4 {
    font-family: var(--font-primary);
    color: var(--matrix-green);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.author-title {
    color: var(--matrix-dark-green);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.author-bio {
    color: var(--matrix-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.review-card {
    background: rgba(26, 26, 26, 0.9);
    border: var(--matrix-border);
    padding: 30px;
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 4rem;
    color: rgba(0, 255, 65, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-author {
    font-family: var(--font-primary);
    color: var(--matrix-green);
    font-size: 1.1rem;
}

.review-location {
    color: var(--matrix-dark-green);
    font-size: 0.85rem;
}

.review-stars {
    color: var(--matrix-light-green);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.review-text {
    color: var(--matrix-text);
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.7;
}

.review-date {
    color: var(--matrix-dark-green);
    font-size: 0.8rem;
    font-family: var(--font-primary);
}

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

.faq-item {
    border: var(--matrix-border);
    margin-bottom: 15px;
    background: rgba(26, 26, 26, 0.8);
}

.faq-question {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: var(--matrix-green);
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

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

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--matrix-green);
}

.faq-answer {
    padding: 0 25px 25px;
    color: var(--matrix-text);
    line-height: 1.8;
    border-top: var(--matrix-border);
}

/* Payment Methods */
.payment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 30px 0;
}

.payment-item {
    background: rgba(26, 26, 26, 0.9);
    border: var(--matrix-border);
    padding: 20px 30px;
    text-align: center;
    min-width: 150px;
}

.payment-item img {
    height: 40px;
    margin-bottom: 10px;
    filter: brightness(1.2);
}

.payment-item span {
    display: block;
    color: var(--matrix-text);
    font-size: 0.9rem;
}

/* Footer */
.site-footer {
    background: linear-gradient(180deg, var(--matrix-gray) 0%, var(--matrix-black) 100%);
    border-top: 2px solid var(--matrix-green);
    padding: 60px 0 30px;
}

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

.footer-section h4 {
    font-family: var(--font-primary);
    color: var(--matrix-green);
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--matrix-text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--matrix-green);
}

.footer-bottom {
    border-top: var(--matrix-border);
    padding-top: 30px;
    text-align: center;
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-badges img {
    height: 50px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-badges img:hover {
    opacity: 1;
}

.copyright {
    color: var(--matrix-dark-green);
    font-size: 0.85rem;
    font-family: var(--font-primary);
}

/* Responsible Gaming */
.responsible-gaming {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    padding: 30px;
    margin: 40px 0;
    text-align: center;
}

.responsible-gaming h3 {
    color: #ff6b6b;
    margin-bottom: 15px;
}

.responsible-gaming p {
    margin-bottom: 15px;
}

.responsible-gaming a {
    color: #ff6b6b;
}

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

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.sitemap-category {
    background: rgba(26, 26, 26, 0.8);
    border: var(--matrix-border);
    padding: 30px;
}

.sitemap-category h3 {
    font-family: var(--font-primary);
    color: var(--matrix-green);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: var(--matrix-border);
}

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

.sitemap-category li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.sitemap-category li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--matrix-dark-green);
}

.sitemap-category a {
    color: var(--matrix-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sitemap-category a:hover {
    color: var(--matrix-green);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: var(--matrix-border);
    color: var(--matrix-green);
    padding: 10px 15px;
    font-family: var(--font-primary);
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        margin-top: 20px;
    }
    
    .main-nav.active {
        display: flex;
    }
    
    .nav-link {
        text-align: center;
        padding: 15px;
    }
    
    .header-inner {
        flex-direction: column;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .content-box {
        padding: 25px;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
        letter-spacing: 2px;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .section-title::before,
    .section-title::after {
        display: none;
    }
    
    .cta-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .game-card-content {
        padding: 20px;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-green { color: var(--matrix-green); }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }

/* Lazy Loading Placeholder */
img[loading="lazy"] {
    background: linear-gradient(90deg, var(--matrix-gray) 25%, var(--matrix-dark) 50%, var(--matrix-gray) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Print Styles */
@media print {
    .matrix-bg,
    .site-header,
    .site-footer,
    .cta-btn {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}
