body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background-color: #f5f5f5;
        }
        header {
            background-color: #2c3e50;
            color: white;
            padding: 20px;
            text-align: center;
            position: relative;
        }
        .logo {
            font-size: 2.5em;
            font-weight: bold;
            color: #e74c3c;
            text-shadow: 2px 2px 4px #000;
        }
        nav {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 15px;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: bold;
        }
        .mobile-menu-btn {
            display: none;
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: white;
            font-size: 1.5em;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            nav {
                display: none;
                flex-direction: column;
                align-items: center;
                background-color: #34495e;
                padding: 10px;
                margin-top: 10px;
            }
            nav.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
        }
        h1 {
            color: #e74c3c;
            border-bottom: 2px solid #e74c3c;
            padding-bottom: 10px;
            margin-top: 30px;
        }
        h2 {
            color: #3498db;
            margin-top: 25px;
        }
        h3 {
            color: #2ecc71;
            margin-top: 20px;
        }
        .button {
            display: inline-block;
            background-color: #e74c3c;
            color: white;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;
            margin: 10px 0;
            font-weight: bold;
        }
        .download-btn {
            background-color: #27ae60;
        }
        .login-btn {
            background-color: #3498db;
        }
        img {
            max-width: 100%;
            height: auto;
            margin: 20px 0;
            border-radius: 8px;
        }
        .image-container {
            text-align: center;
        }
        footer {
            background-color: #2c3e50;
            color: white;
            text-align: center;
            padding: 20px;
            margin-top: 30px;
        }
        .tags {
            margin: 20px 0;
        }
        .tag {
            display: inline-block;
            background-color: #7f8c8d;
            color: white;
            padding: 5px 10px;
            border-radius: 3px;
            margin: 5px;
            text-decoration: none;
        }
        .game-types {
            margin: 20px 0;
        }
        .game-type {
            display: inline-block;
            background-color: #9b59b6;
            color: white;
            padding: 5px 10px;
            border-radius: 3px;
            margin: 5px;
            text-decoration: none;
        }
