:root {
            --primary-color: #FF6B35;
            --secondary-color: #F7931E;
            --accent-color: #8B4513;
            --text-dark: #2C1810;
            --text-light: #5D4037;
            --bg-light: #FFF9F2;
            --bg-white: #FFFFFF;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: var(--bg-light);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        .nav-link {
            font-weight: 600;
            color: var(--text-dark) !important;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--primary-color) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 4rem 0;
            border-radius: 0 0 30px 30px;
            margin-bottom: 3rem;
        }
        .section-title {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--secondary-color);
        }
        .content-card {
            background: var(--bg-white);
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
            border: none;
        }
        .content-card:hover {
            transform: translateY(-5px);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        .cultural-highlight {
            background: linear-gradient(45deg, #FFE8D6, #FFD8B5);
            border-left: 5px solid var(--primary-color);
            padding: 1.5rem;
            border-radius: 0 10px 10px 0;
            margin: 2rem 0;
        }
        .gameplay-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .gameplay-image:hover {
            transform: scale(1.02);
        }
        .keyword-highlight {
            background: linear-gradient(120deg, #FFE8D6 0%, #FFE8D6 100%);
            background-repeat: no-repeat;
            background-size: 100% 0.3em;
            background-position: 0 88%;
            font-weight: 700;
            padding: 0.1rem 0.2rem;
        }
        .table-of-contents {
            background: var(--bg-white);
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        .toc-item {
            padding: 0.5rem 0;
            border-bottom: 1px solid #eee;
            transition: all 0.3s ease;
        }
        .toc-item:hover {
            padding-left: 10px;
            color: var(--primary-color);
        }
        .toc-item:last-child {
            border-bottom: none;
        }
        footer {
            background: linear-gradient(135deg, var(--text-dark), #1a0f08);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 2rem 0;
                border-radius: 0 0 20px 20px;
            }
            .content-card {
                padding: 1.5rem;
            }
            .section-title {
                font-size: 1.5rem;
            }
        }
        .content-paragraph {
            margin-bottom: 1.8rem;
            text-align: justify;
        }
        .content-emphasis {
            font-weight: 700;
            color: var(--primary-color);
        }
        .rating-badge {
            background: var(--secondary-color);
            color: white;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-weight: 600;
            display: inline-block;
            margin: 0.5rem 0;
        }
