* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background-color: #1a73e8;
            color: white;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: white;
            text-decoration: none;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 30px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: opacity 0.3s;
        }
        nav ul li a:hover {
            opacity: 0.8;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        h1 {
            color: #1a73e8;
            margin-bottom: 30px;
            font-size: 36px;
            text-align: center;
        }
        h2 {
            color: #1a73e8;
            margin: 40px 0 20px;
            font-size: 28px;
            border-bottom: 2px solid #1a73e8;
            padding-bottom: 10px;
        }
        h3 {
            color: #333;
            margin: 30px 0 15px;
            font-size: 22px;
        }
        p {
            margin-bottom: 20px;
            font-size: 18px;
        }
        .highlight {
            font-weight: bold;
            color: #1a73e8;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .btn-container {
            margin: 40px 0;
            text-align: center;
        }
        .btn {
            display: inline-block;
            padding: 15px 30px;
            margin: 0 10px;
            background-color: #1a73e8;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            font-size: 18px;
            transition: background-color 0.3s;
        }
        .btn:hover {
            background-color: #0d47a1;
        }
        .download-btn {
            background-color: #34a853;
        }
        .download-btn:hover {
            background-color: #2e7d32;
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 15px;
            background-color: #f1f3f4;
            border-radius: 8px;
        }
        .stat-number {
            font-size: 28px;
            font-weight: bold;
            color: #1a73e8;
            margin-bottom: 5px;
        }
        .review-container {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }
        .reviewer {
            font-weight: bold;
        }
        .rating {
            color: #fbbc04;
        }
        footer {
            background-color: #202124;
            color: white;
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .game-type {
            margin-bottom: 30px;
        }
        .game-type h3 {
            color: white;
            margin-bottom: 15px;
        }
        .game-type-links a {
            color: #dadce0;
            text-decoration: none;
            margin-right: 20px;
            display: inline-block;
            margin-bottom: 10px;
        }
        .tags {
            margin: 30px 0;
        }
        .tags h3 {
            color: white;
            margin-bottom: 15px;
        }
        .tag-links a {
            color: #dadce0;
            text-decoration: none;
            background-color: #3c4043;
            padding: 5px 15px;
            border-radius: 20px;
            margin-right: 10px;
            margin-bottom: 10px;
            display: inline-block;
        }
        .recommendation {
            margin: 30px 0;
            padding: 20px;
            background-color: #3c4043;
            border-radius: 8px;
        }
        .copyright {
            text-align: center;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid #5f6368;
            color: #dadce0;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
            }
            nav {
                margin-top: 20px;
                width: 100%;
                display: none;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                width: 100%;
            }
            nav ul li {
                margin: 10px 0;
                text-align: center;
            }
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 24px;
            }
            h3 {
                font-size: 20px;
            }
            .btn {
                display: block;
                margin: 10px auto;
            }
        }
