body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            color: #333;
            background-color: #f5f5f5;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        header {
            background-color: #2c3e50;
            color: white;
            padding: 20px 0;
            position: relative;
        }
        .logo {
            font-size: 2.5em;
            font-weight: bold;
            text-align: center;
            margin: 0;
        }
        .logo span {
            color: #e74c3c;
        }
        nav {
            display: flex;
            justify-content: center;
            margin-top: 15px;
        }
        nav a {
            color: white;
            text-decoration: none;
            margin: 0 15px;
            font-weight: bold;
        }
        .mobile-nav-toggle {
            display: none;
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: white;
            font-size: 1.5em;
            cursor: pointer;
        }
        h1, h2, h3 {
            color: #2c3e50;
            margin-top: 30px;
        }
        h1 {
            font-size: 2.2em;
            border-bottom: 2px solid #e74c3c;
            padding-bottom: 10px;
        }
        h2 {
            font-size: 1.8em;
            border-left: 4px solid #e74c3c;
            padding-left: 10px;
        }
        h3 {
            font-size: 1.5em;
            color: #3498db;
        }
        .button {
            display: inline-block;
            background-color: #e74c3c;
            color: white;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;
            margin: 10px 0;
            font-weight: bold;
        }
        .button:hover {
            background-color: #c0392b;
        }
        .download-section, .login-section {
            background-color: white;
            padding: 20px;
            border-radius: 5px;
            margin: 20px 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 5px;
        }
        footer {
            background-color: #2c3e50;
            color: white;
            text-align: center;
            padding: 20px 0;
            margin-top: 30px;
        }
        .game-types, .tags {
            margin: 20px 0;
        }
        .game-types a, .tags a {
            color: #e74c3c;
            text-decoration: none;
            margin: 0 5px;
        }
        @media (max-width: 768px) {
            .mobile-nav-toggle {
                display: block;
            }
            nav {
                display: none;
                flex-direction: column;
                align-items: center;
                width: 100%;
                background-color: #34495e;
                position: absolute;
                top: 80px;
                left: 0;
            }
            nav.active {
                display: flex;
            }
            nav a {
                margin: 10px 0;
            }
            .container {
                padding: 10px;
            }
        }
