 body,
    html {
        margin: 0;
        padding: 0;
        overflow: hidden;
        font-family: Arial, sans-serif;
    }

    /* Overlay intro */
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 2000;
    }

    .overlay h2 {
        margin-bottom: 20px;
        font-size: 22px;
    }

    .overlay button {
        margin: 8px;
        padding: 10px 18px;
        font-size: 16px;
        border: none;
        border-radius: 6px;
        cursor: pointer;
    }

    .overlay .yes {
        background: green;
        color: white;
    }

    .overlay .no {
        background: crimson;
        color: white;
    }

    /* Judul kiri atas */
    .title {
        position: absolute;
        top: 15px;
        left: 20px;
        color: white;
        font-size: 22px;
        font-weight: bold;
        text-shadow: 0px 0px 5px black;
    }

    /* Tombol hamburger */
    .hamburger {
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 24px;
        background: rgba(0, 0, 0, 0.6);
        border: none;
        color: white;
        padding: 8px 12px;
        border-radius: 5px;
        cursor: pointer;
    }

    /* Dropdown utama */
    .dropdown {
        position: absolute;
        top: 60px;
        right: 20px;
        background: rgba(0, 0, 0, 0.8);
        border-radius: 8px;
        display: none;
        flex-direction: column;
        min-width: 150px;
        padding: 10px;
        z-index: 1000;
    }

    .dropdown button {
        background: none;
        border: none;
        color: white;
        text-align: left;
        padding: 8px;
        cursor: pointer;
        font-size: 14px;
    }

    .dropdown button:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    /* Dropdown Share Sosmed */
    .share-dropdown {
        display: none;
        flex-direction: column;
        margin-left: 10px;
        margin-top: 5px;
        border-left: 2px solid rgba(255, 255, 255, 0.5);
        padding-left: 8px;
    }

    .share-dropdown a {
        color: white;
        text-decoration: none;
        font-size: 13px;
        padding: 4px 0;
        cursor: pointer;
    }

    .share-dropdown a:hover {
        text-decoration: underline;
    }


/* Menu kiri bawah */
.bottom-menu {
    position: absolute;
    bottom: 15px;
    left: 20px;
    display: flex;
    gap: 20px;
    background: rgba(0, 0, 0, 0.8); /* disamakan dengan dropdown kanan atas */
    padding: 8px 12px;              
    border-radius: 6px;             
}

.bottom-menu a {
    color: white;
    text-decoration: none;
    font-size: 10px;
    font-weight: bold;
    cursor: pointer;
}

.bottom-menu a:hover {
    text-decoration: underline;
}

/* Lingkaran utama menu */
.center-menu {
    position: absolute;
    top: 45%;
    left: 75%;
    transform: translate(-50%, -50%);
    width: 300px;   /* sesuaikan */
    height: 300px;
    border-radius: 50%;
    pointer-events: none;
}

/* Logo di tengah */
.center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-10%, -10%); /* kunci supaya pas tengah */
    width: 80px;   /* perbesar sedikit biar balance */
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0A3D91; /* biru pekat */
    border-radius: 50%;
    pointer-events: auto;
    z-index: 2;
    box-shadow: 0 0 20px rgba(0,0,0,0.5); /* biar lebih rapi */
}

/* Logo image di dalam */
.center-logo img {
    width: 80%;   /* biar tidak mepet lingkaran */
    height: 80%;
    object-fit: contain;
    border-radius: 50%;
}


/* Menu-item tersusun melingkar */
.menu-item {
    --total: 7; /* jumlah menu */
    position: absolute;
    top: 50%;
    left: 50%;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    transform: rotate(calc(360deg / var(--total) * var(--i))) 
               translate(120px)   /* jarak menu dari logo */
               rotate(calc(-360deg / var(--total) * var(--i)));
}

.menu-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Hover ala purnama */
.menu-item:hover {
    transform: scale(1.15) rotate(calc(360deg / var(--total) * var(--i))) 
               translate(120px) 
               rotate(calc(-360deg / var(--total) * var(--i)));
    box-shadow: 0 0 20px 8px rgba(255, 255, 200, 0.8);
}

