@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* --- Reset & Base --- */
* { box-sizing: border-box; margin: 0; padding: 0; outline: none; }
body {
    font-family: 'Inter', sans-serif;
    background-color: #f4f7f6;
    color: #1d1d1f;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

/* --- Container Utama (Layar HP) --- */
.container {
    width: 100%;
    max-width: 480px; /* Lebar maksimal seperti HP */
    background: #ffffff;
    min-height: 100vh;
    box-shadow: 0 0 25px rgba(0,0,0,0.05);
    position: relative;
    padding-bottom: 60px;
}

/* --- Cover & Profile --- */
.cover-container {
    width: 100%;
    height: 180px;
    background-color: #e2e8f0;
    overflow: hidden;
}
.cover-img { width: 100%; height: 100%; object-fit: cover; }

.profile-section {
    text-align: center;
    padding: 0 20px;
    margin-top: -60px; /* Overlap ke atas */
    position: relative;
}

.profile-wrapper {
    position: relative;
    display: inline-block;
}

.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 5px solid #ffffff;
    object-fit: cover;
    background: #ddd;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* --- Verified Badge --- */
.verified-badge {
    position: absolute;
    bottom: 10px;
    right: 5px;
    width: 28px;
    height: 28px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    font-size: 16px;
}

/* --- Typography --- */
h1 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 5px;
    color: #111;
}

.bio { font-size: 14px; color: #666; line-height: 1.5; margin-bottom: 15px; padding: 0 10px; }
.location {
    font-size: 13px; color: #555;
    background: #f0f2f5; padding: 6px 12px;
    border-radius: 20px; display: inline-flex;
    align-items: center; gap: 5px; margin-bottom: 20px;
}

/* --- Social Media Row --- */
.social-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}
.social-icon {
    width: 42px; height: 42px;
    background: white;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: #333;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.social-icon:hover { transform: translateY(-3px); box-shadow: 0 5px 10px rgba(0,0,0,0.1); }
.social-icon.ig:hover { color: #E1306C; }
.social-icon.yt:hover { color: #FF0000; }
.social-icon.in:hover { color: #0077b5; }

/* --- Link Buttons --- */
.link-list { padding: 0 20px; display: flex; flex-direction: column; gap: 12px; }
.link-item {
    background: white;
    border: 1px solid #e5e7eb;
    padding: 16px 20px;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 15px;
    display: flex; justify-content: space-between; align-items: center;
    transition: all 0.2s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
}
.link-item:hover {
    border-color: #000;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.arrow { color: #ccc; }

/* --- Footer --- */
.footer { text-align: center; margin-top: 40px; font-size: 12px; color: #999; }