body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            margin: 0;
            padding: 0;
            background-color: #f5f5f5;
        }
        header {
            background-color: #ff4d4d;
            color: white;
            padding: 15px 0;
            text-align: center;
            position: relative;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            letter-spacing: 2px;
        }
        nav {
            display: flex;
            justify-content: center;
            margin-top: 10px;
        }
        nav a {
            color: white;
            margin: 0 15px;
            text-decoration: none;
            font-weight: bold;
        }
        .mobile-menu-btn {
            display: none;
            position: absolute;
            right: 20px;
            top: 20px;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        .container {
            max-width: 1200px;
            margin: 20px auto;
            padding: 0 20px;
        }
        h1, h2, h3 {
            color: #ff4d4d;
            margin-top: 30px;
        }
        h1 {
            font-size: 32px;
            border-bottom: 2px solid #ff4d4d;
            padding-bottom: 10px;
        }
        h2 {
            font-size: 24px;
            border-left: 4px solid #ff4d4d;
            padding-left: 10px;
        }
        h3 {
            font-size: 20px;
        }
        .download-btn, .login-btn {
            display: inline-block;
            background-color: #ff4d4d;
            color: white;
            padding: 10px 20px;
            margin: 10px 0;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .download-btn:hover, .login-btn:hover {
            background-color: #cc0000;
        }
        .image-container {
            text-align: center;
            margin: 20px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }
        footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 20px 0;
            margin-top: 30px;
        }
        .game-types, .tags {
            margin: 20px 0;
            text-align: center;
        }
        .game-types a, .tags a {
            color: #ff4d4d;
            margin: 0 10px;
            text-decoration: none;
        }
        @media (max-width: 768px) {
            nav {
                flex-direction: column;
                align-items: center;
                display: none;
            }
            nav.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 26px;
            }
            h2 {
                font-size: 20px;
            }
        }
