* {
  user-select: none;
}


body {
  display: flex;
  flex-direction: column; /* susun gambar, teks, countdown ke bawah */
  justify-content: center; /* vertikal center */
  align-items: center;     /* horizontal center */
  height: 100vh;           /* full tinggi layar */
  margin: 0;
  font-family: Arial, sans-serif;
}

p {
  margin-top: 10px;
  font-size: 18px;
}

#countdown {
  margin-top: 10px;
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

/* ===== Halaman 2 ===== */
.page2 {
  display: flex !important;   /* override flex halaman 1 */
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f9f9f9;
}

.container {
  position: relative;
  width: 300px;
  height: 300px;
  margin-bottom: 20px;
}

.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.word {
  position: absolute;
}

.top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.bottom {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.left {
  left: -60px; /* geser lebih jauh ke kiri */
  top: 50%;
  transform: translateY(-50%);
}

.right {
  right: -60px; /* geser lebih jauh ke kanan */
  top: 50%;
  transform: translateY(-50%);
}

.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  gap: 40px;
}

.main-img {
  max-width: 300px;
  height: auto;
}

.side-btn {
  display: inline-block;
  text-decoration: none;  /* hilangin underline link */
  text-align: center;
  padding: 10px 30px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
  background: linear-gradient(to bottom, #0050aa 0%, #002f77 100%);
  border: 2px solid #ffffff;
  box-shadow: inset 0 0 5px rgba(255,255,255,0.4),
              2px 2px 5px rgba(0,0,0,0.4);
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.2s ease;
}

.side-btn:hover {
  background: linear-gradient(to bottom, #0066cc 0%, #003a88 100%);
  transform: translateY(-2px);
  box-shadow: inset 0 0 6px rgba(255,255,255,0.6),
              3px 3px 6px rgba(0,0,0,0.5);
}


