Discover the most comprehensive breakdown of the Sphere Las Vegas 2026/2027 schedule, featuring a powerful mix of headline concerts, immersive productions, and special live events.
As one of the most innovative venues in the world, the Sphere continues to attract top-tier talent and groundbreaking shows, making 2026 one of its most exciting years yet. This page brings everything together in a structured, easy-to-navigate format so you can explore performance dates and plan your visit with confidence.
/* =========================================================
Sphere Months Carousel — jcarousel style (FINAL)
Scoped ONLY to #sphereMonthsCal
========================================================= */
#sphereMonthsCal.carousel-wrapper{
width: 100% !important; /* ✅ يملى عرض الصفحة */
display: flex !important;
align-items: center !important;
overflow: visible !important;
}
/* arrows (MATCH OLD CAROUSEL 1:1) */
#sphereMonthsCal .jcarousel-prev,
#sphereMonthsCal .jcarousel-next{
flex: 0 0 30px !important; /* ✅ كان 40 */
width: 30px !important; /* ✅ كان 40 */
min-width: 30px !important; /* ✅ كان 40 */
height: 120px !important;
line-height: 120px !important;
text-align: center !important;
font-size: 40px !important; /* ✅ كان 24 */
font-weight: normal !important; /* ✅ نفس القديم */
font-family: inherit !important; /* ✅ نفس خط الموقع */
background: #3f63ae !important;
border: 0 !important;
color: #ffffff !important;
outline: none !important;
padding: 0 !important;
cursor: pointer !important;
border-radius: 0 !important; /* ✅ كان 10: نخليه زي القديم */
}
#sphereMonthsCal .jcarousel-prev{ margin-right: 7px !important; }
#sphereMonthsCal .jcarousel-next{ margin-left: 7px !important; }
/* track */
#sphereMonthsCal .jcarousel{
flex: 1 1 auto !important;
min-width: 0 !important;
position: relative !important;
overflow-x: auto !important;
overflow-y: hidden !important;
scrollbar-width: none !important;
}
#sphereMonthsCal .jcarousel::-webkit-scrollbar{ display: none !important; }
/* ul: fit content (no fake empty space) */
#sphereMonthsCal .jcarousel ul{
width: fit-content !important; /* ✅ يمنع المساحة الوهمية بعد ديسمبر */
display: flex !important; /* ✅ بدل float */
gap: 14px !important; /* ✅ نفس المسافة بين العناصر */
list-style: none !important;
margin: 0 !important;
padding: 0 14px !important; /* ✅ مسافة قبل أول عنصر وبعد آخر عنصر */
position: relative !important;
}
/* li */
#sphereMonthsCal .jcarousel ul li{
width: 105px !important; /* ✅ يمنع كسر Sphere */
min-width: 105px !important;
border: transparent !important;
border-bottom: 2px solid #28a7df !important;
padding: 15px 5px !important;
text-align: center !important;
background: transparent !important;
box-sizing: border-box !important;
float: none !important; /* ✅ لأننا استخدمنا flex */
margin: 0 !important; /* ✅ لأن gap هو اللي بيدير المسافة */
}
/* link */
#sphereMonthsCal .jcarousel ul li a{
display: flex !important;
flex-direction: column !important;
align-items: center !important;
justify-content: center !important;
gap: 8px !important;
text-decoration: none !important;
color: #6b6c7a !important;
}
/* hover */
#sphereMonthsCal .jcarousel ul li:hover{
background-color: #B3BFC5 !important;
}
/* text */
#sphereMonthsCal .m{
font-size: 16px !important;
font-weight: 650 !important;
color: #6b6c7a !important;
white-space: nowrap !important;
}
#sphereMonthsCal .d{
font-size: 25px !important;
font-weight: 800 !important;
color: #6b6c7a !important;
line-height: 1.1 !important;
white-space: nowrap !important; /* ✅ يمنع Sphere تتقسم */
}
#sphereMonthsCal .w{
font-size: 16px !important;
font-weight: 650 !important;
color: #6b6c7a !important;
white-space: nowrap !important;
}
/* mobile tweak */
@media (max-width: 760px){
#sphereMonthsCal .jcarousel-prev,
#sphereMonthsCal .jcarousel-next{
width: 30px !important; /* ✅ خليه زي القديم حتى على الموبايل */
min-width: 30px !important;
flex-basis: 30px !important;
height: 110px !important;
line-height: 110px !important;
font-size: 50px !important; /* ✅ نفس القديم */
border-radius: 0 !important; /* ✅ نفس القديم */
}
#sphereMonthsCal .jcarousel ul li{
width: 98px !important;
min-width: 98px !important;
}
#sphereMonthsCal .d{
font-size: 23px !important;
}
}
document.addEventListener(“DOMContentLoaded”, function () {
const root = document.getElementById(“sphereMonthsCal”);
const jc = document.getElementById(“sphereMonthsJc”);
if (!root || !jc) return;
const prev = root.querySelector(“.jcarousel-prev”);
const next = root.querySelector(“.jcarousel-next”);
const ul = jc.querySelector(“ul”);
if (!prev || !next || !ul) return;
jc.style.overflowX = “auto”;
jc.style.overflowY = “hidden”;
jc.style.scrollBehavior = “smooth”;
function step() {
return Math.max(260, Math.floor(jc.clientWidth * 0.75));
}
function maxScroll() {
return Math.max(0, jc.scrollWidth – jc.clientWidth);
}
function scrollToX(x, behavior = “smooth”) {
const clamped = Math.min(Math.max(0, x), maxScroll());
jc.scrollTo({
left: clamped,
behavior: behavior
});
}
function updateArrows() {
const x = jc.scrollLeft;
const max = maxScroll();
const EPS = 2;
prev.disabled = x = max – EPS;
prev.style.opacity = prev.disabled ? “0.45” : “1”;
next.style.opacity = next.disabled ? “0.45” : “1”;
prev.style.cursor = prev.disabled ? “default” : “pointer”;
next.style.cursor = next.disabled ? “default” : “pointer”;
}
function rotateToCurrentMonthAsFirst() {
const slugs = [
“january”,
“february”,
“march”,
“april”,
“may”,
“june”,
“july”,
“august”,
“september”,
“october”,
“november”,
“december”
];
const currentSlug = slugs[new Date().getMonth()];
const items = Array.from(ul.querySelectorAll(“li”));
const idx = items.findIndex(function (li) {
const a = li.querySelector(“a[href]”);
return a && a.getAttribute(“href”).includes(“/” + currentSlug + “/”);
});
if (idx > 0) {
for (let i = 0; i < idx; i++) {
ul.appendChild(items[i]);
}
}
scrollToX(0, "auto");
}
prev.addEventListener("click", function () {
scrollToX(jc.scrollLeft – step());
});
next.addEventListener("click", function () {
scrollToX(jc.scrollLeft + step());
});
jc.addEventListener("scroll", function () {
requestAnimationFrame(updateArrows);
});
window.addEventListener("resize", updateArrows);
rotateToCurrentMonthAsFirst();
updateArrows();
});
The full lineup of Sphere Las Vegas shows 2026 reflects the venue’s commitment to hosting unforgettable entertainment experiences that push creative boundaries. From long-running productions to limited engagements, each show contributes to a dynamic annual calendar that keeps audiences returning throughout the year.
Music remains a major highlight, and the updated The Sphere concert schedule provides a clear overview of artists scheduled to perform in 2026/2027. With immersive staging and advanced audio technology, every concert becomes more than a performance — it becomes a multi-sensory experience unique to this venue.
In addition to major tours, the range of Sphere Las Vegas events expands the entertainment offering beyond traditional concerts. These events often combine visual storytelling, innovative design, and large-scale production elements tailored specifically for the Sphere’s architecture.
By reviewing the complete Sphere Las Vegas schedule, you gain the flexibility to compare months, analyze event density, and determine the best time to secure your Las Vegas Sphere tickets. Planning early not only improves seat availability but also allows you to build a Las Vegas trip centered around one of the city’s most in-demand entertainment hubs.