/* CONTENT 1 */
/* NOW HIRING GLOBALLY */
@keyframes slideDown {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.animate-slideDown {
  animation: slideDown 0.8s ease-out forwards;
}

/* BUILD THE DARK PINO EMPIRE. */
@keyframes slideInLeft {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.animate-slideInLeft {
  animation: slideInLeft 0.8s ease-out forwards;
}

/* We're expanding across every continent. Territory Managers are the engine
   of that growth — entrepreneurial operators who own their market, drive
   restaurant partnerships, and earn on every deal they close. */
@keyframes slideUpFade {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.animate-slideUpFade {
  animation: slideUpFade 0.8s ease-out forwards;
}

/* CONTINENTS, TERRITORY UPSIDE, TOKEN COMPENSATION */
@keyframes slideUpFade {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.animate-slideUpFade {
  animation: slideUpFade 0.8s ease-out forwards;
}

.card:nth-child(1) {
  animation-delay: 0s;
}

.card:nth-child(2) {
  animation-delay: 0.2s;
}

.card:nth-child(3) {
  animation-delay: 0.4s;
}

/* CONTENT 2 */
/* OPEN TERRITORIES — SELECT YOUR REGION */
@keyframes slideDownFade {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.animate-slideDownFade {
  animation: slideDownFade 0.8s ease-out forwards;
}

/* Animasi gambar peta */
@keyframes slideInLeftFade {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.animate-slideInLeftFade {
  animation: slideInLeftFade 0.8s ease-out forwards;
  opacity: 0;
}

/* Negara */
.region-btn[data-zoom] {
  opacity: 0;
  transform: scale(0.6);
  transition:
    transform 0.5s ease-out,
    opacity 0.5s ease-out;
}

.region-btn[data-zoom].visible {
  opacity: 1;
  transform: scale(1);
}

/* animasi all negara */
.region-btn {
  font-size: 12px;
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid #d4a24b;
  color: black;
  background: linear-gradient(135deg, #f6d28b, #d4a24b, #8c5a1c);
  transition: all 0.3s ease;
  white-space: nowrap;
  flex: 1;
  text-align: center;
}

.region-btn:hover {
  background: linear-gradient(135deg, #fff3c4, #e0b84f, #a6782a);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 162, 75, 0.4);
}

@media (min-width: 1280px) {
  .region-btn {
    font-size: 13px;
    padding: 10px 18px;
  }
}

.region-btn:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.country-card {
  background: #0f1520;
  border: 1px solid #2c2f36;
  border-radius: 12px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.25s;
}

.flag {
  width: 30px;
  height: 20px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
}

.status-hiring {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  position: relative;
  padding-left: 18px;
}

.status-hiring::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 6px #22c55e;
  animation: blink 1.2s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }

  50% {
    opacity: 0.3;
    transform: translateY(-50%) scale(0.8);
  }
}

.status-soon {
  background: rgba(150, 150, 150, 0.15);
  color: #aaa;
}

@media (max-width: 640px) {
  .country-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* CONTENT 3 */
/* Territory Manager */
[data-scroll-slide-left] {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
}

[data-scroll-slide-left].visible {
  opacity: 1;
  transform: translateX(0);
}

/* What You'll Do, What You Bring */
[data-scroll-slide] {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease-out;
}

[data-scroll-slide].visible {
  opacity: 1;
  transform: translateX(0);
}
