body, html 
{
    margin          : 0;
    padding         : 0;
    font-family     : 'Roboto', sans-serif;
    background      : #f9f9f9;
    color           : #333;
}

.konten_container 
{
    max-width       : 800px;
    margin          : 0 auto;
    padding         : 16px;
    background      : #fff;
    border-radius   : 8px;
    box-shadow      : 0 2px 8px rgba(0,0,0,0.1);
}

.konten_header h1 
{
    font-size       : 24px;
    color           : darkblue;
    margin-bottom   : 8px;
    text-align      : center;
}

.konten_meta 
{
    display         : flex;
    justify-content : space-between;
    font-size       : 12px;
    color           : gray;
    margin-bottom   : 12px;
}

.konten_meta img
{
    width           :20px;
    height          : 15px;
}

/* ===== MEDIA UMUM ===== */
.konten_media {
    margin: 16px 0;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

/* ===== GAMBAR ===== */
.konten_gambar img {
    width: 100%;
    height: 50%;
    display: block;
    border-radius: 8px;
    background: white;
}

/* ===== VIDEO YOUTUBE ===== */
.konten_video {
    background: #000;
}

/* Rasio 16:9 + tinggi lebih enak dilihat */
.video_wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
}

/* Iframe full */
.video_wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.konten_isi 
{
    font-size       : 18px;
    line-height     : 1.6;
    margin-bottom   : 16px;
}

.konten_komentar h3 
{
    font-size       : 16px;
    margin-bottom   : 8px;
}

.konten_komentar textarea 
{
    width           : 100%;
    height          : 80px;
    padding         : 8px;
    border-radius   : 6px;
    border          : 1px solid #ccc;
    resize          : none;
    font-size       : 14px;
}

.kontrol_komentar 
{
    display         : flex;
    justify-content : space-between;
    margin-top      : 4px;
    font-size       : 12px;
    color           : #555;
}

.kontrol_komentar button 
{
    background      : #0d6efd;
    color           : #fff;
    border          : none;
    border-radius   : 4px;
    padding         : 4px 12px;
    cursor          : pointer;
}

.daftar_komentar 
{
    margin-top      : 12px;
}

.komentar_item 
{
    background      : #f1f1f1;
    padding         : 8px;
    border-radius   : 6px;
    margin-bottom   : 8px;
}

.komentar_header 
{
    font-size       : 12px;
    font-weight     : bold;
    margin-bottom   : 4px;
}

.komentar_isi
{
    font-size       : 14px;
    line-height     : 1.4;
}

/* MOBILE */
@media (max-width: 768px)
{
    .konten_container 
    {
        padding     : 12px;
    }
    .konten_header h1 
    {
        font-size   : 20px;
    }
    .konten_isi 
    {
        font-size   : 18px;
    }
    
    
    
}
.btn_kembali_floating {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #0d6efd;
    color: #fff;
    padding: 10px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    box-shadow: 0 6px 16px rgba(0,0,0,.25);
    z-index: 999;
}

.btn_kembali_floating:hover {
    background: #084298;
}

