* {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  margin: 0;
  padding: 0;
  background: url("../bg/bg.jpg") no-repeat center center fixed;
  background-size: cover;
  color: #fff;

  display: flex;
  flex-direction: column;
  align-items: center;
}

/* RUNNING TEXT */
.running-text {
    background: #2f3b4a;   /* biru abu-abu */
    color: #ff0000;        /* merah */
    padding: 10px;
    font-weight: 900;      /* super tebal */
    text-align: center;
}

.logo {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin: 20px 0;
}

.logo img {
    display: block;
    margin: 0 auto;
}

/* TITLE */
.title {
  text-align: center;
  margin-bottom: 30px;
}

/* ADMIN CARD */
.admin-card {
  background: rgba(0,0,0,0.6);
  max-width: 420px;
  margin: 20px auto;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
}

.admin-photo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #00ffd5;
  margin-bottom: 10px;
}

/* WHATSAPP BUTTON */
.wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    background: linear-gradient(135deg, #25d366, #1ebc5a);
    color: #ffffff;
    text-decoration: none;

    padding: 13px 18px;
    border-radius: 30px;
    margin: 10px auto;

    font-weight: bold;
    width: 100%;
    max-width: 420px;

    transition: all 0.3s ease;
}

.wa-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.wa-btn img {
    width: 22px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  color: #ccc;
}

.logo {
  width: 100%;
  display: flex;
  justify-content: center;
}

.logo img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.benefit-text {
  text-align: center;
  max-width: 900px;
  margin: 25px auto;
  padding: 0 15px;
}

/* Judul manfaat */
.benefit-title {
  font-size: 20px;
  font-weight: bold;
  color: #00ffd5;
  margin-bottom: 10px;
  animation: glow 3s ease-in-out infinite;
}

/* Deskripsi */
.benefit-desc {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
  animation: floatText 4s ease-in-out infinite;
}

/* Tanda & */
.benefit-and {
  font-size: 22px;
  font-weight: bold;
  margin: 5px 0;
  animation: pulse 2.5s infinite;
}

/* Warning */
.benefit-warning {
  font-size: 14px;
  font-weight: bold;
  color: #ffcc00;
  line-height: 1.6;
  animation: fadeInOut 5s ease-in-out infinite;
}

/* ANIMASI HALUS (BUKAN RUNNING TEXT) */
@keyframes floatText {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

@keyframes glow {
  0% { text-shadow: 0 0 5px #00ffd5; }
  50% { text-shadow: 0 0 15px #00ffd5; }
  100% { text-shadow: 0 0 5px #00ffd5; }
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}

@keyframes fadeInOut {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}

.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

@media (max-width: 768px) {
  .logo-box h1 {
    font-size: 20px;       /* supaya muat */
    line-height: 1.4;      /* biar tidak saling tindih */
    padding: 0 15px;       /* biar tidak kepotong kiri kanan */
    text-align: center;
    word-break: break-word;
  }
}

/* FIX PUTIH DI MOBILE */
html, body {
  background-color: #000;
  min-height: 100%;
}

/* MATIKAN GESER KIRI KANAN DI MOBILE */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* ===== KUNCI SCROLL HORIZONTAL (MOBILE & DESKTOP) ===== */
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* CEGAH ELEMEN MELEBIHI LAYAR */
* {
    max-width: 100%;
}
