body {
    font-family: "Poppins", sans-serif;
    background-color: #3b3f8c;
}

.app-wrapper {
    max-width: 430px;
    /* mobile width */
    margin: 0 auto;
    min-height: 100vh;
    background-color: #3b3f8c;
    border: 2px solid #5a5fff;
    box-shadow: 0 0 18px 0 rgba(90, 95, 255, 0.7);
    border-radius: 16px;
}

.hero-wrapper {
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    overflow: visible;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.hero-title {
    position: absolute;
    top: 40px;
    left: 20px;
    z-index: 2;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    font-weight: 500;
    font-size: 1.3rem;
    line-height: 1.3;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-logo {
    height: 100px;
    width: auto;
    margin-right: 0;
    /* pastikan mentok */
}

.menu-card {
    border-radius: 16px;
    padding: 18px 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
}

.menu-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.menu-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.icon-blue {
    background: #e8ecff;
    color: #3b3f8c;
}

.icon-orange {
    background: #fff2e5;
    color: #f2994a;
}

.icon-yellow {
    background: #fff8dd;
    color: #f2c94c;
}

.icon-green {
    background: #e9f7ef;
    color: #27ae60;
}

.arrow {
    font-size: 1.2rem;
    color: #999;
}

/* mobile responsive */
@media (max-width: 576px) {
    .app-wrapper {
        border: none;
        box-shadow: none;
        max-width: 100%;
    }
}
