/* Background penuh hitam + gambar */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif; 
  background: #000 url('background.jpg') no-repeat center center fixed;
  background-size: cover;
  color: white;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
}

/* Kotak utama semi transparan */
.container {
  background: rgba(0, 0, 0, 0.5);
  width: 90%;
  max-width: 400px;
  border-radius: 20px;
  margin-top: 40px;
  text-align: center;
  padding: 25px 20px 40px;
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.3);
}

/* Bagian profil */
.profile-section {
  margin-bottom: 30px;
}

.profile-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid #ff3b3b;
  object-fit: cover;
  margin-top: 10px;
}

.brand-name {
  font-size: 22px;
  font-weight: 700;
  margin: 15px 0 5px;
  text-transform: uppercase;
}

.description {
  font-size: 14px;
  color: #ddd;
  line-height: 1.5;
}

/* Tombol link */
.links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.link-btn {
  display: block;
  background: #e32727;        /* Warna merah solid */
  color: white;
  text-decoration: none;
  padding: 14px;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
  transition: all 0.25s ease;
}

.link-btn:hover {
  background: #ff4747;
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
} 

.footer {
  margin-top: 50px; /* tambahkan jarak dari tombol */
  font-size: 13px;
  color: #aaa;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}