* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Helvetica', sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
            padding-bottom: 50px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #1a5276;
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #ffc107;
            text-decoration: none;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-links a:hover {
            color: #ffc107;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .main-content {
            margin-top: 30px;
        }
        .intro-section {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            margin-bottom: 30px;
        }
        h1 {
            color: #1a5276;
            margin-bottom: 20px;
            font-size: 2.2rem;
            border-bottom: 3px solid #ffc107;
            padding-bottom: 10px;
        }
        h2 {
            color: #1a5276;
            margin: 30px 0 15px;
            font-size: 1.8rem;
        }
        h3 {
            color: #2980b9;
            margin: 25px 0 12px;
            font-size: 1.4rem;
        }
        p {
            margin-bottom: 15px;
            font-size: 1.05rem;
            line-height: 1.8;
        }
        .highlight {
            background-color: #fff3cd;
            padding: 2px 5px;
            border-radius: 3px;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: #27ae60;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin: 10px 10px 10px 0;
            transition: background-color 0.3s;
            text-align: center;
        }
        .btn:hover {
            background-color: #219653;
        }
        .btn-download {
            background-color: #e67e22;
        }
        .btn-download:hover {
            background-color: #d35400;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        .stats-box {
            background-color: #ecf0f1;
            border-left: 5px solid #3498db;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 5px 5px 0;
        }
        .review-box {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        }
        .reviewer {
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 5px;
        }
        .stars {
            color: #f39c12;
            margin-bottom: 10px;
        }
        .feature-list {
            margin: 20px 0;
            padding-left: 25px;
        }
        .feature-list li {
            margin-bottom: 12px;
        }
        .game-types {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 30px 0;
        }
        .game-type-link {
            background-color: #3498db;
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 0.9rem;
            transition: background-color 0.3s;
        }
        .game-type-link:hover {
            background-color: #2980b9;
        }
        .tags {
            margin: 40px 0 20px;
        }
        .tag {
            display: inline-block;
            background-color: #e1f0fa;
            color: #2980b9;
            padding: 6px 12px;
            border-radius: 15px;
            margin: 0 8px 10px 0;
            text-decoration: none;
            font-size: 0.9rem;
        }
        .tag:hover {
            background-color: #c9e7f7;
        }
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: #ffc107;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: white;
        }
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #34495e;
            font-size: 0.9rem;
            color: #bdc3c7;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: #1a5276;
                padding: 20px;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 10px 0;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .btn {
                display: block;
                width: 100%;
                margin: 10px 0;
            }
        }
