body {
    font-family: 'Poppins', sans-serif;
    background-color: #f3f4f6;
}

.pn-green {
    color: #004d00;
}

.card-shadow {
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Animasi klik */
.menu-card:active {
    transform: scale(0.98);
    background-color: #f0fdf4;
}

/* Emoji Button Style */
.emoji-btn {
    transition: transform 0.2s, filter 0.2s;
    filter: grayscale(100%);
    opacity: 0.6;
}

.emoji-btn:hover {
    transform: scale(1.2);
    filter: grayscale(0%);
    opacity: 1;
}

.emoji-btn.selected {
    transform: scale(1.4);
    filter: grayscale(0%);
    opacity: 1;
}

.popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup-content {
    background: #fff;
    padding: 20px;
    max-width: 500px;
    border-radius: 8px;
    text-align: center;
}

.popup-content button {
    margin-top: 15px;
    padding: 8px 16px;
    border: none;
    background: #1e40af;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.popup-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.btn-video {
    padding: 8px 16px;
    background: #16a34a;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
}

.btn-ok {
    padding: 8px 16px;
    background: #1e40af;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

