* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Noto Sans', 'Arial Unicode MS', sans-serif;
        }
        body {
            background-color: #f9f9f9;
            color: #333;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background: linear-gradient(135deg, #2c3e50, #34495e);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            color: #ffd700;
            font-size: 1.6rem;
            font-weight: bold;
            text-decoration: none;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
            font-family: 'Arial Black', sans-serif;
            letter-spacing: -0.5px;
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: #ffffff;
            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;
            background: none;
            border: none;
            color: #ffffff;
            font-size: 1.8rem;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        h1 {
            color: #2c3e50;
            font-size: 2.4rem;
            margin-bottom: 30px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 3px solid #ffd700;
        }
        h2 {
            color: #2c3e50;
            font-size: 1.9rem;
            margin: 40px 0 20px;
            padding-left: 12px;
            border-left: 4px solid #ffd700;
        }
        h3 {
            color: #2c3e50;
            font-size: 1.5rem;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.08rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #2980b9;
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .btn-container {
            text-align: center;
            margin: 45px 0;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            margin: 0 12px 15px;
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            transition: all 0.3s ease;
            font-size: 1.15rem;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background: linear-gradient(135deg, #2980b9, #2471a3);
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 35px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            margin-top: 25px;
        }
        .stat-item {
            text-align: center;
            padding: 20px 15px;
            background-color: #ebf5fb;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        .stat-item:hover {
            transform: translateY(-5px);
        }
        .stat-number {
            font-size: 2rem;
            font-weight: bold;
            color: #2980b9;
            margin-bottom: 8px;
        }
        .stat-label {
            color: #333;
            font-size: 0.95rem;
        }
        .review-container {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-left: 5px solid #ffd700;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 12px;
            align-items: center;
        }
        .reviewer {
            font-weight: bold;
            color: #2980b9;
            font-size: 1.1rem;
        }
        .rating {
            color: #FFB81C;
            font-size: 1.2rem;
        }
        .tips-list {
            margin: 25px 0;
            padding-left: 40px;
        }
        .tips-list li {
            margin-bottom: 18px;
            font-size: 1.05rem;
        }
        .tag-container {
            margin: 35px 0;
        }
        .tag {
            display: inline-block;
            background-color: #ebf5fb;
            color: #2980b9;
            padding: 8px 18px;
            border-radius: 25px;
            margin: 0 10px 12px 0;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }
        .tag:hover {
            background-color: #2980b9;
            color: white;
            transform: translateY(-2px);
        }
        footer {
            background-color: #2c3e50;
            color: #ffffff;
            padding: 50px 0 25px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .game-types {
            margin-bottom: 35px;
        }
        .game-types h3 {
            color: #ffd700;
            margin-bottom: 20px;
            padding-bottom: 8px;
            border-bottom: 2px solid #3498db;
        }
        .type-link {
            color: #ffffff;
            text-decoration: none;
            margin-right: 20px;
            transition: all 0.3s ease;
            display: inline-block;
            margin-bottom: 10px;
        }
        .type-link:hover {
            color: #ffd700;
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            margin-top: 30px;
            border-top: 1px solid #3498db;
            font-size: 0.95rem;
            color: #bdc3c7;
        }
        .recommendation {
            margin: 25px 0;
            padding: 20px;
            background-color: #ebf5fb;
            border-radius: 8px;
            font-size: 1.05rem;
            line-height: 1.8;
        }
        .recommendation a {
            color: #2980b9;
            text-decoration: none;
            font-weight: bold;
        }
        .recommendation a:hover {
            text-decoration: underline;
        }
        .feature-box {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        .feature-icon {
            color: #3498db;
            font-size: 1.8rem;
            margin-top: 3px;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 75px;
                left: 0;
                right: 0;
                background-color: #2c3e50;
                padding: 25px;
                gap: 20px;
                box-shadow: 0 10px 10px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.35rem;
            }
            .btn {
                display: block;
                margin: 15px auto;
                width: 90%;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .feature-box {
                flex-direction: column;
            }
            .feature-icon {
                margin-bottom: 10px;
                text-align: center;
            }
        }
