:root {
    /* Palet Warna - Ganti di sini kalo mau ubah tema */
    --bg-color: #fce4ec;       /* Background halaman (Pink muda) */
    --card-bg: #ffffff;        /* Warna kartu */
    --text-main: #4a4a4a;      /* Warna teks utama */
    --accent: #f06292;         /* Warna aksen (Pink tua) */
    --accent-hover: #ec407a;   /* Warna tombol pas di-hover */
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Quicksand', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}

/* Kotak Utama (Card) */
.container {
    background-color: var(--card-bg);
    width: 100%;
    max-width: 400px; /* Biar kayak tampilan HP */
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px var(--shadow);
    text-align: center;
    border: 2px solid #fff;
}

/* Foto Profil */
.profile-section {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--bg-color);
}

.status-bubble {
    position: absolute;
    bottom: 5px;
    right: -10px;
    background: var(--accent);
    color: white;
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 15px;
    font-weight: bold;
    transform: rotate(-5deg);
}

/* Typography */
h1 { font-size: 1.5rem; margin-bottom: 5px; color: var(--accent); }
h2 { font-size: 1.2rem; margin-top: 0; font-weight: 600; }
.bio { font-size: 0.95rem; line-height: 1.6; color: #666; }
.highlight { color: var(--accent); font-weight: bold; }

hr {
    border: 0;
    height: 1px;
    background: #eee;
    margin: 25px 0;
}

/* Skills Tags */
.tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.tags span {
    background: #f8f9fa;
    border: 1px solid #eee;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #555;
}

/* List Favorites */
.likes-list {
    list-style: none;
    padding: 0;
    font-size: 0.9rem;
}
.likes-list li { margin-bottom: 5px; }

/* Tombol */
.links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
}

.button-link {
    display: block;
    background-color: var(--accent);
    color: white;
    padding: 12px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, background 0.2s;
}

.button-link:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.button-link.secondary {
    background-color: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.button-link.secondary:hover {
    background-color: var(--accent);
    color: white;
}

footer {
    margin-top: 30px;
    font-size: 0.75rem;
    color: #999;
}

footer a { color: var(--accent); text-decoration: none; }