body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #667eea, #764ba2);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #fff;
  margin: 0;
  padding: 0;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  padding: 20px;
}

header {
  text-align: center;
  margin-bottom: 20px;
}

.logo {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}

h1 {
  font-size: 2rem;
  color: #fff;
}

main {
  flex: 1; /* Main content area memanjang ke seluruh tinggi yang tersedia */
}

.links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.link-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  text-align: center;
  transition: background-color 0.3s ease;
}

.link-item:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.link-item img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.link-item span {
  font-size: 0.8rem;
  color: #fff;
}

.telegram-logo {
  width: 120px;
  height: auto;
  margin-right: 120px;
}

footer {
  text-align: center;
  color: #fff;
  font-size: 0.9rem;
  margin-top: 20px;
}