*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: black;
    color: white;
    font-family: serif;
    margin-bottom: 10px;
    padding-bottom: 30px;
}

/* bikin tengah */
.wrapper{
    display: flex;
    justify-content: center;
}

/* container utama */
.box-content{
    background-color: black;
    width: 100%;
    max-width: 720px;
    padding: 30px;
}

.logo img{
    max-width: 700px;
    height: 80px;
    justify-content: left;
}

/* navbar */
.navbar ul{
    padding-bottom: 8px;
    border-bottom: 2px solid purple;
    display: flex;
    list-style: none;
    gap: 15px;
    margin-top: 10px;
}

.navbar a{
    color: purple;
    font-weight: bold;
    text-decoration: none;
}

.navbar a:hover{
    border-bottom: 2px solid purple;
}

/* layout utama */
.layout{
    display: flex;
    gap: 20px;
    margin-top: 20px;
    /* ini penting */
    flex-wrap: wrap;
}

p{
    font-size: 13px;
}

/* kiri */
.main-content{
    flex: 2;
    min-width: 300px;
}

/* kanan */
.sidebar{
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* status box */
.status{
    list-style-type: none;
}

.status ul{
    list-style-type: none;
    max-height: 120px;
    overflow-y: auto;
    padding-right: 5px;
}

.status li{
    margin-bottom: 5px;
    border-bottom: 1px solid white;
    padding-bottom: 5px;
    font-size: 13px;
}

/* updates */
.updates{
    margin-top: 20px;
}

.updates ul{
    max-height: 120px;
    overflow-y: auto;
    padding-left: 20px;
    margin-left: 0;
    list-style-type: circle;
}

.updates li{
    margin-bottom: 5px;
    font-size: 13px;
    text-decoration: underline;
}

.updates p{
    margin-bottom: 5px;
}
/* chatbox */
.chatbox{
    margin-top: 20px;
}

.chatbox iframe{
    width: 100%;
    height: 150px;
    border: none;
    display: block;
}

/* heading kecil */
h1{
    font-size: 20px;
}

h3{
    margin-bottom: 5px;
}

.my-button-share img{
    gap: 5px;
    margin-bottom: 3px;
}

.my-button-share textarea{
    width: 200px;
    height: 60px;
    background: black;
    color: white;
    border: 1px solid white;
    font-size: 12px;
    padding: 5px;
}

/* wrapper biar kepotong (viewport) */
.cool-sites-wrapper{
    overflow: hidden;
    width: 100%;
    margin-top: 10px;
}

/* track */
.cool-sites{
    display: flex;
    gap: 5px;
    width: max-content;
}

/* button */
.cool-sites img{
    display: block;
    transition: transform 0.2s ease;
}

.cool-sites img:hover{
    transform: scale(1.1);
}

/* biar ga turun ke bawah */
.cool-sites a{
    display: block;
    flex-shrink: 0;
}

.buttons-collection{
    margin-bottom: 20px;
    display: flex;
    gap: 5px;
    flex-wrap: wrap; /* biar kalau banyak turun */
    justify-content: center;
}

.buttons-collection img{
    display: block;
}

.stamps{
    margin-top: 10px;
    justify-content: center;
}

/* sticky footer */
.footer{
    margin: 0 auto;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: black;
    text-align: center;
    padding: 6px 0;
    font-size: 12px;
    opacity: 0.8;
    height: 30px;
}