body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background-color: #fff9e6;
        }
        header {
            background-color: #ff6b35;
            color: white;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 30px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .logo {
            font-size: 2.5em;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .mobile-nav-toggle {
            display: none;
            font-size: 1.5em;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            .mobile-nav-toggle {
                display: block;
            }
            .nav-active {
                display: flex;
                flex-direction: column;
                position: absolute;
                right: 20px;
                top: 80px;
                background: #ff6b35;
                padding: 10px;
                border-radius: 5px;
            }
        }
        .download-btn {
            display: inline-block;
            background-color: #4CAF50;
            color: white;
            padding: 12px 24px;
            margin: 10px 0;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1em;
            text-decoration: none;
        }
        .login-btn {
            display: inline-block;
            background-color: #2196F3;
            color: white;
            padding: 12px 24px;
            margin: 10px 0;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1em;
            text-decoration: none;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 20px 0;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 20px;
            margin-top: 30px;
            border-radius: 10px;
        }
        .tag {
            display: inline-block;
            background-color: #f1f1f1;
            color: #333;
            padding: 5px 10px;
            margin: 5px;
            border-radius: 20px;
            text-decoration: none;
        }
        .type-link {
            display: inline-block;
            background-color: #e6f7ff;
            color: #0066cc;
            padding: 5px 10px;
            margin: 5px;
            border-radius: 20px;
            text-decoration: none;
        }
