/* ======================================================
   BASE GLOBAL STYLE
====================================================== */
html, body {
    height: 100%;
    margin: 0;
    background: #000;
    font-family: "Poppins", sans-serif;
    color: white;
    overflow-x: hidden;
    transition: 0.6s ease;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: #ffffff;
}

    #logo {
      display: block;
      margin: 0 auto 0px;
      width: 150px;
      opacity: 0.9;
      transition: transform 0.3s ease;
    }
    
    #logo:hover {
      transform: scale(1.05);
    }

/* ======================================================
   LOADER
====================================================== */
#holoLoader {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    animation: fadeOut 1.5s ease 2.2s forwards;
}
.holo-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top: 4px solid #a050ff;
    border-left: 4px solid #ffd700;
    animation: spin 1.2s linear infinite;
    filter: drop-shadow(0 0 20px #a050ff);
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fadeOut { to { opacity: 0; visibility: hidden; } }

/* ======================================================
   NAVBAR
====================================================== */
.navbar {
    width: 98%;
    padding: 12px 20px;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    flex-wrap: wrap;
}
.nav-title { font-size: 1.5rem; font-weight: 800; }
.nav-links { display: flex; gap: 12px; }
.nav-item {
    padding: 10px 16px;
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}
.nav-item:hover { background: rgba(255,255,255,0.25); }

/* Hamburger Menu for Mobile */
.navbar .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.navbar .hamburger div {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
}
@media(max-width:768px){
    .nav-links{
        display:none;
        width:93%;
        flex-direction: column;
        margin-top:10px;
        gap:5px;
    }
    .nav-links.show{ display:flex; }
    .navbar .hamburger{ display:flex; width: 49px; }
}

/* ======================================================
   BANNER SLIDER
====================================================== */
.slider-container {
    width: 100%;
    margin-top: 60px;
    overflow: hidden;
    position: relative;
}
.slider {
    display: flex;
    animation: slideBanner 45s linear infinite;
}
.slider img {
    height: auto;
    width: auto;
    max-width: 100%;
    display: block;
}
@keyframes slideBanner {
    0% { transform: translateX(0%); }
    33% { transform: translateX(-100%); }
    66% { transform: translateX(-200%); }
    100% { transform: translateX(0%); }
}

/* ======================================================
   LIVE JACKPOT
====================================================== */
.jackpot-bar {
    width: 100%;
    padding: 0;
    background: linear-gradient(to right, #bb00ff, #ff0090);
    font-weight: 700;
    font-size: 1.1rem;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    height: 50px;
}
.jackpot-run {
    position: absolute;
    white-space: nowrap;
    top: 27%;
    transform: translateY(-50%);
    padding-left: 100%;
    animation: jackpotMove 55s linear infinite;
}
@keyframes jackpotMove {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* ======================================================
   NEON 3D BORDER
====================================================== */
.neon3d {
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow:
        0 0 12px rgba(255,255,255,0.4),
        inset 0 0 12px rgba(255,255,255,0.2),
        0 0 22px #a020ff;
}

/* ======================================================
   MENU GRID
====================================================== */
.menu-grid {
    width: 90%;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(230px,1fr));
    gap: 20px;
}
.menu-item {
    padding: 20px;
    border-radius: 14px;
    background: rgba(255,255,255,0.09);
    backdrop-filter: blur(12px);
    text-align: center;
    transition: 0.3s;
    font-size: 1.2rem;
}
.menu-item:hover { transform: scale(1.07); }

/* ======================================================
   POPUP PROMO VIP
====================================================== */
#vipPopup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s ease;
}
.popup-box {
    width: 85%;
    max-width: 420px;
    padding: 25px;
    background: linear-gradient(145deg,#2c0000,#000);
    border-radius: 20px;
    text-align: center;
    border: 2px solid gold;
    color: gold;
    box-shadow: 0 0 25px gold;
}
#vipPopup.show { opacity: 1; pointer-events: auto; }

/* ======================================================
   FOOTER
====================================================== */
footer {
    text-align: center;
    padding: 20px;
    opacity: 0.7;
    margin-top: auto; /* footer mentok di bawah */
}