:root {
            --primary-color: #ff6b35;
            --secondary-color: #1e3a8a;
            --accent-color: #f59e0b;
            --text-dark: #1f2937;
            --text-light: #6b7280;
            --bg-light: #f8fafc;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        .hero-section {
            background: linear-gradient(rgba(30, 58, 138, 0.9), rgba(255, 107, 53, 0.8)), url('https://via.placeholder.com/1200x600') center/cover;
            color: white;
            padding: 5rem 0;
            border-radius: 0 0 2rem 2rem;
            margin-bottom: 3rem;
        }
        .content-section {
            background: white;
            border-radius: 1rem;
            padding: 2.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
            border-left: 5px solid var(--primary-color);
        }
        h1, h2, h3 {
            color: var(--secondary-color);
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        h1 {
            font-size: 2.8rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        h2 {
            font-size: 2.2rem;
            border-bottom: 3px solid var(--accent-color);
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--primary-color);
        }
        .keyword-highlight {
            background: linear-gradient(120deg, #fcd34d 0%, #fcd34d 100%);
            background-repeat: no-repeat;
            background-size: 100% 0.3em;
            background-position: 0 88%;
            font-weight: 700;
            padding: 0.1rem 0.3rem;
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        .game-feature {
            text-align: center;
            padding: 2rem 1rem;
            border-radius: 1rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            background: var(--bg-light);
        }
        .game-feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .img-fluid {
            border-radius: 1rem;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .img-fluid:hover {
            transform: scale(1.02);
        }
        .table-of-contents {
            background: var(--bg-light);
            border-radius: 1rem;
            padding: 2rem;
            margin-bottom: 2rem;
            border-left: 5px solid var(--accent-color);
        }
        .toc-list {
            list-style: none;
            padding: 0;
        }
        .toc-list li {
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
        }
        .toc-list li:before {
            content: "▸";
            color: var(--primary-color);
            position: absolute;
            left: 0;
            font-weight: bold;
        }
        .toc-list a {
            color: var(--text-dark);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .toc-list a:hover {
            color: var(--primary-color);
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-color);
            display: block;
        }
        .stat-label {
            font-size: 1.1rem;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        footer {
            background: var(--secondary-color);
            color: white;
            padding: 3rem 0;
            margin-top: 4rem;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 3rem 0;
                border-radius: 0 0 1rem 1rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .content-section {
                padding: 1.5rem;
            }
        }
