/* Ganheibet - Burning Legion Theme 2026 */
/* Tema Legião Ardente - Cassino Online Brasil */

:root {
    --fel-green: #39FF14;
    --fel-green-dark: #1a8a0a;
    --fel-purple: #4B0082;
    --fel-purple-dark: #2d004d;
    --dark-bg: #0a0a0f;
    --dark-surface: #12121a;
    --dark-card: #1a1a25;
    --gold-accent: #FFD700;
    --text-primary: #e8e8e8;
    --text-secondary: #a0a0a0;
    --shadow-fel: 0 0 20px rgba(57, 255, 20, 0.3);
    --glow-fel: 0 0 30px rgba(57, 255, 20, 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(--dark-bg);
    color: var(--text-primary);
    line-height: 1.7;
    min-height: 100vh;
}

/* Demonic Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(57, 255, 20, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(75, 0, 130, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(57, 255, 20, 0.02) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
}

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

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

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

a:hover {
    color: var(--gold-accent);
    text-shadow: var(--shadow-fel);
}

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

/* Header - Non-Sticky */
header {
    background: linear-gradient(180deg, var(--dark-surface) 0%, var(--dark-bg) 100%);
    border-bottom: 2px solid var(--fel-green-dark);
    padding: 15px 0;
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-area img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--fel-green);
    box-shadow: var(--shadow-fel);
}

.logo-area h1 {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--fel-green) 0%, var(--gold-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    flex-wrap: wrap;
}

nav ul li a {
    color: var(--text-primary);
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--fel-green);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a:hover {
    color: var(--fel-green);
}

/* CTA Button */
.cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--fel-green) 0%, var(--fel-green-dark) 100%);
    color: var(--dark-bg) !important;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-fel);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-fel);
    background: linear-gradient(135deg, var(--gold-accent) 0%, var(--fel-green) 100%);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 60px 20px;
}

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

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

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(57, 255, 20, 0.5);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

/* Breadcrumb */
.breadcrumb {
    padding: 15px 0;
    background: var(--dark-surface);
    border-bottom: 1px solid rgba(57, 255, 20, 0.2);
}

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

.breadcrumb li::after {
    content: '›';
    margin-left: 10px;
    color: var(--fel-green);
}

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

.breadcrumb a {
    color: var(--text-secondary);
}

.breadcrumb span {
    color: var(--fel-green);
}

/* Section Styling */
section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title h2 {
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--fel-green), transparent);
}

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

.game-card {
    background: var(--dark-card);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(57, 255, 20, 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(57, 255, 20, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--fel-green);
    box-shadow: var(--shadow-fel);
}

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

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

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

.game-card h3 {
    color: var(--fel-green);
    margin-bottom: 10px;
}

.game-card p {
    font-size: 0.95rem;
    margin-bottom: 15px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.feature-item {
    background: var(--dark-card);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(57, 255, 20, 0.15);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--fel-green);
    box-shadow: var(--shadow-fel);
}

.feature-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    border-radius: 50%;
}

/* Author Section */
.author-section {
    background: var(--dark-surface);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(57, 255, 20, 0.2);
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.author-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--fel-green);
    box-shadow: var(--shadow-fel);
}

.author-info h3 {
    color: var(--fel-green);
    margin-bottom: 10px;
}

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

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

.review-card {
    background: var(--dark-card);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(57, 255, 20, 0.15);
}

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

.reviewer-name {
    font-weight: 600;
    color: var(--text-primary);
}

.reviewer-location {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.review-stars {
    color: var(--gold-accent);
    font-size: 1.2rem;
}

.review-date {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 15px;
}

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

.faq-item {
    background: var(--dark-card);
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid rgba(57, 255, 20, 0.15);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--fel-green);
}

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

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

/* Payment Methods */
.payment-section {
    background: var(--dark-surface);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.payment-section img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
}

/* License Section */
.license-section {
    display: flex;
    align-items: center;
    gap: 30px;
    background: var(--dark-card);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(57, 255, 20, 0.2);
    flex-wrap: wrap;
}

.license-section img {
    width: 150px;
    height: 150px;
    border-radius: 10px;
}

/* Support Section */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.support-item {
    background: var(--dark-card);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(57, 255, 20, 0.15);
}

.support-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-content img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-fel);
}

/* Responsible Gaming */
.responsible-gaming {
    background: linear-gradient(135deg, var(--fel-purple-dark) 0%, var(--dark-surface) 100%);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(57, 255, 20, 0.2);
}

.responsible-gaming h3 {
    color: var(--fel-green);
    margin-bottom: 20px;
}

.age-badge {
    display: inline-block;
    width: 80px;
    height: 80px;
    margin-right: 20px;
    vertical-align: middle;
}

/* Footer */
footer {
    background: var(--dark-surface);
    border-top: 2px solid var(--fel-green-dark);
    padding: 50px 0 20px;
    margin-top: 60px;
}

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

.footer-col h4 {
    color: var(--fel-green);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

.footer-col ul li a {
    color: var(--text-secondary);
}

.footer-col ul li a:hover {
    color: var(--fel-green);
}

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

.footer-bottom p {
    font-size: 0.9rem;
}

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

.footer-badges img {
    height: 50px;
    width: auto;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--dark-card);
    border-radius: 50%;
    border: 1px solid rgba(57, 255, 20, 0.3);
    color: var(--fel-green);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--fel-green);
    color: var(--dark-bg);
}

/* Content Article */
article {
    max-width: 900px;
    margin: 0 auto;
}

article h2 {
    color: var(--fel-green);
    margin-top: 40px;
}

article h3 {
    color: var(--text-primary);
    margin-top: 30px;
}

article ul, article ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

article li {
    margin-bottom: 10px;
    color: var(--text-secondary);
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: var(--dark-card);
    border-radius: 10px;
    overflow: hidden;
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(57, 255, 20, 0.1);
}

th {
    background: var(--dark-surface);
    color: var(--fel-green);
    font-weight: 600;
}

tr:hover {
    background: rgba(57, 255, 20, 0.05);
}

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

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

.sitemap-category {
    background: var(--dark-card);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(57, 255, 20, 0.15);
}

.sitemap-category h3 {
    color: var(--fel-green);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(57, 255, 20, 0.2);
}

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

.sitemap-category li {
    margin-bottom: 10px;
}

.sitemap-category a {
    color: var(--text-secondary);
    display: block;
    padding: 5px 0;
}

.sitemap-category a:hover {
    color: var(--fel-green);
    padding-left: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        justify-content: center;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .author-section {
        flex-direction: column;
        text-align: center;
    }
    
    .license-section {
        flex-direction: column;
        text-align: center;
    }
    
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    nav ul {
        gap: 10px;
    }
    
    nav ul li a {
        padding: 8px 10px;
        font-size: 0.9rem;
    }
}

/* Animations */
@keyframes felGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(57, 255, 20, 0.3); }
    50% { box-shadow: 0 0 40px rgba(57, 255, 20, 0.6); }
}

.glow-animation {
    animation: felGlow 2s ease-in-out infinite;
}

/* Lazy Loading Placeholder */
img[loading="lazy"] {
    background: var(--dark-card);
}

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