* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Inter', sans-serif;

    /* Ganti background.jpg dengan nama file gambar latar belakangmu */
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
}

/* Wadah Utama */
.container {
    width: 100%;
    max-width: 480px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Container Bulat Logo */
.profile-logo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 3px solid #1f2937;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    

    overflow: hidden; 
    position: relative;
}


.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

/* Judul & Subtitle */
.title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: #1f2937;
    margin-bottom: 6px;
}

.subtitle {
    font-size: 15px;
    color: #374151;
    margin-bottom: 30px;
}

/* Container Card Link */
.links-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Efek Glassmorphism Kartu */
.glass-card {
    display: flex;
    align-items: center;
    padding: 14px 24px;
    border-radius: 18px;
    text-decoration: none;

    /* Kunci Efek Kaca Buram */
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.65);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Icon & Teks di dalam Kartu */
.icon {
    font-size: 22px;
    color: #1f2937;
    width: 35px;
    text-align: left;
}

.text-group {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-left: 10px;
}

.card-title {
    font-weight: 600;
    font-size: 16px;
    color: #111827;
}

.card-subtitle {
    font-size: 13px;
    color: #4b5563;
    margin-top: 2px;
}