:root {
    --bg-color: #0d1018;
    --card-bg: rgba(28, 35, 49, 0.8);
    --text-color: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --border-color: rgba(255, 255, 255, 0.1);
    --grid-color: rgba(25, 41, 79, 0.2);
    --footer-bg: rgba(13, 16, 24, 0.9);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* Background Grid & Blobs */
.background-container {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; overflow: hidden;
}
.background-grid {
    width: 100%; height: 100%; position: absolute;
    background-image: linear-gradient(var(--grid-color) 1px, transparent 1px), linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 40px 40px; filter: blur(1px);
}
.background-blob {
    position: absolute; border-radius: 50%; opacity: 0.15; filter: blur(80px); z-index: 0;
}
.blob-1 { width: 600px; height: 600px; right: -150px; bottom: -200px; background: var(--primary-color); }
.blob-2 { width: 500px; height: 500px; left: -100px; top: 100px; background: var(--primary-color); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 1; }
a { color: inherit; text-decoration: none; }

/* Header */
header {
    padding: 16px 0; position: sticky; top: 0; z-index: 100;
    background-color: rgba(13, 16, 24, 0.85); backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
nav { display: flex; justify-content: space-between; align-items: center; }
.logo-text { font-size: 24px; font-weight: 900; letter-spacing: 1px; color: var(--text-color); }
.nav-links { list-style: none; display: flex; gap: 32px; font-size: 15px; font-weight: 500; }
.nav-links a { transition: color 0.3s; color: var(--text-secondary); }
.nav-links a:hover { color: var(--primary-color); }

.login-btn {
    background-color: var(--primary-color); color: #fff; padding: 10px 20px;
    border-radius: 8px; font-weight: bold; transition: all 0.3s;
    display: inline-flex; align-items: center; gap: 8px; border: 2px solid var(--primary-color);
}
.login-btn:hover { background-color: transparent; color: var(--primary-color); }
.btn-icon { width: 18px; height: 18px; }

/* Hero */
.hero { padding: 100px 0 60px; text-align: center; display: flex; flex-direction: column; align-items: center; min-height: 70vh; justify-content: center; }
.hero h1 { margin-bottom: 24px; }
.hero .subtitle { display: block; font-size: 22px; font-weight: 700; color: var(--text-secondary); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 2px; }
.hero .main-title { display: block; font-size: 56px; font-weight: 900; color: var(--primary-color); text-transform: uppercase; letter-spacing: 1px; line-height: 1.1; }
.text-glow { text-shadow: 0 0 15px rgba(var(--primary-rgb), 0.5); }
.hero p { font-size: 18px; color: var(--text-secondary); max-width: 600px; margin: 0 auto 40px; }

.hero-buttons { display: flex; gap: 16px; justify-content: center; }
.btn { padding: 14px 32px; border-radius: 8px; font-weight: bold; font-size: 16px; cursor: pointer; transition: all 0.3s; display: inline-block; }
.btn-primary { background-color: var(--primary-color); color: #fff; border: 2px solid var(--primary-color); }
.btn-primary:hover { background-color: transparent; color: var(--primary-color); }
.btn-secondary { background-color: transparent; color: var(--text-color); border: 2px solid rgba(255, 255, 255, 0.3); }
.btn-secondary:hover { background-color: rgba(255, 255, 255, 0.1); border-color: #fff; }

/* Sections */
.section { padding: 60px 0; }
.section-title { font-size: 32px; font-weight: 800; text-align: center; margin-bottom: 40px; text-transform: uppercase; letter-spacing: 1px; }
.section-title .highlight { color: var(--primary-color); }

/* Grids */
.games-grid, .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

.feature-card, .game-card {
    background: var(--card-bg); padding: 30px; border-radius: 16px;
    border: 1px solid var(--border-color); transition: all 0.3s;
}
.feature-card:hover, .game-card:hover { border-color: var(--primary-color); transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.feature-card h3, .game-card h3 { color: var(--primary-color); font-size: 20px; margin-bottom: 12px; }
.feature-card p, .game-card p { color: var(--text-secondary); font-size: 15px; }

/* Text Sections (For NLP parsing) */
.text-section { text-align: left; }
.text-content { background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 16px; padding: 40px; }
.text-content h2, .text-content h3, .text-content h4, .text-content h5 { margin: 24px 0 12px; color: var(--text-color); }
.text-content p { color: var(--text-secondary); margin-bottom: 16px; }
.text-content ul { padding-left: 20px; margin-bottom: 16px; color: var(--text-secondary); }
.text-content li { margin-bottom: 8px; }

/* Fake Reviews */
.reviews-wrapper p { background: rgba(0,0,0,0.2); padding: 16px; border-left: 4px solid var(--primary-color); margin-bottom: 16px; border-radius: 0 8px 8px 0; color: var(--text-secondary); }
.reviews-wrapper strong { color: var(--text-color); display: block; margin-bottom: 4px; }

/* FAQ */
.faq-list details { margin-bottom: 12px; background: rgba(0,0,0,0.2); border-radius: 8px; }
.faq-list summary { padding: 16px; font-weight: bold; cursor: pointer; color: var(--text-color); }
.faq-list details p { padding: 0 16px 16px; margin: 0; }

/* Footer */
footer { padding: 60px 0 30px; margin-top: 40px; border-top: 1px solid var(--border-color); background-color: var(--footer-bg); text-align: center; }
.footer-logo { margin-bottom: 20px; }
.disclaimer { color: var(--text-secondary); margin-bottom: 24px; font-size: 14px; }
.footer-nav { display: flex; justify-content: center; gap: 24px; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border-color); }
.footer-nav a { color: var(--text-secondary); }
.footer-nav a:hover { color: var(--primary-color); }
.copyright { font-size: 13px; color: rgba(255, 255, 255, 0.4); }

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero .main-title { font-size: 38px; }
    .hero .subtitle { font-size: 18px; }
    .hero-buttons { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; }
    .btn { width: 100%; text-align: center; }
    .text-content { padding: 24px; }
    .footer-nav { flex-direction: column; gap: 12px; }
}