<!-- ⭐ EXODUS COMEDY MOVIE STAGE -->
<div style="
width:100%;
background:#000;
border:4px solid #f5d878;
border-radius:22px;
padding:0;
margin:35px 0;
box-shadow:
0 0 45px rgba(245,216,120,0.55),
0 0 85px rgba(245,216,120,0.35),
inset 0 0 35px rgba(245,216,120,0.25);
">
<!-- ⭐ TOP STAGE LIGHTS -->
<div style="
width:100%;
height:60px;
background:linear-gradient(to bottom, #f5d878, #000);
border-radius:18px 18px 0 0;
box-shadow:0 0 25px rgba(245,216,120,0.75);
"></div>
<!-- ⭐ CURTAINS -->
<div style="
display:flex;
justify-content:space-between;
padding:0 10px;
margin-top:-10px;
">
<div style="width:20%; height:180px; background:#550000; border-radius:0 0 12px 12px;
box-shadow:inset 0 0 25px rgba(0,0,0,0.7);"></div>
<div style="width:20%; height:180px; background:#550000; border-radius:0 0 12px 12px;
box-shadow:inset 0 0 25px rgba(0,0,0,0.7);"></div>
</div>
<!-- ⭐ CENTER SPOTLIGHT TITLE -->
<div style="text-align:center; margin-top:-140px;">
<div style="color:#f5d878; font-size:40px; font-weight:900; text-shadow:0 0 18px #f5d878;">
Entretainment Now
</div>
<!-- ⭐ ORANGE TITLE -->
<div style="color:#ff7b00; font-size:22px; font-weight:700; margin-top:5px;">
REGAL THEATER — OFFICIAL TRAILERS
</div>
<!-- ⭐ DATE + TIME -->
<div style="
color:#f5d878;
font-size:18px;
font-weight:700;
margin-top:10px;
text-shadow:0 0 12px rgba(245,216,120,0.65);
">
<span id="exodusDate"></span> — <span id="exodusTime"></span>
</div>
<script>
function updateExodusDateTime() {
const now = new Date();
const date = now.toLocaleDateString("en-US", {
weekday: "long",
month: "long",
day: "numeric",
year: "numeric"
});
const time = now.toLocaleTimeString("en-US", {
hour: "numeric",
minute: "numeric",
second: "numeric",
hour12: true
});
document.getElementById("exodusDate").innerHTML = date;
document.getElementById("exodusTime").innerHTML = time;
}
setInterval(updateExodusDateTime, 1000);
updateExodusDateTime();
</script>
<!-- ⭐ REGAL WEBSITE LINK -->
<div style="margin-top:10px;">
<a href="https://www.regmovies.com/theatres/regal-dania-pointe-1474?utm_source=google&utm_medium=organic&utm_campaign=gmb-listing"
target="_blank"
style="
color:#f5d878;
font-size:18px;
font-weight:700;
text-decoration:none;
padding:6px 14px;
border:2px solid #f5d878;
border-radius:10px;
box-shadow:0 0 12px rgba(245,216,120,0.55);
display:inline-block;
">
Visit Regal Dania Pointe Website
</a>
</div>
</div>
<!-- ⭐ MOVING MARQUEE -->
<div style="
width:100%;
overflow:hidden;
margin-top:20px;
padding:12px 0;
background:#111;
border-top:3px solid #f5d878;
border-bottom:3px solid #f5d878;
box-shadow:0 0 18px rgba(245,216,120,0.45);
">
<marquee behavior="scroll" direction="left" scrollamount="7"
style="color:#f5d878; font-size:26px; font-weight:900;">
SPIDER-MAN: BRAND NEW DAY ⭐ ⭐THE ODYSSEY ⭐ MOANA ⭐ MOTOR CITY ⭐
MINIONS & MONSTER ⭐ EVEL DEAD BURN ⭐ OBESSION⭐ HER PRIVATE HELL</marquee>
</div>
</div>
<!-- ⭐ UPDATED PLAYLIST EMBED -->
<iframe
src="https://youtube.com/embed/videoseries?list=PLKPxXK2oB4RI&si=I7rkQoukKsLL3eYD&autoplay=1&mute=1&playsinline=1&controls=1&rel=0&modestbranding=1&loop=1"
frameborder="0"
allow="autoplay; encrypted-media"
allowfullscreen
style="width:100%; height:420px; border:0; margin-top:20px;">
</iframe>