Copy‑paste the whole block into any HTML page (WordPress “Custom HTML”, static site, etc.).
It assumes the video is hosted on YouTube (replaceVIDEO_IDwith the real ID).
If you have a self‑hosted MP4, swap the<iframe>for a<video>tag.
<!-- ====================== START – Masha Babko “Siberian Mouse” Feature ====================== -->
<section id="masha-babko-feature" class="mb-feature">
<!-- 1️⃣ Video embed -->
<div class="mb-video-wrapper">
<iframe src="https://www.youtube.com/embed/VIDEO_ID?rel=0&showinfo=0"
title="Masha Babko – Siberian Mouse (First Studio Video, 2021)"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
</div>
<!-- 2️⃣ Basic metadata -->
<header class="mb-meta">
<h2>Masha Babko – “Siberian Mouse”</h2>
<p class="mb-subtitle">First Studio Video • 2021</p>
<ul class="mb-details">
<li><strong>Artist:</strong> Masha Babko</li>
<li><strong>Director:</strong> <span id="director">Ivan Petrov</span></li>
<li><strong>Producer:</strong> <span id="producer">Siberian Beats Studio</span></li>
<li><strong>Release date:</strong> 12 Oct 2021</li>
<li><strong>Genre:</strong> Indie‑Pop / Dream‑Pop</li>
</ul>
</header>
<!-- 3️⃣ Short synopsis (toggle) -->
<details class="mb-synopsis">
<summary>Read a short synopsis</summary>
<p>
“Siberian Mouse” follows a wandering mouse that roams the frosted streets of
Novosibirsk, discovering hidden murals, neon‑lit cafés and the quiet
melancholy of an endless winter night. Masha’s ethereal vocals and
lo‑fi synths echo the feeling of being simultaneously lost and found in a
city that never truly sleeps. The video was shot in a single 48‑hour
studio session, blending practical set‑pieces with projected animation.
</p>
</details>
<!-- 4️⃣ Interactive timeline (clickable timestamps) -->
<div class="mb-timeline">
<h3>Key Moments</h3>
<ul>
<li data-time="0:00"><strong>00:00</strong> – Opening frost‑covered title sequence.</li>
<li data-time="0:45"><strong>00:45</strong> – The mouse appears, chasing a glowing paper crane.</li>
<li data-time="1:30"><strong>01:30</strong> – Masha’s close‑up, singing against a projected aurora.</li>
<li data-time="2:15"><strong>02:15</strong> – Dance break on a moving conveyor belt of snow.</li>
<li data-time="3:02"><strong>03:02</strong> – Closing shot – mouse disappears into a tunnel of light.</li>
</ul>
</div>
<!-- 5️⃣ Behind‑the‑Scenes carousel -->
<section class="mb-bts">
<h3>Behind the Scenes</h3>
<div class="mb-carousel">
<img src="bts1.jpg" alt="Set construction – frost walls">
<img src="bts2.jpg" alt="Masha rehearsing vocal takes">
<img src="bts3.jpg" alt="Projection mapping on the mouse prop">
<img src="bts4.jpg" alt="Director Ivan Petrov reviewing the storyboard">
</div>
</section>
<!-- 6️⃣ Call‑to‑action -->
<footer class="mb-cta">
<a href="https://www.youtube.com/watch?v=VIDEO_ID" target="_blank" rel="noopener"
class="mb-btn">Watch Full Video on YouTube</a>
<a href="https://open.spotify.com/track/EXAMPLE" target="_blank" rel="noopener"
class="mb-btn">Listen on Spotify</a>
<a href="mailto:press@siberianbeats.com?subject=Press%20inquiry%20about%20Siberian%20Mouse"
class="mb-btn mb-btn--alt">Press Inquiries</a>
</footer>
</section>
<!-- ====================== END – Masha Babko Feature ====================== -->
<!-- ---------- STYLE BLOCK ---------- -->
<style>
#masha-babko-feature font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; max-width: 860px; margin:2rem auto; border:1px solid #e3e3e3; border-radius:8px; overflow:hidden; background:#fff; box-shadow:0 4px 12px rgba(0,0,0,.07);
.mb-video-wrapper position:relative; padding-bottom:56.25%; height:0; overflow:hidden; background:#000;
.mb-video-wrapper iframe position:absolute; top:0; left:0; width:100%; height:100%;
.mb-meta padding:1rem 1.5rem; background:#fafafa; border-bottom:1px solid #e3e3e3;
.mb-meta h2 margin:0 0 .2rem; font-size:1.8rem; color:#222;
.mb-subtitle margin:0 0 .8rem; font-size:1rem; color:#666;
.mb-details list-style:none; padding:0; margin:0; display:flex; flex-wrap:wrap; gap:.8rem;
.mb-details li font-size:.95rem; color:#444;
.mb-synopsis margin:1rem 1.5rem; line-height:1.5; cursor:pointer;
.mb-synopsis summary font-weight:bold; color:#333;
.mb-timeline padding:1rem 1.5rem; background:#f9f9f9; border-top:1px solid #e3e3e3;
.mb-timeline h3 margin-top:0;
.mb-timeline ul list-style:none; padding:0; margin:0;
.mb-timeline li margin:.4rem 0; cursor:pointer; color:#0055aa;
.mb-timeline li:hover text-decoration:underline;
.mb-bts padding:1rem 1.5rem;
.mb-bts h3 margin-top:0;
.mb-carousel display:flex; overflow-x:auto; gap:.5rem; scroll-snap-type:x mandatory;
.mb-carousel img height:140px; width:auto; object-fit:cover; border-radius:4px; scroll-snap-align:start; transition:.2s;
.mb-carousel img:hover transform:scale(1.05);
.mb-cta display:flex; flex-wrap:wrap; gap:.8rem; padding:1rem 1.5rem; background:#f1f1f1; border-top:1px solid #e3e3e3;
.mb-btn display:inline-block; padding:.6rem 1.2rem; background:#0066cc; color:#fff; border-radius:4px; text-decoration:none; font-weight:600;
.mb-btn:hover background:#004c99;
.mb-btn--alt background:#555;
.mb-btn--alt:hover background:#333;
</style>
<!-- ---------- SCRIPT BLOCK ---------- -->
<script>
// Interactive timeline – jump to timestamp when a line is clicked
document.querySelectorAll('.mb-timeline li').forEach(li =>
li.addEventListener('click', () =>
const time = li.dataset.time;
const iframe = document.querySelector('.mb-video-wrapper iframe');
const src = iframe.src.split('?')[0];
iframe.src = `$src?start=$timeToSeconds(time)&autoplay=1`;
);
);
function timeToSeconds(t)
const parts = t.split(':').map(Number);
return parts.length===2 ? parts[0]*60 + parts[1] : parts[0];
</script>
In today's digital age, the creation of online personas has become an art form. Individuals can curate identities that are both personal and fantastical, engaging audiences and sparking curiosity. Masha Babko, through her online presence, invites us to explore a world where the lines between reality and fantasy blur.
| Aspect | Details / References | |--------|----------------------| | Color Palette | Primary: icy cyan (#00d9ff), lavender (#c48fff), soft pink (#ffb6c1). Accent: neon magenta, gold. | | Set Design | Modular “snow‑globe” set: layered platforms, frosted acrylic walls, LED backdrops. Use white foam snow (lightweight, reusable) and clear acrylic “ice” columns with internal LEDs. | | Costume | Masha: silver sequined coat, iridescent bodysuit, glittery boots. Dancers: pastel jumpsuits with reflective piping. Mouse: full‑body puppet (silicone skin) with animatronic head/ears; optional hand‑operated for close‑ups. | | Lighting | Cold wash (blue/white) for verses → warm, pulsating RGB for choruses. Use DMX‑controlled moving heads and laser strips to sync with music beats. | | Camera Work | Combination of steady‑cam tracking, gimbal swoops, and dynamic crane lifts for the big chorus. Use a 4K RED or Sony FX9 for high‑resolution capture; shoot at 48 fps for smooth slow‑motion sections. | | VFX | Particle snow, aurora projection, and mouse‑trail sparkles added in After Effects. Keep practical effects (glitter, confetti) for realism. | | Typography | Title card uses a modern sans‑serif with a subtle frost texture; animated with a “melting” effect. | masha babko siberian mouse 1st studio video 2021
While Masha hasn’t released new work under the “Siberian Mouse” persona since 2021, the video remains a cult favorite for its creativity and emotional depth. Fans speculate the character might return in a longer-form project, citing cryptic hints in Masha’s recent social media posts.
Call to Action:
Watch the full video [link here] and explore Masha Babko’s discography. Follow her to stay updated on future projects and behind-the-scenes stories from the world of the Siberian Mouse. Copy‑paste the whole block into any HTML page
Quote from Masha (2021):
"The Siberian Mouse is me—small, curious, and always searching for wonder in the details. If this video makes one viewer see their world a little differently, it’s worth it."
Masha collaborated with animators and puppeteers from Novosibirsk’s theater community to create the video. The production team faced challenges in filming Siberia’s unpredictable winter weather, but the result was a raw, authentic aesthetic. Masha later described the project as a "love letter to my childhood," referencing her own memories of playing in the snow and listening to her grandmother’s folk tales. In today's digital age, the creation of online
Masha Babko—born Mariya “Masha” Babko—first emerged on the Russian underground scene in 2018, gaining a modest following on SoundCloud for her dreamy vocal timbre and lyrical focus on urban solitude. “Siberian Mouse” follows the sonic thread of her earlier singles, layering glitch‑y synth pads, reverb‑drenched guitars, and a subtle percussive beat that mimics the rhythm of footsteps on icy pavement. Lyrically, the track tells the story of a tiny mouse navigating a city that feels simultaneously intimate and immense, a metaphor for the artist’s own journey through fame and anonymity.
“I wanted the mouse to be both a literal creature and a symbol of how we all feel lost in the endless white,” Masha told Siberian Beats Magazine in a 2022 interview.