        * {
            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: linear-gradient(135deg, #6d28d9, #4c1d95);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .logo {
            color: #ffd700;
            font-size: 2rem;
            font-weight: bold;
            text-align: center;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            font-family: 'Georgia', serif;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 6px 12px;
            border-radius: 4px;
            transition: all 0.3s ease;
            font-size: 1.05rem;
        }
        nav a:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            position: absolute;
            right: 20px;
            top: 20px;
            z-index: 101;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            color: #4c1d95;
            text-align: center;
            margin: 30px 0 40px;
            font-size: 2.5rem;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
            font-family: 'Georgia', serif;
            line-height: 1.3;
        }
        h2 {
            color: #6d28d9;
            margin: 45px 0 25px;
            padding-bottom: 12px;
            border-bottom: 2px solid #ffd700;
            font-size: 2rem;
            position: relative;
            padding-left: 20px;
            font-family: 'Georgia', serif;
        }
        h2:before {
            content: "⭐";
            position: absolute;
            left: 0;
            color: #ffd700;
        }
        h3 {
            color: #4c1d95;
            margin: 35px 0 18px;
            font-size: 1.5rem;
            background-color: rgba(255, 215, 0, 0.1);
            padding: 10px 18px;
            border-radius: 5px;
            display: inline-block;
            font-family: 'Georgia', serif;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.1rem;
            text-align: justify;
            line-height: 1.8;
        }
        .highlight {
            font-weight: bold;
            color: #6d28d9;
            text-decoration: underline dotted;
            text-underline-offset: 4px;
        }
        strong {
            color: #4c1d95;
        }
        .btn-container {
            text-align: center;
            margin: 50px 0;
        }
        .btn {
            display: inline-block;
            padding: 16px 32px;
            margin: 0 12px 18px;
            background-color: #6d28d9;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            transition: all 0.3s ease;
            font-size: 1.25rem;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background-color: #4c1d95;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
        }
        .btn-login {
            background-color: #b45309;
        }
        .btn-login:hover {
            background-color: #92400e;
        }
        .image-container {
            text-align: center;
            margin: 45px 0;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
            border: 3px solid #ffd700;
        }
        img:hover {
            transform: scale(1.03);
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            margin: 45px 0;
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
            border-left: 5px solid #ffd700;
        }
        .stat-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 22px;
            padding-bottom: 18px;
            border-bottom: 1px dashed #eee;
        }
        .stat-item:last-child {
            border-bottom: none;
        }
        .review-container {
            background-color: white;
            border-radius: 10px;
            padding: 28px;
            margin-bottom: 28px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
            position: relative;
        }
        .review-container:before {
            content: '"';
            font-size: 5rem;
            color: rgba(255, 215, 0, 0.2);
            position: absolute;
            top: -15px;
            left: 15px;
            font-family: Georgia, serif;
        }
        .reviewer {
            font-weight: bold;
            color: #6d28d9;
            margin-bottom: 8px;
            font-size: 1.25rem;
        }
        .rating {
            color: #ffd700;
            margin-bottom: 18px;
            letter-spacing: 2px;
            font-size: 1.1rem;
        }
        .tips-list {
            margin-left: 45px;
            margin-bottom: 35px;
        }
        .tips-list li {
            margin-bottom: 18px;
            position: relative;
            padding-left: 12px;
            font-size: 1.05rem;
        }
        .tips-list li:before {
            content: "•";
            color: #6d28d9;
            font-weight: bold;
            position: absolute;
            left: -22px;
            font-size: 1.5rem;
        }
        .game-type-nav {
            margin: 45px 0 35px;
            background-color: rgba(255, 255, 255, 0.9);
            padding: 18px;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
        }
        .game-type-nav a {
            display: inline-block;
            margin-right: 22px;
            margin-bottom: 12px;
            color: #6d28d9;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.2s ease;
            font-size: 1.05rem;
        }
        .game-type-nav a:hover {
            color: #4c1d95;
            transform: translateX(3px);
        }
        .tags {
            margin: 45px 0;
            background-color: rgba(255, 255, 255, 0.9);
            padding: 22px;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
        }
        .tag {
            display: inline-block;
            background-color: #f3e8ff;
            padding: 9px 20px;
            border-radius: 20px;
            margin-right: 15px;
            margin-bottom: 15px;
            text-decoration: none;
            color: #6d28d9;
            font-size: 1rem;
            transition: all 0.2s ease;
            font-weight: 500;
        }
        .tag:hover {
            background-color: #e9d5ff;
            transform: translateY(-2px);
        }
        footer {
            background-color: #1e293b;
            color: white;
            padding: 55px 20px;
            margin-top: 80px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 45px;
        }
        .footer-section h4 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: #ffd700;
            border-bottom: 2px solid #ffd700;
            padding-bottom: 12px;
            display: inline-block;
            font-family: 'Georgia', serif;
        }
        .recommendation {
            margin: 30px 0;
            padding: 20px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            font-size: 1.1rem;
        }
        .copyright {
            text-align: center;
            padding-top: 35px;
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 35px;
            font-size: 1rem;
            color: #ddd;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                text-align: center;
                margin-top: 60px;
                background-color: rgba(109, 40, 217, 0.95);
                padding: 20px;
                border-radius: 10px;
            }
            nav ul.active {
                display: flex;
            }
            h1 {
                font-size: 2.1rem;
                padding: 0 10px;
                margin: 25px 0 30px;
            }
            h2 {
                font-size: 1.7rem;
                margin: 35px 0 20px;
            }
            h3 {
                font-size: 1.4rem;
                margin: 30px 0 15px;
            }
            .btn {
                display: block;
                margin: 18px auto;
                width: 92%;
                padding: 15px 20px;
                font-size: 1.15rem;
            }
            .tips-list {
                margin-left: 30px;
            }
            .stat-item {
                flex-direction: column;
            }
            .stat-item span:last-child {
                margin-top: 8px;
                font-weight: bold;
            }
            .logo {
                font-size: 1.8rem;
            }
        }
        section {
            margin-bottom: 40px;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #6d28d9;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            text-decoration: none;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 90;
        }
        .back-to-top.visible {
            opacity: 1;
        }
