body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background: #FFD700; padding: 15px; text-align: center; position: relative; }
        .logo { font-size: 28px; font-weight: bold; color: #8B0000; }
        nav { display: flex; justify-content: center; gap: 20px; margin-top: 10px; }
        nav a { color: #8B0000; text-decoration: none; font-weight: bold; }
        .mobile-nav-toggle { display: none; background: #8B0000; color: white; border: none; padding: 8px 12px; border-radius: 4px; position: absolute; right: 10px; top: 10px; }
        h1 { color: #8B0000; text-align: center; margin-bottom: 30px; }
        h2 { color: #D2691E; margin-top: 40px; border-bottom: 2px solid #FFD700; padding-bottom: 5px; }
        h3 { color: #CD853F; margin-top: 25px; }
        .btn { display: inline-block; background: #8B0000; color: white; padding: 10px 20px; margin: 10px 0; border-radius: 5px; text-decoration: none; font-weight: bold; }
        .download-btn { background: #2E8B57; }
        .login-btn { background: #4682B4; }
        img { max-width: 100%; height: auto; margin: 20px 0; border-radius: 8px; }
        .game-info { background: #FFF8DC; padding: 15px; border-radius: 8px; margin: 20px 0; }
        footer { background: #333; color: white; text-align: center; padding: 20px; margin-top: 40px; }
        .tags { margin: 20px 0; }
        .tag { display: inline-block; background: #8B0000; color: white; padding: 5px 10px; margin: 5px; border-radius: 15px; text-decoration: none; }
        @media (max-width: 768px) {
            nav { flex-direction: column; display: none; }
            nav.active { display: flex; }
            .mobile-nav-toggle { display: block; }
            body { padding: 10px; }
        }
