body{font-family:Arial;background:#0b1220;color:#fff;padding:20px}
/* HEADER TRANSPARAN */
/* ===== HEADER (SAMA SEPERTI HOMEPAGE) ===== */
.site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    background:rgba(15,23,42,0.4);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.header-container{
    max-width:1200px;
    margin:auto;
    padding:15px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo-brand{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
}

.logo-brand img{
    width:42px;
    height:42px;
    border-radius:50%;
}

.logo-brand span{
    color:white;
    font-size:1.2rem;
    font-weight:700;
}

/* VIDEO LOGO */
.logo-video{
    width:48px;
    height:48px;
    object-fit:cover;
    border-radius:50%;
    margin-left:6px;
    box-shadow:0 0 10px rgba(96,165,250,0.4);
}

/* HAMBURGER */
.dropdown{
    position:relative;
}

.menu-btn{
    background:none;
    border:none;
    color:white;
    font-size:28px;
    cursor:pointer;
}
.dropdown-content{
    display:none;
    position:absolute;
    right:0;
    top:40px;
    min-width:220px;
    background:#0f172a;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.4);
}

.dropdown-content.show{
    display:block;
}

.dropdown-content a{
    display:flex;
    align-items:center;
    justify-content:center;   /* 🔥 tengah horizontal */
    text-align:center;
    
    padding:14px 15px;
    color:white;
    text-decoration:none;

    font-weight:700;          /* 🔥 lebih tebal */
    font-size:14px;
    letter-spacing:0.3px;
    transition:0.2s;
}

.dropdown-content a:hover{
    background:#1e293b;
    color:#60a5fa;
}

body{
    padding-top:90px;
}
.container{max-width:900px;margin:auto}
.card{background:rgba(255,255,255,0.05);padding:30px;border-radius:15px}
a{color:#60a5fa;text-decoration:none}

img{
    width:100%;
    max-width:500px;
    display:block;
    margin:15px auto;
    border-radius:12px;
}

h1,h2{color:#fff}
p,li{line-height:1.7}
.breadcrumb{
    max-width:1100px;
    margin:20px auto;
    padding:0 20px;
    font-size:14px;
    color:#94a3b8;
}

.breadcrumb a{
    color:#60a5fa;
    text-decoration:none;
}

.breadcrumb a:hover{
    text-decoration:underline;
}

.breadcrumb span{
    margin:0 5px;
}
