body {
  font-family: Arial, sans-serif;
  margin: 0;
  text-align: center;
  padding: 40px 20px;

  /* Gambar background */
  background: url("images/bgapps.jpg") no-repeat center center fixed;
  background-size: cover;
  position: relative;
}

/* Overlay gelap */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35); /* Atur kegelapan di sini */
  z-index: -1;
}

h1 {
  color: #ffffff;
  font-size: 28px;
  margin-bottom: 10px;
}
p {
  color: #ffffff;
  margin-bottom: 30px;
}
/* Kotak pencarian */
.search-box {
  display: flex;
  align-items: center;
  background: white;
  padding: 10px 15px;
  border-radius: 8px;
  width: 300px;
  margin: 0 auto 40px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.search-box input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 14px;
}
.search-box span {
  margin-right: 8px;
  font-size: 16px;
  color: #9ca3af;
}
/* Container link */
.link-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
/* Item link seperti kategori */
.link-item {
  background-color: white;
  padding: 20px 15px;
  border-radius: 12px;
  width: 100px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.link-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}
/* Hover: Glow biru redup + shadow natural */
.link-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1), 0 0 10px rgba(0, 123, 255, 0.35);
}
