body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            color: #333;
            background-color: #f4f4f9;
        }
        header {
            background-color: #ff4d4d;
            color: white;
            padding: 1rem;
            text-align: center;
            position: relative;
        }
        header h1 {
            margin: 0;
            font-size: 2rem;
        }
        .logo-text {
            font-weight: bold;
            font-size: 2.5rem;
            text-shadow: 2px 2px 4px #000000;
        }
        nav {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1rem;
        }
        nav a {
            color: white;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            background-color: #e03e3e;
        }
        .mobile-nav-toggle {
            display: none;
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            nav {
                display: none;
                flex-direction: column;
                align-items: center;
            }
            nav.active {
                display: flex;
            }
            .mobile-nav-toggle {
                display: block;
            }
        }
        main {
            padding: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        section {
            margin-bottom: 2rem;
        }
        h2 {
            color: #ff4d4d;
            border-bottom: 2px solid #ff4d4d;
            padding-bottom: 0.5rem;
        }
        h3 {
            color: #e03e3e;
        }
        .download-btn, .login-btn {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            margin: 1rem 0;
            background-color: #ff4d4d;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            text-align: center;
        }
        .download-btn:hover, .login-btn:hover {
            background-color: #e03e3e;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 1rem auto;
            border-radius: 5px;
        }
        footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 1rem;
        }
        .tags {
            margin: 1rem 0;
        }
        .tags a {
            color: #ff4d4d;
            text-decoration: none;
            margin: 0 0.5rem;
        }
        .game-types {
            margin: 1rem 0;
        }
        .game-types a {
            color: #e03e3e;
            text-decoration: none;
            margin: 0 0.5rem;
        }
