body {
    background: #F6FAF8;
    font-family: 'Segoe UI', sans-serif;
}

/* HEADER */
.header {
    background: linear-gradient(135deg, #6FCF97, #56CCF2);
    padding: 25px 20px;
    color: white;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.subtext {
    font-size: 12px;
    opacity: 0.8;
}

/* CARD */
.card-pro {
    background: white;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.card-pro:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

/* PROFILE */
.profile img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #E8F5E9;
    transition: 0.3s;
}

.profile img:hover {
    transform: scale(1.1);
}

/* HEIGHT */
.height-box {
    text-align: center;
}

.height-value {
    font-size: 42px;
    font-weight: bold;
}

/* PROGRESS */
.progress {
    height: 8px;
    border-radius: 10px;
}

/* NAVBAR */
.bottom-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: white;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.08);
}

.nav-item {
    text-align: center;
    font-size: 12px;
    color: #aaa;
    cursor: pointer;
    transition: 0.2s;
}

.nav-item:hover {
    color: #6FCF97;
    transform: scale(1.1);
}

.nav-item.active {
    color: #6FCF97;
    transform: scale(1.1);
}

/* SAFE AREA */
.safe {
    height: 80px;
}

/* MENU BUTTON */
.menu-btn {
    background: white;
    border-radius: 18px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
    cursor: pointer;
}

.menu-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.08);
}

.menu-btn.active {
    background: linear-gradient(135deg, #00C853, #69F0AE) !important;
    color: white;
    transform: scale(0.95);
    box-shadow: 0 5px 20px rgba(0,200,83,0.4);
}

/* WARNA */
.gizi-a {
    background: linear-gradient(135deg, #6FCF97, #A8E6CF);
    color: white;
}

.gizi-b {
    background: linear-gradient(135deg, #56CCF2, #7F7FD5);
    color: white;
}

/* BUTTON */
.btn-success {
    background: linear-gradient(135deg, #27AE60, #6FCF97);
    border: none;
    border-radius: 12px;
    transition: 0.3s;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}