* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Helvetica', sans-serif;
        }
        body {
            background-color: #fff8e6;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background-color: #ff6b00;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.15);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .logo {
            color: white;
            font-size: 28px;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
            margin-right: 30px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
        }
        nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s;
            padding: 5px 0;
            position: relative;
        }
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: white;
            transition: width 0.3s;
        }
        .nav-links a:hover:after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
            padding: 5px 10px;
        }
        h1 {
            color: #d35400;
            font-size: 36px;
            margin: 35px 0 25px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 3px solid #ff9800;
            display: inline-block;
            width: 100%;
        }
        h2 {
            color: #e65100;
            font-size: 28px;
            margin: 45px 0 20px;
            border-left: 5px solid #ff9800;
            padding-left: 15px;
        }
        h3 {
            color: #f57c00;
            font-size: 22px;
            margin: 30px 0 15px;
            padding-bottom: 5px;
            border-bottom: 1px dashed #ffb74d;
        }
        p {
            margin-bottom: 20px;
            font-size: 18px;
            text-align: justify;
        }
        strong {
            color: #c62828;
            font-weight: bold;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: #2e7d32;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            margin: 15px 15px 25px 0;
            transition: all 0.3s;
            text-align: center;
            font-size: 17px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #1b5e20;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        .download-btn {
            background-color: #1565c0;
        }
        .download-btn:hover {
            background-color: #0d47a1;
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.15);
            border: 5px solid white;
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 35px 0;
            box-shadow: 0 6px 12px rgba(0,0,0,0.08);
            border-left: 6px solid #ff9800;
        }
        .stat-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 18px;
            padding-bottom: 18px;
            border-bottom: 1px solid #ffe0b2;
        }
        .stat-item:last-child {
            border-bottom: none;
        }
        .review {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.06);
            border-top: 4px solid #ffb74d;
        }
        .reviewer {
            font-weight: bold;
            color: #2e7d32;
            margin-bottom: 8px;
            font-size: 19px;
        }
        .rating {
            color: #f57c00;
            margin-bottom: 12px;
            font-size: 18px;
        }
        .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 30px 0;
        }
        .tag {
            background-color: #fff3e0;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            color: #e65100;
            font-size: 15px;
            transition: all 0.3s;
            border: 1px solid #ffe0b2;
        }
        .tag:hover {
            background-color: #ffe0b2;
            transform: translateY(-3px);
        }
        .game-types {
            margin: 35px 0;
        }
        .game-type-link {
            color: #0d47a1;
            text-decoration: none;
            margin-right: 20px;
            font-size: 17px;
            font-weight: 500;
            transition: color 0.3s;
        }
        .game-type-link:hover {
            color: #1565c0;
            text-decoration: underline;
        }
        footer {
            background-color: #263238;
            color: white;
            padding: 50px 0 25px;
            margin-top: 60px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 40px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
            padding-right: 25px;
        }
        .footer-section h4 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #ffb74d;
            padding-bottom: 10px;
            border-bottom: 2px solid #ffb74d;
            display: inline-block;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section li {
            margin-bottom: 12px;
        }
        .footer-section a {
            color: #cfd8dc;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 16px;
        }
        .footer-section a:hover {
            color: white;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid #455a64;
            font-size: 15px;
            color: #b0bec5;
        }
        .emoji-highlight {
            font-size: 22px;
            margin: 0 5px;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: #ff6b00;
                padding: 25px;
                box-shadow: 0 8px 15px rgba(0,0,0,0.15);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 15px 0;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 30px;
                margin: 30px 0 20px;
            }
            h2 {
                font-size: 24px;
                margin: 35px 0 15px;
            }
            h3 {
                font-size: 20px;
            }
            p {
                font-size: 17px;
            }
            .btn {
                display: block;
                width: 100%;
                margin: 10px 0;
            }
            .footer-content {
                flex-direction: column;
            }
            .stat-item {
                flex-direction: column;
            }
            .stat-item span {
                margin-top: 5px;
                font-weight: bold;
                color: #e65100;
            }
        }
