* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Helvetica', sans-serif;
        }
        body {
            background-color: #fff9f0;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        .header {
            background: linear-gradient(135deg, #ff6b35 0%, #d9376e 100%);
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 15px rgba(0,0,0,0.2);
        }
        .logo {
            color: white;
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
            margin-right: 30px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .nav {
            display: inline-block;
        }
        .nav a {
            color: white;
            text-decoration: none;
            margin: 0 15px;
            font-size: 1.1rem;
            font-weight: 500;
            transition: all 0.3s;
        }
        .nav a:hover {
            text-decoration: underline;
            opacity: 0.9;
        }
        .menu-toggle {
            display: none;
            color: white;
            font-size: 1.5rem;
            background: none;
            border: none;
            cursor: pointer;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            color: #d9376e;
            font-size: 2.5rem;
            margin: 30px 0;
            text-align: center;
            text-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }
        h2 {
            color: #d9376e;
            font-size: 2rem;
            margin: 40px 0 20px;
            border-bottom: 3px solid #ffc857;
            padding-bottom: 10px;
        }
        h3 {
            color: #295f94;
            font-size: 1.5rem;
            margin: 30px 0 15px;
            background-color: #f0f7ff;
            padding: 8px 15px;
            border-radius: 5px;
            display: inline-block;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #d9376e;
            text-decoration: underline dotted;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: #295f94;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin: 10px 10px 10px 0;
            transition: all 0.3s;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #1a4069;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border: 5px solid white;
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border-left: 5px solid #ffc857;
        }
        .stats-box p {
            margin: 10px 0;
            padding-left: 10px;
            border-left: 2px solid #f0f0f0;
        }
        .review {
            background-color: white;
            border-left: 5px solid #295f94;
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .footer {
            background-color: #2d2d2d;
            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 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: #ffc857;
            border-bottom: 2px solid #ffc857;
            padding-bottom: 5px;
            display: inline-block;
        }
        .game-types a, .tags a {
            color: #f0f0f0;
            text-decoration: none;
            margin-right: 15px;
            display: inline-block;
            margin-bottom: 8px;
            transition: color 0.3s;
        }
        .game-types a:hover, .tags a:hover {
            color: #ffc857;
        }
        .copyright {
            margin-top: 40px;
            text-align: center;
            font-size: 0.9rem;
            color: #bbbbbb;
            padding-top: 20px;
            border-top: 1px solid #444;
        }
        .recommendation {
            margin: 30px 0;
            font-size: 1.1rem;
            line-height: 1.8;
            background-color: #f8f8f8;
            padding: 20px;
            border-radius: 8px;
        }
        @media (max-width: 768px) {
            .nav {
                display: none;
                flex-direction: column;
                margin-top: 15px;
            }
            .nav.active {
                display: flex;
            }
            .menu-toggle {
                display: block;
                float: right;
            }
            .logo {
                display: block;
                margin-bottom: 10px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
                display: block;
            }
            p {
                font-size: 1rem;
                text-align: left;
            }
            .btn {
                width: 100%;
                text-align: center;
                margin: 10px 0;
            }
        }
