.clock {
    width: 96px; height: 96px;
    border: 6px solid #ffffff;
    border-radius: 50%;
    position: relative;
    background: #211a1d;
    margin: 0 auto;
    /* Membuat 12 penanda angka jam dengan gradient */
    background-image: repeating-conic-gradient(#fff 0deg 2deg, transparent 2deg 30deg);
}

.clock::before {
    content: ''; position: absolute;
    top: 8px; left: 8px; right: 8px; bottom: 8px;
    background: #211a1d; border-radius: 50%;
}

/* Styling Jarum Jam */
.hand { position: absolute; bottom: 50%; left: 50%; transform-origin: bottom; background: #fff; z-index: 1; border-radius: 5px; }
.hour { width: 4px; height: 30px; margin-left: -2px; }
.minute { width: 3px; height: 45px; margin-left: -1.5px; }
.second { width: 2px; height: 40px; margin-left: -1px; background: var(--mhu-magenta); }

.visitor-box {
    display: inline-block;
    padding: 10px 30px;
    background: #2a2a2a;
    color: white;
    border-radius: 50px;
    font-size: 1.2rem;
}