/* onabet - Hacker Theme CSS 2026 */
/* Cyberpunk Casino Design - Matrix Style */

:root {
    --matrix-green: #00ff41;
    --matrix-dark-green: #003b00;
    --cyber-cyan: #00d4ff;
    --neon-glow: #39ff14;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --card-bg: #0d1117;
    --terminal-green: #20c20e;
    --warning-red: #ff0040;
    --gold-accent: #ffd700;
    --text-primary: #e0e0e0;
    --text-secondary: #a0a0a0;
    --border-glow: rgba(0, 255, 65, 0.3);
}

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

@font-face {
    font-family: 'Terminal';
    src: local('Courier New'), local('monospace');
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Oxygen', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.8;
    overflow-x: hidden;
    position: relative;
}

/* Matrix Rain Background Effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(180deg, transparent 0%, var(--dark-bg) 100%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 255, 65, 0.03) 2px,
            rgba(0, 255, 65, 0.03) 4px
        );
    pointer-events: none;
    z-index: -1;
}

/* Circuit Pattern Overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(0, 255, 65, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Courier New', monospace;
    color: var(--matrix-green);
    text-shadow: 0 0 10px var(--matrix-green), 0 0 20px var(--matrix-dark-green);
    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(--text-primary);
}

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

a:hover {
    color: var(--matrix-green);
    text-shadow: 0 0 10px var(--matrix-green);
}

/* Navigation - Non-sticky as required */
.cyber-nav {
    background: linear-gradient(180deg, var(--darker-bg) 0%, transparent 100%);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-glow);
    position: relative;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.nav-logo img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    border: 2px solid var(--matrix-green);
    box-shadow: 0 0 15px var(--border-glow);
}

.nav-logo span {
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    color: var(--matrix-green);
    text-shadow: 0 0 10px var(--matrix-green);
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-menu li a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-primary);
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu li a:hover {
    border-color: var(--matrix-green);
    background: rgba(0, 255, 65, 0.1);
    color: var(--matrix-green);
    box-shadow: 0 0 15px var(--border-glow);
}

/* CTA Button */
.cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--matrix-green) 0%, var(--terminal-green) 100%);
    color: var(--darker-bg) !important;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: none !important;
    box-shadow: 0 0 20px var(--border-glow), inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--matrix-green), 0 5px 20px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, var(--neon-glow) 0%, var(--matrix-green) 100%);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 4rem 2rem;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    filter: brightness(0.7);
}

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

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: glitch 2s infinite;
}

@keyframes glitch {
    0%, 90%, 100% { text-shadow: 0 0 10px var(--matrix-green), 0 0 20px var(--matrix-dark-green); }
    92% { text-shadow: -2px 0 var(--cyber-cyan), 2px 0 var(--warning-red); }
    94% { text-shadow: 2px 0 var(--cyber-cyan), -2px 0 var(--warning-red); }
}

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

/* Breadcrumb */
.breadcrumb {
    padding: 1rem 2rem;
    background: var(--card-bg);
    border-bottom: 1px solid var(--border-glow);
}

.breadcrumb-container {
    max-width: 1400px;
    margin: 0 auto;
}

.breadcrumb ol {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
}

.breadcrumb li::after {
    content: '>';
    margin-left: 0.5rem;
    color: var(--matrix-green);
}

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

.breadcrumb a {
    color: var(--cyber-cyan);
}

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

/* Main Container */
.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Section Styling */
.cyber-section {
    margin-bottom: 4rem;
    padding: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border-glow);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.cyber-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--matrix-green), var(--cyber-cyan), var(--matrix-green));
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-glow);
}

.section-header::before {
    content: '>';
    font-family: 'Courier New', monospace;
    color: var(--matrix-green);
    font-size: 1.5rem;
}

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

.game-card {
    background: var(--darker-bg);
    border: 1px solid var(--border-glow);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px var(--border-glow);
    border-color: var(--matrix-green);
}

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

.game-card-content {
    padding: 1.5rem;
}

.game-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.game-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Author Box - E-E-A-T */
.author-box {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--darker-bg);
    border: 1px solid var(--border-glow);
    border-radius: 8px;
    margin: 2rem 0;
    align-items: flex-start;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--matrix-green);
    box-shadow: 0 0 20px var(--border-glow);
    object-fit: cover;
}

.author-info h4 {
    color: var(--matrix-green);
    margin-bottom: 0.5rem;
}

.author-info .author-title {
    color: var(--cyber-cyan);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

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

.review-card {
    background: var(--darker-bg);
    border: 1px solid var(--border-glow);
    border-radius: 8px;
    padding: 1.5rem;
    position: relative;
}

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

.reviewer-info h4 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

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

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

.review-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.review-date {
    font-size: 0.8rem;
    color: var(--matrix-green);
    font-family: 'Courier New', monospace;
}

/* FAQ Section */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--darker-bg);
    border: 1px solid var(--border-glow);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Courier New', monospace;
    color: var(--matrix-green);
    transition: background 0.3s ease;
}

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

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

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

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

.faq-item.active .faq-answer {
    padding: 1.25rem 1.5rem;
    max-height: 500px;
}

/* Payment Methods */
.payment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.payment-item {
    background: var(--darker-bg);
    border: 1px solid var(--border-glow);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    text-align: center;
    min-width: 120px;
    transition: all 0.3s ease;
}

.payment-item:hover {
    border-color: var(--matrix-green);
    box-shadow: 0 0 15px var(--border-glow);
}

.payment-item.highlight {
    border-color: var(--matrix-green);
    background: rgba(0, 255, 65, 0.1);
}

/* License Badge */
.license-section {
    text-align: center;
    padding: 2rem;
}

.license-badge {
    max-width: 200px;
    margin: 1rem auto;
    border-radius: 8px;
    box-shadow: 0 0 30px var(--border-glow);
}

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

.support-item {
    background: var(--darker-bg);
    border: 1px solid var(--border-glow);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

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

.support-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Footer */
.cyber-footer {
    background: var(--darker-bg);
    border-top: 1px solid var(--border-glow);
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.footer-section h4 {
    color: var(--matrix-green);
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid var(--border-glow);
    padding-top: 2rem;
    text-align: center;
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

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

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

.footer-legal {
    font-size: 0.85rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 0, 64, 0.2);
    border: 1px solid var(--warning-red);
    border-radius: 4px;
    color: var(--warning-red);
    font-family: 'Courier New', monospace;
    font-weight: bold;
    margin: 1rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-menu {
        justify-content: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
}

/* Animations */
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px var(--border-glow); }
    50% { box-shadow: 0 0 40px var(--matrix-green); }
}

.pulse-effect {
    animation: pulse-glow 2s infinite;
}

/* Terminal Text Effect */
.terminal-text {
    font-family: 'Courier New', monospace;
    color: var(--matrix-green);
}

.terminal-text::before {
    content: '> ';
    color: var(--cyber-cyan);
}

/* Table Styling */
.cyber-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cyber-table th,
.cyber-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-glow);
}

.cyber-table th {
    background: var(--darker-bg);
    color: var(--matrix-green);
    font-family: 'Courier New', monospace;
}

.cyber-table tr:hover {
    background: rgba(0, 255, 65, 0.05);
}

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

/* Print Styles */
@media print {
    body::before,
    body::after {
        display: none;
    }
    
    .cyber-nav,
    .cyber-footer {
        display: none;
    }
}
