body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:#f2f2f2;
}

h2{
  text-align:center;
  font-size:1.6rem;
  margin-bottom:25px;
}

/* ================= HAMBURGER ================= */
.menu-btn{
  width:35px;
  height:25px;
  position:fixed;
  top:15px;
  left:15px;
  cursor:pointer;
  z-index:1001;
}

.menu-btn span{
  display:block;
  height:4px;
  width:100%;
  background:#111;
  margin:5px 0;
  transition:0.3s;
  border-radius:2px;
}

.menu-btn.active span:nth-child(1){
  transform:rotate(45deg) translate(6px,6px);
}
.menu-btn.active span:nth-child(2){
  opacity:0;
}
.menu-btn.active span:nth-child(3){
  transform:rotate(-45deg) translate(7px,-7px);
}

/* ================= OVERLAY ================= */
.overlay{
  position:fixed;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.3);
  top:0;
  left:0;
  display:none;
  z-index:999;
}

/* ================= SIDE MENU ================= */
.side-menu{
  position:fixed;
  top:0;
  left:-250px;
  width:250px;
  height:100%;
  background:#fff;
  box-shadow:2px 0 8px rgba(0,0,0,0.2);
  transition:left 0.3s ease;
  padding-top:70px;
  z-index:1000;
}

.side-menu.active{
  left:0;
}

.side-menu a{
  display:block;
  padding:12px 20px;
  text-decoration:none;
  color:#333;
  border-bottom:1px solid #eee;
}

.side-menu a:hover{
  background:#f2f2f2;
}

/* ================= DASHBOARD ================= */
.dashboard{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  padding:12px;
}

@media(min-width:768px){
  .dashboard{
    grid-template-columns:repeat(4,1fr);
  }
}

.post{
  background:#fff;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 2px 5px rgba(0,0,0,0.1);
}

.post img{
  width:100%;
  height:130px;
  object-fit:cover;
}

.content{
  padding:10px;
}

.title{
  font-size:14px;
  font-weight:bold;
  margin-bottom:8px;
  color:#222;
  text-decoration:none;
}

.link{
  text-decoration:none;
  color:inherit;
}

/* ================= LIKE BUTTON ================= */
.like-btn{
  border:none;
  padding:6px 12px;
  border-radius:20px;
  cursor:pointer;
  background:#eee;
  font-weight:bold;
  display:flex;
  align-items:center;
  gap:6px;
  transition:0.3s;
}

.like-btn i{
  font-size:16px;
  transition:0.3s;
}

.like-btn.liked{
  background:#ffe5e8;
  color:#ff3b5c;
}

.like-btn.liked i{
  color:#ff3b5c;
  transform:scale(1.2);
}