:root {
    /* Tema: Matcha Latte Premium */
    --bg-color: #d1fae5; 
    --card-bg: #ffffff; 
    --text-main: #064e3b; 
    --text-muted: #6b7280; 
    --accent: #10b981; 
    --shadow-color: rgba(6, 78, 59, 0.12); /* Bayangan hijau super halus */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 3rem 1.5rem;
    /* Pola titik halus di background */
    background-image: radial-gradient(var(--accent) 0.5px, transparent 0.5px);
    background-size: 25px 25px;
}

.mobile-container {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Area Profil */
.profile-section {
    text-align: center;
}

.avatar-container {
    margin-bottom: 0.8rem;
    display: flex;
    justify-content: center;
}

/* LOGO UKURAN KECIL (50px) */
.avatar-logo {
    width: 50px; 
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 12px var(--shadow-color);
    transition: transform 0.3s ease;
}

.avatar-container:hover .avatar-logo {
    transform: rotate(10deg) scale(1.1);
}

.profile-section h1 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    letter-spacing: -0.3px;
    color: var(--text-main);
}

.profile-section p {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 400;
}

/* Area Daftar Link */
.link-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Desain Kartu (High Premium, Borderless, Bouncy) */
.milkshake-card {
    background-color: var(--card-bg);
    padding: 1rem 1.2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 8px 20px var(--shadow-color);
    border: 2px solid transparent;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, border-color 0.3s ease;
}

.milkshake-card:hover {
    transform: scale(1.02) translateY(-4px);
    box-shadow: 0 12px 25px rgba(6, 78, 59, 0.2);
    border-color: var(--accent); /* Garis luar muncul perlahan saat di-hover */
}

/* Ikon di dalam Kartu */
.card-icon {
    width: 45px;
    height: 45px;
    background-color: var(--bg-color);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* Teks di dalam Kartu */
.card-text {
    display: flex;
    flex-direction: column;
}

.card-text h2 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
    color: var(--text-main);
}

.card-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
}