```html
Wala Sa Script - Voice-first stories. Fictional, but always real.
:root {
--background: 15 15 15;
--foreground: 229 229 229;
--card: 20 20 20;
--muted: 30 30 30;
--muted-foreground: 163 163 163;
--border: 40 40 40;
}
body {
background-color: rgb(var(--background));
color: rgb(var(--foreground));
font-family: 'IBM Plex Mono', monospace;
}
html {
scroll-behavior: smooth;
}
.bg-background { background-color: rgb(var(--background)); }
.bg-card { background-color: rgb(var(--card)); }
.bg-muted { background-color: rgb(var(--muted)); }
.text-foreground { color: rgb(var(--foreground)); }
.text-muted-foreground { color: rgb(var(--muted-foreground)); }
.border-border { border-color: rgb(var(--border)); }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0f0f0f; }
::-webkit-scrollbar-thumb { background: #404040; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #555555; }
WSS
WALA SA SCRIPT
VIDEOS
SUBMIT STORY
ABOUT
SOCIALS
VIDEOS
SUBMIT STORY
ABOUT
SOCIALS
WSS
WALA SA SCRIPT
Voice-first stories. Fictional, but always real.
Subscribe on YouTube
VIDEOS
LATEST
ALL STORIES
Watch on YouTube
Follow on TikTok
SUBMIT STORY
Have a story that sounds too real to be fiction? Send it anonymously.
Submit Your Story
All submissions are completely anonymous
ABOUT THE PROJECT
Wala Sa Script is an anonymous, voice-first storytelling brand. All stories are fictional — but they don't feel like it. No faces, no fluff. Just kwento, boses, at bigat.
SOCIALS
YouTube
@walasascript
TikTok
@walasascript
Instagram
@walasascript
Facebook
@walasascript
© 2025 Wala Sa Script.
Voice-first stories. Fictional, but always real.
document.getElementById('mobile-menu-btn').addEventListener('click', function() {
const mobileMenu = document.getElementById('mobile-menu');
mobileMenu.classList.toggle('hidden');
});
// Close mobile menu when clicking on a link
document.querySelectorAll('#mobile-menu a').forEach(link => {
link.addEventListener('click', function() {
document.getElementById('mobile-menu').classList.add('hidden');
});
});
```