/* --- RESET & VARIABLES --- */
:root {
    --bg-container: #efefef; /* Warna background utama mobile sesuai instruksi */
    --bg-desktop: #e7e7e7; /* Warna background luar layar */
    
    /* Neumorphism Shadows disesuaikan untuk warna dasar #efefef */
    --shadow-light: #ffffff;
    --shadow-dark: #d5d5d5; 
    
    --text-primary: #5c5c5c;
    --text-secondary: #8c8c8c;
    --icon-color: #a8a8a8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

/* --- BACKGROUND DESKTOP --- */
body {
    background-color: var(--bg-desktop);
    display: flex;
    justify-content: center;
    align-items: center; /* Memastikan container di tengah layar jika dibuka di desktop */
    min-height: 100vh;
}

/* --- MOBILE VIEW LOCK --- */
.mobile-container {
    width: 100%;
    max-width: 480px;
    min-height: 100vh;
    background-color: var(--bg-container);
    position: relative;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    overflow-x: hidden;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
}

/* --- NEUMORPHISM CLASSES --- */
.neumorph-card {
    background: var(--bg-container);
    box-shadow: 8px 8px 16px var(--shadow-dark), 
               -8px -8px 16px var(--shadow-light);
}

.neumorph-btn {
    background: var(--bg-container);
    border-radius: 20px;
    box-shadow: 7px 7px 14px var(--shadow-dark), 
               -7px -7px 14px var(--shadow-light);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.neumorph-btn:active {
    box-shadow: inset 5px 5px 10px var(--shadow-dark), 
                inset -5px -5px 10px var(--shadow-light);
    transform: scale(0.98);
}

/* --- HEADER --- */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}
.logo {
    height: 18px;
    object-fit: contain;
    filter: brightness(0) invert(30%); /* Membuat logo menjadi abu-abu gelap natural */
}
.official-text {
    font-size: 12px;
    color: var(--text-primary);
    font-weight: 500;
}

/* --- PROFILE SECTION --- */
.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
}
.profile-img-wrapper {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    padding: 5px; /* Bingkai Neumorphism */
    margin-bottom: 20px;
}
.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.brand-name {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 4px;
}
.brand-desc {
    font-size: 13px;
    color: var(--text-secondary);
    text-align: center;
}

/* --- ACTION LINKS SECTION --- */
.link-buttons {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    padding: 0 10px;
}
.link-btn {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    text-decoration: none;
}
.link-btn span {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Membungkus Icon agar terlihat lebih menyatu dengan gaya desain */
.icon-wrapper {
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}
.icon-wrapper i {
    font-size: 28px;
    color: var(--icon-color);
    /* Sedikit efek 3D shadow pada icon FontAwesome */
    text-shadow: 2px 2px 4px var(--shadow-dark), 
                -1px -1px 3px var(--shadow-light);
}


.footer-section {
    padding: 20px 20px;
    text-align: center;
    background-color: transparent;
}

.footer-label {
    font-size: 10px;
    letter-spacing: 1px;
    color: #999;
   /* text-transform: uppercase;*/
    margin-bottom: 4px;
}

.footer-credit {
    font-size: 10px;
    color: #bbb;
    letter-spacing: 0.5px;
}

.footer-credit a {
    color: #888;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: #333;
}

