:root {
            --primary-green: #2e7d32;
            --forest-dark: #1b5e20;
            --magic-gold: #ffd700;
            --earth-brown: #8d6e63;
            --sky-blue: #4fc3f7;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #f5f5f5 0%, #e8f5e8 100%);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--forest-dark) !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        .nav-link {
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--primary-green) !important;
            transform: translateY(-2px);
        }
        h1, h2, h3 {
            color: var(--forest-dark);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        h1 {
            border-bottom: 3px solid var(--magic-gold);
            padding-bottom: 0.5rem;
            font-size: 2.5rem;
        }
        h2 {
            border-left: 5px solid var(--primary-green);
            padding-left: 1rem;
            margin-top: 2.5rem;
        }
        h3 {
            color: var(--earth-brown);
            margin-top: 2rem;
        }
        .content-section {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 2.5rem;
            margin-bottom: 2rem;
            transition: transform 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-5px);
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .key-feature {
            background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
            border-radius: 10px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-left: 4px solid var(--primary-green);
        }
        .game-image {
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            transition: all 0.4s ease;
            margin: 2rem 0;
            width: 100%;
            height: auto;
        }
        .game-image:hover {
            transform: scale(1.02);
            box-shadow: 0 12px 35px rgba(0,0,0,0.2);
        }
        .highlight {
            background-color: rgba(255, 215, 0, 0.2);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .feature-icon {
            color: var(--primary-green);
            margin-right: 10px;
            font-size: 1.2rem;
        }
        .table-of-contents {
            background: linear-gradient(135deg, #f1f8e9, #e8f5e9);
            border-radius: 12px;
            padding: 2rem;
            margin: 2rem 0;
        }
        .toc-item {
            margin: 0.8rem 0;
            padding-left: 1rem;
            border-left: 3px solid transparent;
            transition: all 0.3s ease;
        }
        .toc-item:hover {
            border-left: 3px solid var(--primary-green);
            padding-left: 1.5rem;
        }
        .toc-item a {
            text-decoration: none;
            color: var(--forest-dark);
            font-weight: 600;
        }
        footer {
            background: linear-gradient(135deg, var(--forest-dark), #0d3c1a);
            color: white;
            padding: 3rem 0 2rem;
            margin-top: 4rem;
        }
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.2);
            padding-top: 1.5rem;
            margin-top: 2rem;
            text-align: center;
        }
        @media (max-width: 768px) {
            .content-section {
                padding: 1.5rem;
            }
            h1 {
                font-size: 2rem;
            }
            .navbar-brand {
                font-size: 1.5rem;
            }
        }
        .magic-hunt-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--magic-gold), #ffecb3);
            color: var(--forest-dark);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.9rem;
            margin: 0.2rem;
        }
        blockquote {
            border-left: 4px solid var(--magic-gold);
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: #555;
        }
