/* ========== RESET & GLOBAL ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: radial-gradient(circle at 30% 10%, #0a0c12, #030507);
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1.5rem;
}

/* container utama – card gelap dengan sentuhan glow */
.glass-container {
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
    background: rgba(10, 14, 23, 0.65);
    backdrop-filter: blur(3px);
    border-radius: 3rem;
    padding: 2rem 2rem 2rem 2rem;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(75, 130, 255, 0.15);
    transition: all 0.2s ease;
}

/* ========== BAGIAN ATAS (PROFIL + TEKS) ========== */
.profile-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

/* efek lingkaran dengan cahaya luar (glow) */
.avatar-glow {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, #b873ff, #3b82f6, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.6), 0 0 8px rgba(184, 115, 255, 0.8);
}

.avatar-glow img {
    width: 102px;
    height: 102px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: #0f1119;
    display: block;
}

/* nama utama dengan teks menyala */
.brand-name {
    font-size: 1.9rem;
    font-weight: 800;
    background: linear-gradient(120deg, #FFFFFF, #c0b7ff, #8fbbff);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
    text-shadow: 0 0 6px rgba(80, 140, 255, 0.5);
    margin-top: 0.25rem;
    text-align: center;
}

.subhead {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    font-weight: 500;
    color: #9ca3db;
    background: rgba(255,255,255,0.03);
    padding: 0.3rem 1rem;
    border-radius: 40px;
    backdrop-filter: blur(2px);
    margin-top: 0.5rem;
    border: 0.5px solid rgba(120, 150, 255, 0.3);
    display: inline-block;
}

/* ========== DAFTAR TOMBOL ========== */
.links-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0 1.8rem;
}

/* tombol persegi panjang sudut membulat, border terang, efek hover */
.tombol-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(12, 16, 28, 0.7);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(70, 130, 255, 0.55);
    border-radius: 60px;
    padding: 0.85rem 1.5rem;
    text-decoration: none;
    transition: all 0.25s ease-in-out;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    cursor: pointer;
}

.tombol-link:hover {
    background: rgba(30, 40, 70, 0.8);
    border-color: #5f8eff;
    transform: scale(1.01);
    box-shadow: 0 0 12px rgba(80, 140, 255, 0.3);
}

/* sisi kiri: ikon + teks */
.tombol-kiri {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon-box {
    font-size: 1.6rem;
    width: 44px;
    text-align: center;
    color: #b9cdff;
    filter: drop-shadow(0 0 2px #3b82f6);
    display: flex;
    align-items: center;
    gap: 5px;
}

.tombol-teks {
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.3px;
    color: #f0f3ff;
}

/* panah keluar di sisi kanan */
.panah-icon {
    font-size: 1rem;
    color: #98b1ff;
    transition: transform 0.2s;
}

.tombol-link:hover .panah-icon {
    transform: translateX(3px);
    color: white;
}

/* ========== BAGIAN BAWAH (HAK CIPTA) ========== */
.footer-copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 0.7rem;
    border-top: 1px solid rgba(90, 130, 230, 0.25);
    font-size: 0.7rem;
    color: #7083a5;
    letter-spacing: 0.4px;
    font-weight: 400;
}

.footer-copyright p {
    opacity: 0.75;
}

/* penyesuaian untuk layar kecil */
@media (max-width: 480px) {
    .glass-container {
        padding: 1.5rem 1.3rem;
    }
    .tombol-teks {
        font-size: 0.85rem;
    }
    .icon-box {
        font-size: 1.4rem;
        width: 38px;
    }
    .brand-name {
        font-size: 1.6rem;
    }
    .avatar-glow {
        width: 95px;
        height: 95px;
    }
    .avatar-glow img {
        width: 87px;
        height: 87px;
    }
    .tombol-link {
        padding: 0.7rem 1.2rem;
    }
}