/* --- IMPORT FONT PROFESIONAL --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Poppins:wght@400;600&display=swap');

/* --- DASAR WEBSITE --- */
body {
    background-color: #0f172a;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- HEADER DENGAN LOGO BULAT --- */
header {
    padding: 15px 20px;
    background-color: #1e293b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.logo-container {
    width: 45px;
    height: 45px;
    background-color: #facc15; 
    border-radius: 50%; /* Membuat logo bulat */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #facc15;
}

.logo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Foto kotak akan terpotong bulat dengan rapi */
}

/* --- KONTAINER --- */
.container {
    padding: 20px;
    max-width: 450px;
    margin: 0 auto;
    flex: 1;
}

/* --- CARD ARTIKEL --- */
.card {
    background: #1e293b;
    border-radius: 20px;
    padding: 15px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px); /* Efek melayang saat disentuh */
}

.thumb {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

/* --- BADGE KUNING DI TENGAH --- */
.badge-wrapper {
    text-align: center;
    margin-bottom: 10px;
}

.badge {
    background: #facc15;
    color: #000;
    padding: 6px 16px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif; /* Font tegas */
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    display: inline-block;
}

h3 {
    text-align: center;
    font-size: 19px;
    margin: 10px 0 20px 0;
    line-height: 1.4;
}

/* --- TOMBOL DOWNLOAD --- */
.description-box a {
    display: block;
    text-decoration: none;
    margin-bottom: 12px;
    padding: 14px;
    border-radius: 12px;
    font-size: 13px;
    transition: 0.3s;
    text-align: center;
    font-weight: 600;
}

.link-vip { background: #facc15; color: #000 !important; }
.link-main { color: #60a5fa; background: rgba(96, 165, 250, 0.1); border: 1px solid #60a5fa; }
.link-alt { color: #22c55e; background: rgba(34, 197, 94, 0.1); border: 1px solid #22c55e; }
.link-tutorial { background: #ef4444; color: #fff !important; }

.description-box a:hover { filter: brightness(1.2); }

/* --- NOTE BOX --- */
.note-box {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 12px;
    font-size: 12px;
    margin-top: 20px;
    border-left: 4px solid #facc15;
}

.divider { border: 0; border-top: 1px dashed #334155; margin: 25px 0; }

/* --- LINKTREE STYLE (VERSI LAIN) --- */
.linktree-item {
    display: block;
    background: #334155;
    color: #fff;
    text-decoration: none;
    padding: 14px;
    border-radius: 12px;
    margin-bottom: 10px;
    text-align: center;
    font-size: 14px;
}

/* --- FOOTER --- */
footer {
    text-align: center;
    padding: 30px 20px;
    background-color: #1e293b;
    margin-top: auto;
}

.wa-btn {
    background: #22c55e;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
}