/* DO NOT EDIT START ///////////////////////////////////////////////// */

html,
body {
    margin: 0;
    background-color: #000000;
}

main {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1920px;
    height: 1080px;
    overflow: hidden;
}

#image-sequence {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
}

#stop-point-container, #highlight-container {
    position: absolute;
    top: 0;
    left: 1920px;
    display: flex;
}

#highlight-container {
    visibility: hidden;
}

.inside-highlight-container {
    display: flex;
    flex-direction: column;
    width: 1920px;
}

#screen-saver {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10000;
}

img,
video {
    width: 1920px;
    height: 1080px;
}

.brand-logo {
    position: absolute;
    z-index: 20000;
    left: 50%;
    top:10rem;
    transform: translate(-49%, -39%);
    width: 75px;
    height: auto;
}

.hot-spot {
    position: absolute;
    z-index: 10000;
    display: none;
    cursor: pointer;
}

.hot-spot-show {
    background: rgba(255, 0, 212, 0.4);
}

nav {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -150px;
    height: 250px;
    z-index: 11000;
    opacity: 0.8;
    transition: all 0.5s ease-out;
}

nav:not(.disable):hover, .nav-hover, .nav-stay {
    bottom: 0;
}

.hide-nav {
    bottom: -300px;
}

.nav-tab {
    width: 400px;
    height: 50px;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
}

.nav-holder {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.nav-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.5s ease-out;
}

#rotate-left:hover, .rotate-left-hover {
    transform: translateX(-10px);
}

#rotate-right:hover, .rotate-right-hover {
    transform: translateX(10px);
}

.pack-bar {
    display: flex;
    justify-content: space-evenly;
    width: 1590px;
    height: 100px;
    padding: 10px;
    box-sizing: border-box;
}

.pack-bar img {
    height: 100%;
    width: auto;
}

.pack-stop-point {
    cursor: pointer;
    transition: transform 0.5s ease-out;
}

.pack-stop-point:hover, .pack-hover {
    transform: scale(1.15);
}

#close-highlight {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -150px;
    width: 500px;
    height: 100px;
    z-index: 11000;
    transition: all 0.5s ease-out;
}

#close-highlight .nav-tab {
    cursor: pointer;
    transform-origin: center bottom;
    transition: all 0.5s ease-out;
}

#close-highlight:hover > .nav-tab, .return-hover {
    transform: scale(1.15);
}

.show-close-highlight {
    bottom: 0 !important;
}

#idle-timer {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1920px;
    height: 1080px;
    z-index: 9900;
    visibility: hidden;
}

.idle-timer-content {
    display: inline-block;
    text-align: center;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.idle-timer-content h2 {
    margin-top: 0;
}

.idle-timer-content h3 {
    margin-bottom: 0;
}

/* DO NOT EDIT END ///////////////////////////////////////////////// */


/* EDITABLE CSS START ///////////////////////////////////////////////// */

/* Background */
body {
    background: linear-gradient(to bottom, #1e3c72, #2a5298);
    color: #ffffff;
}

/* Logo */
.brand-logo {
    top: 50px;
    right: 50px;
    width: 310px;
    height: auto;
    filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.7));
}

/* ================= NAV DESIGN (UPDATED ONLY) ================= */

/* NAV TAB */
.nav-tab {
    background: linear-gradient(135deg, #f4c542, #d4a017);
    color: #0e2a3a;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 2px;
    border: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    backdrop-filter: blur(6px);
}

/* NAV HOLDER */
.nav-holder {
    background: linear-gradient(to right, rgba(10,40,60,0.85), rgba(5,25,40,0.95));
    border-radius: 20px;
    padding: 10px 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

/* ARROWS */
.nav-btns {
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    color: #f4c542;
    font-size: 36px;
}

.nav-btns:hover {
    background: #f4c542;
    color: #0e2a3a;
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(244,197,66,0.8);
}

/* PACK BAR */
.pack-bar {
    background: linear-gradient(to right, rgba(255,255,255,0.05), rgba(255,255,255,0.08));
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

/* ICON STYLE */
.pack-bar img {
    opacity: 0.6;
    transform: scale(0.9);
    transition: all 0.35s ease;
    filter: grayscale(40%) brightness(80%);
}

.pack-bar img:hover {
    opacity: 1;
    transform: scale(1.2) translateY(-8px);
    filter: none;
}

/* STOP POINT HIGHLIGHT */
.pack-stop-point {
    opacity: 0.9 !important;
}

.pack-stop-point:hover,
.pack-hover {
    transform: scale(1.25);
    filter: none !important;
}

/* GLOW RING */
.pack-stop-point::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 10px;
    border: 2px solid rgba(244,197,66,0.6);
    opacity: 0;
    transition: all 0.3s ease;
}

.pack-stop-point:hover::after {
    opacity: 1;
    box-shadow: 0 0 15px rgba(244,197,66,0.8);
}

/* LINE INDICATOR */
.pack-bar::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: linear-gradient(to right, transparent, #f4c542, transparent);
    opacity: 0.6;
}

/* ============================================================= */

/* EDITABLE CSS END ///////////////////////////////////////////////// */