/* Variabel CSS untuk kemudahan perubahan warna */
:root {
    --bg-color: #363636;      /* Hitam */
    --text-color: #ffffff;    /* Putih */
    --highlight-color: #00ffee; /* Biru Laut (Dominan Kedua) */
    --button-bg: #222222;     /* Abu-abu Gelap untuk Tombol */
    --button-hover: #333333;
}

/* Reset Dasar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex; /* Untuk memusatkan container secara vertikal */
    justify-content: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 450px; /* Batasi lebar maksimal agar tidak terlalu lebar di desktop */
    text-align: center;
}

/* Area Profil */
.profile-section {
    margin-bottom: 30px;
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    /* Efek garis luar Biru Laut seperti glow tipis */
    border: 3px solid var(--highlight-color); 
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5); 
}

.store-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.motto {
    font-size: 0.9rem;
    color: var(--highlight-color);
    margin-bottom: 15px;
}

.quote {
    font-size: 0.95rem;
    color: #ffffff;
    margin-bottom: 40px;
    padding: 0 10px;
}

/* Area Tombol Link */
.link-section {
    display: flex;
    flex-direction: column;
    gap: 12px; /* Jarak antar tombol */
}

.link-button {
    display: block;
    width: 100%;
    padding: 15px 20px;
    background-color: var(--button-bg);
    color: var(--text-color);
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px; /* Sudut tombol lebih lembut */
    transition: background-color 0.3s, box-shadow 0.3s, border-color 0.3s;
    /* Garis tipis Biru Laut di sekeliling tombol */
    border: 1px solid rgba(0, 255, 255, 0.2); 
}

.link-button:hover {
    background-color: var(--button-hover);
    /* Efek glow Biru Laut saat di hover */
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.4); 
}

/* Gaya Tombol Utama/Khusus (Opsional) */
.main-link {
    margin-top: 10px;
    /* Sedikit berbeda untuk menonjolkan */
    background-color: var(--highlight-color); 
    color: var(--bg-color);
    border: none;
}

.main-link:hover {
    background-color: #33ffff;
    box-shadow: 0 0 15px var(--highlight-color);
}


/* Area Footer */
.footer {
    margin-top: 50px;
    font-size: 0.8rem;
    color: #aaaaaa;
}