/* ======================
   KOMEN SECTION
====================== */

.komen-wrapper{
    max-width:700px;
    margin:60px auto;
}

/* title */
.komen-title{
    color:#fff;
    margin-bottom:15px;
}

/* form */
.komen-box{
    background:#1e1e1e;
    padding:25px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.6);
    margin-bottom:30px;
}

.komen-nama,
.komen-text{
    width:95%;
    padding:14px;
    margin-bottom:15px;
    border-radius:8px;
    border:1px solid #333;
    background:#121212;
    color:#fff;
}

.komen-text{
    height:140px;
    resize:none;
}

.komen-btn{
    background:#4da3ff;
    border:none;
    color:#000;
    padding:12px 20px;
    border-radius:8px;
    cursor:pointer;
    font-weight:bold;
    transition:.3s;
}

.komen-btn:hover{
    transform:translateY(-2px);
}

/* list komentar */
.komen-item{
    background:#1e1e1e;
    padding:20px;
    border-radius:12px;
    margin-bottom:15px;
}

.komen-header{
    display:flex;
    justify-content:space-between;
    margin-bottom:10px;
    color:#aaa;
    font-size:13px;
}

.komen-item p{
    margin:0;
    line-height:1.6;
}
a {
  color: #666;
  text-decoration: underline;
  text-decoration-color: #ccc;
  text-underline-offset: 3px;
  transition: 0.2s;
}

a:hover {
  color: #333;              /* sedikit lebih gelap pas hover */
  text-decoration-color: #888;
}

