* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Nirmala UI', sans-serif;
        }
        body {
            line-height: 1.8;
            color: #2d3436;
            background-color: #f5f6fa;
            padding-bottom: 60px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background-color: #0984e3;
            color: white;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #ffeaa7;
            text-decoration: none;
            letter-spacing: 0.5px;
        }
        .logo span {
            color: white;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 30px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #ffeaa7;
            border-bottom: 2px solid #ffeaa7;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        h1 {
            font-size: 2.6rem;
            color: #0984e3;
            margin: 40px 0 30px;
            text-align: center;
            line-height: 1.3;
        }
        h2 {
            font-size: 2.1rem;
            color: #2d3436;
            margin: 50px 0 25px;
            padding-bottom: 12px;
            border-bottom: 3px solid #fdcb6e;
            position: relative;
        }
        h2::after {
            content: "🚦";
            margin-left: 10px;
        }
        h3 {
            font-size: 1.6rem;
            color: #0984e3;
            margin: 35px 0 20px;
            padding-left: 10px;
            border-left: 4px solid #fdcb6e;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.08rem;
            color: #2d3436;
        }
        .highlight {
            font-weight: bold;
            color: #d63031;
            text-decoration: underline dotted;
            text-underline-offset: 4px;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: #00b894;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            margin: 15px 12px 25px 0;
            transition: all 0.3s ease;
            font-size: 1.05rem;
            box-shadow: 0 4px 6px rgba(0,184,148,0.2);
        }
        .btn:hover {
            background-color: #00967d;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0,184,148,0.3);
        }
        .btn-login {
            background-color: #6c5ce7;
            box-shadow: 0 4px 6px rgba(108,92,231,0.2);
        }
        .btn-login:hover {
            background-color: #5b4bdb;
            box-shadow: 0 6px 8px rgba(108,92,231,0.3);
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }
        img:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.07);
            border-left: 5px solid #0984e3;
        }
        .stats-box p {
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        .stats-box strong {
            color: #0984e3;
        }
        .review {
            background-color: #f8f9fa;
            border-left: 5px solid #fdcb6e;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
            position: relative;
        }
        .review::before {
            content: "💬";
            position: absolute;
            top: 15px;
            left: -15px;
            background-color: #fdcb6e;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .review p {
            margin-left: 10px;
        }
        .tag {
            display: inline-block;
            background-color: #e0e6ed;
            padding: 6px 15px;
            border-radius: 20px;
            margin: 8px;
            text-decoration: none;
            color: #2d3436;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #0984e3;
            color: white;
            transform: translateY(-2px);
        }
        footer {
            background-color: #2d3436;
            color: white;
            padding: 50px 0 30px;
            margin-top: 70px;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h4 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: #ffeaa7;
            position: relative;
            display: inline-block;
        }
        .footer-section h4::after {
            content: "";
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: #fdcb6e;
        }
        .game-types a, .tags a {
            color: #b2bec3;
            text-decoration: none;
            display: inline-block;
            margin-right: 20px;
            margin-bottom: 12px;
            font-size: 1.05rem;
            transition: color 0.3s ease;
        }
        .game-types a:hover, .tags a:hover {
            color: #ffeaa7;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #4a4a4a;
            margin-top: 30px;
            font-size: 0.95rem;
            color: #b2bec3;
        }
        .tips-box {
            background-color: #e8f4f8;
            border-radius: 8px;
            padding: 20px;
            margin: 25px 0;
            border: 1px dashed #0984e3;
        }
        .tips-box h4 {
            color: #0984e3;
            margin-bottom: 15px;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
        }
        .tips-box h4::before {
            content: "💡";
            margin-right: 10px;
        }
        .emoji-bullet {
            list-style: none;
            padding-left: 20px;
        }
        .emoji-bullet li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 35px;
        }
        .emoji-bullet li::before {
            position: absolute;
            left: 0;
            top: 3px;
            font-size: 1.2rem;
        }
        .emoji-bullet li:nth-child(1)::before {
            content: "1. 🚗";
        }
        .emoji-bullet li:nth-child(2)::before {
            content: "2. 🚎";
        }
        .emoji-bullet li:nth-child(3)::before {
            content: "3. 🚲";
        }
        .emoji-bullet li:nth-child(4)::before {
            content: "4. 🚂";
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: #0984e3;
                padding: 25px;
                box-shadow: 0 10px 10px rgba(0,0,0,0.1);
            }
            .nav-links li {
                margin: 15px 0;
            }
            .mobile-menu-btn {
                display: block;
            }
            .nav-active {
                display: flex;
            }
            h1 {
                font-size: 2.1rem;
                margin: 30px 0 20px;
            }
            h2 {
                font-size: 1.8rem;
                margin: 40px 0 20px;
            }
            h3 {
                font-size: 1.4rem;
                margin: 30px 0 15px;
            }
            p {
                font-size: 1.02rem;
                margin-bottom: 20px;
            }
            .btn {
                padding: 12px 24px;
                margin: 10px 8px 20px 0;
                font-size: 1rem;
                display: inline-block;
                width: calc(50% - 10px);
                text-align: center;
            }
            .stats-box {
                padding: 20px;
            }
            .review {
                padding: 15px;
            }
        }
