:root {
            --primary-blue: #1a5276;
            --secondary-teal: #16a085;
            --accent-gold: #f39c12;
            --deep-ocean: #2c3e50;
            --coral: #e74c3c;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #e6f7ff 0%, #ffffff 100%);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-blue) !important;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        .nav-link {
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--accent-gold) !important;
            transform: translateY(-2px);
        }
        h1, h2, h3 {
            color: var(--deep-ocean);
            margin-bottom: 1.2rem;
        }
        h1 {
            border-bottom: 3px solid var(--accent-gold);
            padding-bottom: 0.5rem;
            font-weight: 800;
        }
        h2 {
            border-left: 5px solid var(--secondary-teal);
            padding-left: 1rem;
            margin-top: 2.5rem;
        }
        h3 {
            color: var(--primary-blue);
            margin-top: 1.8rem;
        }
        .lead {
            font-size: 1.2rem;
            color: var(--deep-ocean);
        }
        .content-section {
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            padding: 2.5rem;
            margin-bottom: 2rem;
            transition: transform 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-5px);
        }
        .game-feature {
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal));
            color: white;
            border-radius: 10px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        .img-fluid {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            margin: 1.5rem 0;
        }
        .img-fluid:hover {
            transform: scale(1.02);
        }
        .key-term {
            background-color: #e8f4fc;
            border-left: 4px solid var(--primary-blue);
            padding: 0.5rem 1rem;
            margin: 1rem 0;
            font-weight: 600;
        }
        blockquote {
            border-left: 4px solid var(--accent-gold);
            background-color: #fff9e6;
            padding: 1.5rem;
            margin: 1.5rem 0;
            font-style: italic;
        }
        footer {
            background: var(--deep-ocean);
            color: white;
            padding: 2rem 0;
            margin-top: 3rem;
        }
        .highlight {
            background: linear-gradient(120deg, #a8e6cf 0%, #a8e6cf 100%);
            background-repeat: no-repeat;
            background-size: 100% 0.4em;
            background-position: 0 88%;
            transition: background-size 0.25s ease-in;
            padding: 0.2rem 0.1rem;
        }
        .table-of-contents {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 1.5rem;
            margin: 2rem 0;
        }
        .toc-item {
            padding: 0.5rem 0;
            border-bottom: 1px solid #e9ecef;
        }
        .toc-item:last-child {
            border-bottom: none;
        }
        @media (max-width: 768px) {
            .content-section {
                padding: 1.5rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
        }
