Welcome to my world Shrouded Legion! This site's your front-row seat to all things me—dive into who I am, what I'm about, and the cool stuff I do! You'll find spicy gameplay screenshots, links to my buzzing social media, a countdown to my epic birthday bash, and even ways to join the squad as a mod on tons of platforms. Plus, there's more goodies to explore—just centred around your favourite creator! Ready to hang out?
Applications are currently not available to the public yet. When they become available I will post the link here. It will also be displayed within my Discord server.
My Birthday Countdown
Meeting the team
Shrouded Nate
Nickname: Nate
Birthday: January 14
Occupation: Content Creator
const nateCard = document.getElementById('shroudedNateCard'); nateCard.addEventListener('mousemove', (e) => { const rect = nateCard.getBoundingClientRect(); const x = e.clientX - rect.left; // x position within the card const y = e.clientY - rect.top; // y position within the card const centerX = rect.width / 2; const centerY = rect.height / 2; const rotateX = ((y - centerY) / centerY) * 15; // Max 15 deg rotation for stronger 3D const rotateY = ((x - centerX) / centerX) * 15; nateCard.style.transform = `rotateX(${-rotateX}deg) rotateY(${rotateY}deg)`; }); nateCard.addEventListener('mouseleave', () => { nateCard.style.transform = 'rotateX(0deg) rotateY(0deg)'; });