* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', sans-serif;
        }
        body {
            background-color: #f8f5f0;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        .header {
            background-color: #e63946;
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .logo {
            color: white;
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
            margin-right: 30px;
        }
        .nav {
            display: inline-block;
        }
        .nav ul {
            list-style: none;
            display: flex;
            gap: 20px;
        }
        .nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: 0.3s;
        }
        .nav a:hover {
            color: #ffd700;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            color: #1d3557;
            margin: 30px 0;
            font-size: 2.5rem;
            text-align: center;
        }
        h2 {
            color: #1d3557;
            margin: 40px 0 20px;
            font-size: 2rem;
            border-left: 4px solid #e63946;
            padding-left: 15px;
        }
        h3 {
            color: #457b9d;
            margin: 30px 0 15px;
            font-size: 1.5rem;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: #e63946;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin: 10px 10px 10px 0;
            transition: 0.3s;
        }
        .btn:hover {
            background-color: #d62828;
            transform: translateY(-2px);
        }
        .btn-login {
            background-color: #457b9d;
        }
        .btn-login:hover {
            background-color: #3a6888;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .highlight {
            font-weight: bold;
            color: #e63946;
        }
        .stats-box {
            background-color: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            margin: 30px 0;
        }
        .review {
            background-color: white;
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
            border-left: 3px solid #457b9d;
        }
        .reviewer {
            font-style: italic;
            color: #666;
            margin-top: 10px;
        }
        .tips-list {
            margin: 20px 0 20px 40px;
        }
        .tips-list li {
            margin-bottom: 15px;
        }
        .footer {
            background-color: #1d3557;
            color: white;
            padding: 40px 20px;
            margin-top: 50px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types, .tags {
            margin: 20px 0;
        }
        .game-types h4, .tags h4 {
            margin-bottom: 10px;
            font-size: 1.2rem;
            color: #ffd700;
        }
        .game-types a, .tags a {
            color: white;
            text-decoration: none;
            margin-right: 15px;
            display: inline-block;
            margin-bottom: 8px;
        }
        .game-types a:hover, .tags a:hover {
            color: #ffd700;
        }
        .copyright {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #457b9d;
            text-align: center;
        }
        @media (max-width: 768px) {
            .nav {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #e63946;
                padding: 20px;
            }
            .nav.active {
                display: block;
            }
            .nav ul {
                flex-direction: column;
                gap: 15px;
            }
            .mobile-menu-btn {
                display: inline-block;
                float: right;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            p {
                font-size: 1rem;
            }
        }
