* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Tahoma', sans-serif;
        }
        body {
            background-color: #fff8e6;
            color: #442c00;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background-color: #e05e00;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            color: #ffffff;
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
            font-family: 'Georgia', serif;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 25px;
        }
        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            padding: 5px 0;
            position: relative;
        }
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #ffd700;
            transition: width 0.3s ease;
        }
        .nav-links a:hover:after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        h1 {
            color: #b34700;
            font-size: 2.5rem;
            margin: 0 0 30px 0;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 3px solid #ff9900;
        }
        h2 {
            color: #b34700;
            font-size: 1.8rem;
            margin: 40px 0 20px;
            padding-left: 10px;
            border-left: 4px solid #ff9900;
        }
        h3 {
            color: #b34700;
            font-size: 1.4rem;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            text-align: justify;
            line-height: 1.8;
        }
        .highlight {
            font-weight: bold;
            color: #b34700;
        }
        .btn-container {
            text-align: center;
            margin: 40px 0;
            padding: 20px;
            background-color: #ffffff;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            margin: 0 10px 15px;
            background-color: #e05e00;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 3px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #b34700;
            transform: translateY(-2px);
            box-shadow: 0 5px 10px rgba(0,0,0,0.15);
        }
        .download-btn {
            background-color: #2ecc71;
        }
        .download-btn:hover {
            background-color: #27ae60;
        }
        .image-container {
            text-align: center;
            margin: 35px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 15px;
            background-color: #fff0e0;
            border-radius: 8px;
            border-top: 4px solid #ff9900;
        }
        .stat-number {
            font-size: 1.8rem;
            font-weight: bold;
            color: #b34700;
            margin-bottom: 8px;
        }
        .review-container {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            border-left: 4px solid #ff9900;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px dashed #ff9900;
        }
        .reviewer {
            font-weight: bold;
            color: #b34700;
        }
        .rating {
            color: #ff9900;
            font-weight: bold;
        }
        .tag-container {
            margin: 40px 0;
            padding: 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .tag {
            display: inline-block;
            background-color: #ff9900;
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            margin: 5px;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #b34700;
            transform: translateY(-2px);
        }
        .game-types {
            margin: 40px 0;
            padding: 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .type-link {
            color: #b34700;
            text-decoration: none;
            font-weight: bold;
            margin-right: 15px;
            margin-bottom: 10px;
            display: inline-block;
            transition: all 0.3s ease;
        }
        .type-link:hover {
            color: #e05e00;
            text-decoration: underline;
        }
        footer {
            background-color: #333333;
            color: white;
            padding: 40px 20px;
            margin-top: 50px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: #ff9900;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #555555;
            margin-top: 20px;
            font-size: 0.9rem;
            color: #bbbbbb;
        }
        .toc {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            margin: 0 0 30px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .toc h2 {
            margin-top: 0;
            padding-bottom: 10px;
            border-bottom: 2px solid #ff9900;
        }
        .toc ul {
            list-style-type: none;
            columns: 1;
        }
        .toc li {
            margin-bottom: 8px;
        }
        .toc a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .toc a:hover {
            color: #b34700;
            padding-left: 5px;
        }
        @media (min-width: 768px) {
            .toc ul {
                columns: 2;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: #e05e00;
                padding: 20px 0;
                box-shadow: 0 5px 5px rgba(0,0,0,0.2);
            }
            .nav-links.show {
                display: flex;
            }
            .nav-links li {
                margin: 10px 0;
                text-align: center;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .btn {
                display: block;
                margin: 10px auto;
                width: 90%;
            }
            p {
                text-align: left;
            }
        }
