@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@800&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Plus Jakarta Sans', sans-serif; }

body {
    background: #fff;
    background-image: radial-gradient(#000 0.5px, transparent 0.5px);
    background-size: 15px 15px;
    display: flex; justify-content: center; align-items: center;
    min-height: 100vh; padding: 20px;
}

.peranu-container {
    width: 100%; max-width: 360px;
    background: #fff;
    border: 4px solid #000;
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 12px 12px 0px #000;
    animation: bounceIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.brand-header { text-align: center; margin-bottom: 35px; }
.logo-box {
    background: #00ff88;
    color: #000;
    display: inline-block;
    padding: 8px 20px;
    border: 4px solid #000;
    font-size: 22px;
    transform: rotate(-3deg);
    box-shadow: 4px 4px 0px #000;
}
.sub-name { display: block; margin-top: 15px; font-size: 12px; letter-spacing: 2px; opacity: 0.5; }

.pay-list { display: flex; flex-direction: column; gap: 15px; }

.pay-item {
    background: #fff;
    border: 3px solid #000;
    border-radius: 15px;
    padding: 18px;
    display: flex; align-items: center; justify-content: space-between;
    cursor: pointer;
    transition: 0.2s;
}
.pay-item:hover { transform: translate(-4px, -4px); box-shadow: 6px 6px 0px #000; }
.pay-item:active { transform: translate(0, 0); box-shadow: 0px 0px 0px #000; }

.pay-item.qris { background: #ffff00; }

.info-grp { display: flex; align-items: center; gap: 12px; }
.info-grp img { height: 25px; width: auto; }
.info-grp span { font-size: 16px; color: #000; }

.modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.9);
    display: none; justify-content: center; align-items: center; z-index: 100;
    padding: 20px;
}
.modal-box {
    background: #fff; border: 4px solid #000; border-radius: 25px;
    padding: 25px; width: 100%; max-width: 320px; text-align: center;
    box-shadow: 10px 10px 0px #00ff88;
}
.modal-box img { width: 100%; border: 3px solid #000; border-radius: 15px; margin: 15px 0; }
.copy-area { 
    background: #f0f0f0; border: 3px dashed #000; padding: 15px; 
    font-size: 20px; margin: 10px 0; border-radius: 10px;
}
.btn-close {
    background: #000; color: #fff; border: none; width: 100%;
    padding: 15px; border-radius: 12px; font-weight: 800; cursor: pointer;
    margin-top: 10px;
}

@keyframes bounceIn {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}
