.hero {
  height: 220px;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 20px;
}

.hero-img {
  width: 100%;
  height: 100%;
  background: var(--bg-image) center/cover;
}

/* TEXT */
h1 {
  font-size: 24px;
  margin-bottom: 10px;
}

.sub {
  font-size: 13px;
  opacity: 0.75;
  margin-bottom: 22px;
  line-height: 1.5;
}

/* BUTTON */
.btn {
  display: block;
  padding: 14px;
  border-radius: 14px;
  margin-bottom: 12px;
  text-align: center;
  text-decoration: none;
  color: white;

  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);

  transition: all 0.25s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
  background: rgba(255,255,255,0.15);
}

.btn:active {
  transform: scale(0.97);
}

.primary {
  background: linear-gradient(90deg, #ff7a18, #ff3d81);
  box-shadow: 0 8px 20px rgba(255,100,120,0.4);
}

/* DIVIDER */
.separator {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 15px 0;
}

/* SOCIAL */
.social {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* FOOTER */
.footer {
  margin-top: 15px;
  text-align: center;
  font-size: 11px;
  opacity: 0.7;
}

.creator {
  display: block;
  margin-top: 5px;
  text-decoration: none;
  color: white;
}
/* ===== ICON DI BUTTON ===== */
.btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 6px;
}
