* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Noto Sans', 'Arial', sans-serif;
        }
        body {
            background-color: #f9f5f0;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background: linear-gradient(135deg, #8b5cf6, #6d28d9);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #ffdd57;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 30px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            padding: 5px 0;
            position: relative;
        }
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #ffdd57;
            transition: width 0.3s ease;
        }
        nav ul li a:hover:after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        h1 {
            color: #6d28d9;
            font-size: 2.5rem;
            margin-bottom: 25px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 3px solid #ffdd57;
            display: inline-block;
            width: 100%;
        }
        h2 {
            color: #5b21b6;
            font-size: 1.8rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e9d5fe;
            position: relative;
        }
        h2:before {
            content: '◆';
            color: #8b5cf6;
            margin-right: 10px;
        }
        h3 {
            color: #4c1d95;
            font-size: 1.4rem;
            margin: 30px 0 15px;
            padding-left: 10px;
            border-left: 4px solid #8b5cf6;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            text-align: justify;
        }
        .btn-container {
            text-align: center;
            margin: 40px 0;
        }
        .btn {
            display: inline-block;
            padding: 14px 32px;
            margin: 0 10px 15px;
            background-color: #6d28d9;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            box-shadow: 0 4px 12px rgba(109, 40, 217, 0.25);
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background-color: #5b21b6;
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(109, 40, 217, 0.35);
        }
        .btn-download {
            background-color: #10b981;
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
        }
        .btn-download:hover {
            background-color: #059669;
            box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35);
        }
        .image-container {
            text-align: center;
            margin: 35px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-left: 5px solid #8b5cf6;
        }
        .stat-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #f1f5f9;
        }
        .stat-item:last-child {
            border-bottom: none;
        }
        .highlight {
            font-weight: bold;
            color: #6d28d9;
        }
        .review-container {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            position: relative;
        }
        .review-container:before {
            content: '"';
            font-size: 5rem;
            color: #e9d5fe;
            position: absolute;
            top: -10px;
            left: 15px;
            font-family: Georgia, serif;
            opacity: 0.5;
        }
        .reviewer {
            font-weight: bold;
            color: #4c1d95;
            margin-bottom: 5px;
            position: relative;
            z-index: 1;
        }
        .rating {
            color: #f59e0b;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }
        .tag-container {
            margin: 35px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .tag {
            display: inline-block;
            background-color: #e0e7ff;
            color: #4c1d95;
            padding: 8px 18px;
            border-radius: 30px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }
        .tag:hover {
            background-color: #c7d2fe;
            transform: translateY(-2px);
        }
        .game-type-nav {
            margin: 25px 0 40px;
        }
        .game-type {
            display: inline-block;
            margin-right: 20px;
            margin-bottom: 10px;
            text-decoration: none;
            color: #6d28d9;
            font-weight: 500;
            position: relative;
            padding-left: 5px;
        }
        .game-type:before {
            content: '→';
            position: absolute;
            left: -15px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .game-type:hover:before {
            opacity: 1;
        }
        .game-type:hover {
            text-decoration: underline;
        }
        footer {
            background-color: #1e293b;
            color: #e2e8f0;
            padding: 50px 20px 30px;
            margin-top: 70px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h4 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #ffdd57;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(255,221,87,0.3);
            display: inline-block;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #334155;
            margin-top: 30px;
            font-size: 0.9rem;
            color: #94a3b8;
        }
        .tips-box {
            background-color: #f0fdf4;
            border-left: 5px solid #10b981;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .tips-box h4 {
            color: #059669;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #6d28d9;
                padding: 20px;
                box-shadow: 0 10px 10px rgba(0,0,0,0.1);
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 12px 0;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .btn {
                display: block;
                margin: 12px auto;
                width: 90%;
            }
            .stat-item {
                flex-direction: column;
            }
            .stat-item span:last-child {
                margin-top: 5px;
                font-style: italic;
            }
        }
