:root {
            --primary-color: #ff6b35;
            --secondary-color: #004e64;
            --accent-color: #ffa630;
            --text-color: #333333;
            --light-bg: #f8f9fa;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-color);
            background-color: #ffffff;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        .nav-link {
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--primary-color) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(135deg, var(--secondary-color) 0%, #1a535c 100%);
            color: white;
            padding: 4rem 0;
            margin-bottom: 2rem;
        }
        .section-title {
            color: var(--secondary-color);
            border-left: 5px solid var(--accent-color);
            padding-left: 15px;
            margin: 2rem 0 1.5rem;
        }
        .content-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            padding: 2rem;
            margin-bottom: 2rem;
            transition: transform 0.3s ease;
        }
        .content-card:hover {
            transform: translateY(-5px);
        }
        .highlight-text {
            background-color: rgba(255, 107, 53, 0.1);
            border-left: 4px solid var(--primary-color);
            padding: 1rem;
            margin: 1.5rem 0;
            font-style: italic;
        }
        .game-feature {
            background-color: var(--light-bg);
            border-radius: 8px;
            padding: 1.5rem;
            margin: 1rem 0;
            transition: all 0.3s ease;
        }
        .game-feature:hover {
            background-color: #e9ecef;
            transform: scale(1.02);
        }
        .feature-icon {
            color: var(--primary-color);
            font-size: 1.5rem;
            margin-right: 10px;
        }
        .img-container {
            border-radius: 10px;
            overflow: hidden;
            margin: 2rem 0;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        footer {
            background-color: var(--secondary-color);
            color: white;
            padding: 3rem 0 2rem;
            margin-top: 3rem;
        }
        .footer-heading {
            color: var(--accent-color);
            margin-bottom: 1.5rem;
        }
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 1.5rem;
            margin-top: 2rem;
            text-align: center;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 2rem 0;
            }
            .content-card {
                padding: 1.5rem;
            }
            .navbar-brand {
                font-size: 1.5rem;
            }
        }
        .keyword-highlight {
            font-weight: 700;
            color: var(--primary-color);
        }
        .toc-item {
            margin-bottom: 0.5rem;
            transition: all 0.2s ease;
        }
        .toc-item:hover {
            color: var(--primary-color);
            transform: translateX(5px);
        }
