/* --- RESET & VARIABLES --- */
:root {
    --bg-container: #efefef; 
    --bg-desktop: #e7e7e7; 
    
    /* Neumorphism Shadows */
    --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; 
    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: 25px; /* Dibuat sedikit lebih membulat untuk tombol kotak */
    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: 40px;
}
.logo {
    height: 18px;
    object-fit: contain;
    filter: brightness(0) invert(30%); 
}
.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; 
    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 (GRID 2x2) --- */
.link-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
    padding: 0 15px;
    margin-bottom: auto; /* Mendorong footer ke bawah */
}
.link-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1; /* Membuat tombol berbentuk kotak sempurna */
    text-decoration: none;
}
.link-btn span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

/* --- ICON WRAPPER RE-STYLING --- */
.icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px; /* Jarak antara ikon dan teks */
}
.icon-wrapper i {
    font-size: 42px; /* Ukuran ikon diperbesar untuk grid */
    color: var(--icon-color);
    text-shadow: 2px 2px 4px var(--shadow-dark), 
                -1px -1px 3px var(--shadow-light);
}

/* --- FOOTER --- */
.footer-section {
    padding: 30px 20px 10px;
    text-align: center;
    background-color: transparent;
}

.footer-label {
    font-size: 10px;
    letter-spacing: 1px;
    color: #999;
    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: #5c5c5c;
}