
/* === TOMBOL YANG SELALU ADA === */
.btn-gambar {
  width: 200px;     /* ukuran gambar tombol */
  cursor: pointer; /* jadi tangan saat hover */
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  transition: .2s;
  top: 500px;
}

.btn-gambar:hover {
  transform: scale(1);
}

.hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s ease;
}

.show {
  opacity: 1;
  pointer-events: auto;
}






* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  @font-face {
    font-family: "apple";
    src: url("Apple.otf") format("truetype");
  }
}
@font-face {
  font-family: "fantasy1";
  src: url("Fantasy Script.otf") format("truetype");
}

@font-face {
  font-family: "cinzeldecorative";
  src: url("CinzelDecorative-Bold.ttf") format("truetype");
}
.intro-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Garis cermin di tengah */
.mirror-line {
  position: absolute;
  width: 2px;
  height: 80%;
  background: rgba(255, 255, 255, 0.3);
  animation: fadeIn 1.5s ease-in-out;
}

/* Maskot */
.maskot {
  position: absolute;
  width: 250px;
  opacity: 0;
  transform: scale(0.9);
  z-index: 2;
}

.maskot-left {
  left: 10%;
  animation: slideInLeft 1s ease forwards;
}

.maskot-right {
  right: 10%;
  animation: slideInRight 1s ease forwards;
  animation-delay: 1s;
}

/* Logo di tengah */
.logo img {
  position: absolute;
  top: 27%;
  right: 390px;
  width: 220px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  z-index: 999;
  animation: logoReveal 1s ease forwards;
  animation-delay: 2s;
}

/* Teks bawah */
.intro-text {
  position: absolute;
  bottom: 80px;
  color: white;
  font-size: 1.5rem;
  opacity: 0;
  animation: fadeInText 1s ease forwards;
  animation-delay: 2s;
}

/* Animations */
@keyframes slideInLeft {
  from {
    transform: translateX(-150px) scale(0.9);
    opacity: 0;
  }
  to {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(150px) scale(0.9);
    opacity: 0;
  }
  to {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}

@keyframes logoReveal {
  0% {
    opacity: 0;
    transform: scale(0.5);
    filter: blur(10px);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
    filter: blur(3px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

@keyframes fadeInText {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ===== LAYER ASAP ===== */
.smoke-screen {
  position: fixed;
  inset: 0;
  /* Fantasy Mist Background */

  background: black;
  backdrop-filter: blur(40px);
  overflow: hidden;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeOutSmoke 5s ease 3s forwards; /* hilang setelah 6 detik */
}

/* ===== ASAP PUTIH KEABU ===== */
.smoke {
  position: absolute;
  bottom: -200px;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(255, 0, 200, 0.8),
    rgba(82, 151, 255, 0.1) 70%
  );
  border-radius: 50%;
  opacity: 0;
  animation: puff 4s ease-in-out infinite;
  filter: blur(80px);
}

/* ===== SEBAR ASAP KE SELURUH LAYAR ===== */
.smoke:nth-child(1) {
  left: 3%;
  animation-delay: 0s;
}
.smoke:nth-child(2) {
  left: 8%;
  animation-delay: 0.3s;
}
.smoke:nth-child(3) {
  left: 13%;
  animation-delay: 0.6s;
}
.smoke:nth-child(4) {
  left: 18%;
  animation-delay: 0.9s;
}
.smoke:nth-child(5) {
  left: 23%;
  animation-delay: 1.2s;
}
.smoke:nth-child(6) {
  left: 28%;
  animation-delay: 1.5s;
}
.smoke:nth-child(7) {
  left: 33%;
  animation-delay: 1.8s;
}
.smoke:nth-child(8) {
  left: 38%;
  animation-delay: 2.1s;
}
.smoke:nth-child(9) {
  left: 43%;
  animation-delay: 2.4s;
}
.smoke:nth-child(10) {
  left: 48%;
  animation-delay: 2.7s;
}
.smoke:nth-child(11) {
  left: 53%;
  animation-delay: 3s;
}
.smoke:nth-child(12) {
  left: 58%;
  animation-delay: 3.3s;
}
.smoke:nth-child(13) {
  left: 63%;
  animation-delay: 3.6s;
}
.smoke:nth-child(14) {
  left: 68%;
  animation-delay: 3.9s;
}
.smoke:nth-child(15) {
  left: 73%;
  animation-delay: 4.2s;
}
.smoke:nth-child(16) {
  left: 78%;
  animation-delay: 4.5s;
}
.smoke:nth-child(17) {
  left: 83%;
  animation-delay: 4.8s;
}
.smoke:nth-child(18) {
  left: 88%;
  animation-delay: 5.1s;
}
.smoke:nth-child(19) {
  left: 93%;
  animation-delay: 5.4s;
}
.smoke:nth-child(20) {
  left: 97%;
  animation-delay: 5.7s;
}
/* sedikit acak biar nggak sejajar */
.smoke:nth-child(21) {
  left: 10%;
  animation-delay: 1s;
  top: 100px;
}
.smoke:nth-child(22) {
  left: 25%;
  animation-delay: 2s;
  top: 150px;
}
.smoke:nth-child(23) {
  left: 40%;
  animation-delay: 3s;
  top: 80px;
}
.smoke:nth-child(24) {
  left: 55%;
  animation-delay: 4s;
  top: 120px;
}
.smoke:nth-child(25) {
  left: 70%;
  animation-delay: 5s;
  top: 160px;
}
.smoke:nth-child(26) {
  left: 85%;
  animation-delay: 2.5s;
  top: 60px;
}
.smoke:nth-child(27) {
  left: 15%;
  animation-delay: 3.5s;
  top: 100px;
}
.smoke:nth-child(28) {
  left: 50%;
  animation-delay: 1.5s;
  top: 200px;
}
.smoke:nth-child(29) {
  left: 65%;
  animation-delay: 0.5s;
  top: 180px;
}
.smoke:nth-child(30) {
  left: 90%;
  animation-delay: 2.8s;
  top: 140px;
}

/* ===== GERAK ASAP ===== */
@keyframes puff {
  0% {
    transform: scale(0.4) translateY(0);
    opacity: 0.6;
  }
  30% {
    transform: scale(1.4) translateY(-200px);
    opacity: 0.9;
  }
  70% {
    transform: scale(2.2) translateY(-600px);
    opacity: 0.4;
  }
  100% {
    transform: scale(3.2) translateY(-900px);
    opacity: 0;
  }
}

/* ===== HILANG PELAN ===== */
@keyframes fadeOutSmoke {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
body,
html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
/* Overlay popup */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease;
  z-index: 9999;
}

.popup-overlay.active {
  visibility: visible;
  opacity: 1;
}

.popup-box {
  width: 500px;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: zoomIn 0.3s ease;
}

.popup-box img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  display: block;
}

/* Teks di bawah gambar */
.touch-text {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

@keyframes zoomIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* LAYER khusus popup */
#promo-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  z-index: 99999 !important;
}

/* Saat aktif */
#promo-popup.active {
  opacity: 1;
  visibility: visible;
}

/* KONTEN popup */
#promo-content {
  width: 250px;
  max-width: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeScale 0.3s ease;
}

/* Gambar PROMO */
#promo-img {
  width: 200%;
  height: auto;
  display: block;

  /* MEMASTIKAN dia tidak absolute */
  position: static !important;
}

/* TEKS PROMO */
#promo-text {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  text-align: center;
  width: 100%;
}

@keyframes fadeScale {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.section {
  min-height: 150vh; /* tiap section setidaknya setinggi layar */
  width: 100%;
}

.black {
  background: linear-gradient(to top, #886eaf, #927cb2);
}

.white {
  background: linear-gradient(to top, #402c5c, #886eaf);
}
.hero-video {
  max-width: 100%;
  width: 100%;
  max-height: 100vh; /* full tinggi layar */
  height: 80%;
  object-fit: cover; /* biar gak gepeng */
}

/* ===== Navbar ===== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 15px 20px;
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-sizing: border-box;
}

/* Lang Button */
.lang-btn {
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  border: none;
  padding: 8px 14px;
  border-radius: 20px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}

.lang-btn.active {
  background: #ff00f2 !important;
  color: #ffffff !important;
  box-shadow: 0 0 10px rgba(255, 0, 242, 0.6);
  transform: scale(1.1);
}

.lang-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.05);
}

.lang-btn.active:hover {
  background: #ff00f2;
}

.flag {
  font-size: 16px;
}

/* Menu Box */
.menu-box {
  background: #ffffff;
  padding: 12px 30px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  min-height: 50px;
  width: auto;
  flex-shrink: 0;
}

.logo1 {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo1 img {
  height: 50px;
  width: auto;
  border-radius: 10px;
}

.menu-box span {
  color: #ff00f2;
  font-weight: bold;
  font-size: 22px;
  font-family: "Cinzel", serif;
  white-space: nowrap;
  text-align: center;
}

.menu-box a {
  color: #ff00f2;
  font-size: 16px;
  transition: 0.3s;
  text-decoration: none;
  white-space: nowrap;
  text-align: center;
  font-weight: 1000;
}

.menu-box a:hover {
  opacity: 0.8;
}

.about-fantasy-unique {
  position: relative;
  background: linear-gradient(to top, #402c5c, #886eaf);
  padding: 10px 10% 200px;
  overflow: hidden;
  color: #fff;
  display: flex;
  flex-direction: row;
  gap: 100px;
}
/* Bungkus box dan foto */
.about-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 80px;
  z-index: 2;
}

/* Box umum */
.about-card {
  position: relative;
  width: 80%;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(255, 0, 180, 0.2);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transition: all 0.5s ease;
  z-index: 1;
  top: 100px;
  left: -11px;
}

.about-card .logo-container {
  position: relative;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-card .logo {
  position: relative;
  z-index: 10;
  width: 130px;
  filter: drop-shadow(0 0 25px #ff00ff)
    drop-shadow(0 0 40px rgba(255, 255, 255, 0.3));
  transition: all 0.4s ease;
}

.about-card .logo:hover {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 40px #ff66ff) brightness(1.2);
}
.about-card .text {
  text-align: center;
}
.about-card .text h2 {
  font-size: 1.6rem;
  color: #ffd3ff;
  margin-bottom: 10px;
}
.about-card .text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #fff;
  opacity: 0.9;
}
.about-card img {
  position: relative;
  z-index: 10;
}

.about-card h3,
.about-card p {
  position: relative;
  z-index: 5; /* teks di bawah logo */
}

.about-card .logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 40px #ff00ff) brightness(1.2);
}

.about-card:hover .logo {
  transform: rotate(5deg) scale(1.1);
  filter: drop-shadow(0 0 25px #ff9cff);
}

/* Teks */
.about-card .text {
  text-align: center;
}

.about-card .text h2 {
  font-size: 1.6rem;
  color: #ffd3ff;
  margin-bottom: 10px;
}

.about-card .text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #fff;
  opacity: 0.9;
}
.about-card.left,
.about-card.right {
  transform: none;
  margin-top: 0;
  margin-bottom: 0;
  right: 80px;
}
/* Hover efek mengapung */
.about-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 0 50px rgba(255, 0, 200, 0.4);
}

/* Animasi muncul saat scroll */
.reveal {
  opacity: 0;
  transform: translateY(80px) scale(0.9);
  filter: blur(6px);
  transition: all 1.2s ease-in-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
/* Efek zoom untuk teks */
.hero-text .zoom-text.reveal {
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.8s ease;
}

.hero-text .zoom-text.reveal.active {
  transform: scale(1);
  opacity: 1;
}
.about-title {
  text-align: center;
  margin-bottom: 60px;
  margin-top: 60px;
}

.title-hero {
  font-size: 48px;
  font-weight: 700;
  opacity: 0;
  filter: blur(10px);
  animation: fadeUp 1.2s ease forwards;
  font-family: "Cinzel", serif;
  color: #e6e6fa;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}



/* Animasi muncul saat scroll */
.reveal {
  opacity: 0;
  transform: translateY(80px) scale(0.9);
  filter: blur(6px);
  transition: all 1.2s ease-in-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
/* Efek zoom untuk teks */
.hero-text .zoom-text.reveal {
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.8s ease;
}

.hero-text .zoom-text.reveal.active {
  transform: scale(1);
  opacity: 1;
}

.write-text {
  margin-top: 30px;
  text-align: center;
  font-size: 1.5rem;
  color: #f5eac9;
}

.write-text h1 {
  font-family: "Poppins", sans-serif;
  color: #e6e6fa;
}

.marquee-container {
  font-size: 30px;
  width: 100%;
  overflow: hidden;
  background-color: #ffffff;
  padding: 10px 0;
  transform: translateZ(10px);
}

.marquee {
  display: flex;
  width: max-content;
  animation: marqueeAnim 50s linear infinite;
}

.marquee span {
  white-space: nowrap;
  color: #d93acd;
  font-weight: 700;
}

/* Animasi keyframes */
@keyframes marqueeAnim {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.hero-text1 {
  text-align: center;
  padding-top: 1rem; /* lebih dekat ke video */
  padding-bottom: 2rem; /* tetap ada ruang ke bawah */
  padding-left: 1rem;
  padding-right: 1rem;
}

.hero-text1 h1 {
  font-size: 3rem;
  font-weight: 1000;
  margin-bottom: 0.5rem;
  color: #e6e6fa;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
  font-family: "Cinzel", serif;
}

.hero-text1 p {
  font-size: rem;
  color: var(--muted);
  margin-bottom: 10px; /* jarak antara teks dan kartu */
}

.cards {
  margin-top: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px; /* jarak antar kartu */
  position: relative;
}

.card {
  max-width: 300px;
  width: 300px;
  max-height: 500px;
  height: 400px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden; /* supaya gambar ikut bentuk card */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
  object-fit: cover;
  display: block;
}
.middle img {
  width: 10%; /* bisa diatur lebih kecil dari kartu */
  height: 10%; /* tinggi menyesuaikan proporsinya */
  object-fit: contain; /* biar gak kepotong */
  margin: auto; /* biar selalu di tengah */
  display: block;
}
.left {
  margin-right: -30px;
  transform: rotate(-8deg); /* ⭐ rotasi kiri */
}
.middle {
  margin-top: -20px;
}

.right {
  margin-left: -30px;
  transform: rotate(8deg); /* ⭐ rotasi kanan */
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%; /* sesuaikan ukuran gambar, bisa 60–80% */
  height: auto;
  object-fit: contain;
  display: block;
  z-index: 1;
}
/* Kotak tipis di dalam kartu */
.card::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 2px solid #d93acd; /* warna krem tipis seperti contoh */
  border-radius: 10px;
  pointer-events: none; /* supaya tidak ganggu klik */
  box-sizing: border-box;
}
.card .text {
  position: absolute;
  top: 25px; /* jarak dari atas garis dalam */
  width: 100%;
  text-align: center;
  color: inherit;
  font-size: 24px;
  z-index: 2; /* supaya tetap di atas garis */
  color: #000000;
}
/* Efek rotasi awal */
.left {
  transform: rotate(-8deg);
}

.middle {
  transform: scale(1.05);
  z-index: 2;
}

.right {
  transform: rotate(8deg);
}

/* Hover efek */
.card:hover {
  transform: scale(1.1) rotate(0deg);
  z-index: 3;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.35);
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  transition: opacity 0.3s ease;
}

.overlay.hidden {
  display: none;
}

.overlay-content {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px 28px 60px;
  max-width: 450px;
  text-align: center;
  position: relative;
  animation: zoomIn 0.5s ease;
  margin-top: 80px;
  min-height: 600px; /* ⬅️ INI KUNCINYA */
}
.overlay-content h2 {
  color: #000000;
  transform: translateY(10px);
}
.overlay-content p {
  color: #000000;
  font-size: 15px;
}
.overlay-content img {
  width: 100%;
  height: 50%;
  object-fit: contain;
}

.close-btn:hover {
  color: red;
}
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #f6e7c1;
}
/* Kotak tipis di dalam popup overlay */
.overlay-content::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 2px solid #d62684;
  border-radius: 10px;
  pointer-events: none;
  box-sizing: border-box;
}
/* Animasi zoom */
@keyframes zoomIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.toggle-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.toggle-container {
  display: flex;
  background: #f5f7fa;
  padding: 6px;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  gap: 6px;
}

.toggle-btn {
  padding: 12px 26px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  color: #1f2937;
  background: transparent;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.toggle-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  opacity: 0;
  transition: 0.35s;
  z-index: -1;
}

.toggle-btn:hover {
  color: #ff00f2;
}

.toggle-btn.active {
  color: #000000;
}

.toggle-btn.active::before {
  opacity: 1;
}

.toggle-btn.active {
  box-shadow: 0 8px 18px rgba(255, 0, 217, 0.71);
}


.wrapper {
  margin: 100px auto 0;
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  width: 90%;
  max-width: 1400px; /* batas maksimal lebar */
  height: 80%;
  max-height: 500px;
  height: auto;
}

.wrapper h2 {
  margin-bottom: 20px;
  color: #000000;
}

.container2 {
  display: grid;
  justify-content: center;
}

.box {
  background: #e6e6fa;
  height: 200px;
  width: 100%;
  max-width: 800px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  box-sizing: border-box; /* ⭐ tambahkan ini */
  padding: 0; /* ⭐ ubah padding ke 0 */
  display: flex; /* ⭐ tambahkan ini */
  align-items: center; /* ⭐ center vertikal */
  justify-content: center; /* ⭐ center horizontal */
}

.box h3 {
  text-align: center;
  color: #120a2a;
  margin: 0;
  font-size: 170px;
  font-size: clamp(3rem, 15vw, 170px); /* ⭐ responsive font */
  display: flex; /* ⭐ tambahkan ini */
  align-items: center; /* ⭐ vertikal center */
  justify-content: center; /* ⭐ horizontal center */
  min-height: 200px; /* ⭐ tinggi minimum */
  line-height: 1; /* ⭐ hapus jarak baris */
}

.te {
  color: #f5eac9;
}

.text0 {
  color: #e6e6fa;
  font-family: "Cinzel", serif;
  margin-bottom: 50px; /* jarak ke bawah */
  font-size: 3rem;
  text-align: center;
  padding-top: 1rem; /* lebih dekat ke video */
  padding-bottom: 2rem; /* tetap ada ruang ke bawah */
  padding-left: 1rem;
  padding-right: 1rem;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}
.text3 {
  text-align: center;
  padding-top: 20px; /* lebih dekat ke video */
  padding-bottom: 2rem; /* tetap ada ruang ke bawah */
  padding-left: 1rem;
  padding-right: 1rem;
  transform: translateY(50px);
}
.text3 h1 {
  font-family: "Cinzel", serif;
  font-size: 3rem;
  font-weight: 1000;
  margin-bottom: 0.5rem;
  color: #e6e6fa;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}
.main-container {
  gap: 40px;
  flex-wrap: wrap;
  margin-left: 40px;
  margin-right: 40px;
  text-align: center;
  width: 95%; /* Lebar wadah utama */
  max-width: 1500px;
  height: 80%;
  padding: 20px;
  background-color: #e6e6fa;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
  transform: translateY(50px);
}

/* Styling Header dan Piala */
.header {
  margin-bottom: 20px;
}

.trophy-icon {
  font-size: 80px;
  color: #886eaf;
}

.event-title {
  color: #886eaf;
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 3px;
  margin-top: 10px;
}

/* CONTAINER PRIZEPOOL CAROUSEL */
.prizepools-carousel-container {
  position: relative;
  padding: 0 50px;
  display: flex;
  justify-content: center; /* ✅ posisi tengah horizontal */
  align-items: center; /* ✅ posisi tengah vertikal */
}

.prizepools-wrapper {
  display: flex;
  flex-wrap: wrap;
  overflow-x: auto; /* ⭐ ubah dari hidden */
  scroll-behavior: smooth; /* Animasi geser */
  gap: 20px; /* ⭐ kurangi dari 30px */
  padding: 20px 0;
  margin: 0 auto;
  justify-content: center;
  width: 95%; /* ⭐ ubah dari 90% */
  max-width: 1200px; /* ⭐ kurangi dari 5000px */
}

.prizepool-container {
  background: linear-gradient(to top, #402c5c, #886eaf);
  border-radius: 20px;
  padding: 20px 20px 50px 20px; /* Padding bawah lebih besar untuk navigasi */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  min-width: 280px; /* ⭐ kurangi dari 300px */
  width: 100%; /* ⭐ tambahkan ini */
  max-width: 320px; /* ⭐ tambahkan ini */
  flex-shrink: 1; /* ⭐ ubah dari 0 */
  text-align: center;
  position: relative;
}

.category-title {
  color: #e6e6fa;
  font-size: clamp(1.3rem, 4vw, 1.8rem); /* ⭐ responsive font */
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: bold;
}

/* Styling Kartu Hadiah */
.prize-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 15px;
  padding: 20px 10px;
  margin-top: 10px;
  position: relative;
}

.ribbon-icon {
  font-size: 20px;
  font-size: clamp(1rem, 3vw, 1.5rem); /* ⭐ responsive */
  color: #e6e6fa;
  margin-bottom: 5px;
}

.rank-text {
  font-size: 20px;
  font-size: clamp(1rem, 3vw, 1.3rem); /* ⭐ responsive */
  font-weight: 600;
  color: #e6e6fa;
  margin: 5px 0;
  font-family: "https://fonts.googleapis.com/css2?family=Homemade+Apple&family=Poppins:wght@100;300;400;700&display=swap";
}
.up-to-text {
  font-size: 20px; /* Ukuran lebih kecil */
  font-size: clamp(0.9rem, 2.5vw, 1.2rem); /* ⭐ responsive */
  font-weight: 400;
  color: #e6e6fa;
  font-family: "https://fonts.googleapis.com/css2?family=Homemade+Apple&family=Poppins:wght@100;300;400;700&display=swap";
}
.prize-amount {
  font-size: 28px;
  font-size: clamp(1.5rem, 5vw, 1.8rem); /* ⭐ responsive */
  font-weight: bold;
  color: #e6e6fa;
  margin-top: 10px;
  margin-bottom: 30px;
}

/* Styling Navigasi Rank (di dalam kartu) */
.navigation-arrows {
  display: flex;
  justify-content: space-between;
  width: 90%;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.nav-btn {
  background: rgba(0, 0, 0, 0.2);
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: background 0.2s;
}

.nav-btn:hover {
  background: rgba(0, 0, 0, 0.4);
}

/* Styling Navigasi Lomba (di luar kartu) */
.event-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #ffffff;
  font-size: 40px;
  cursor: pointer;
  z-index: 10;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.event-nav-btn:hover {
  opacity: 1;
}

.event-nav-btn.left {
  left: 0;
}

.event-nav-btn.right {
  right: 0;
}
.about-title {
  text-align: center;
  margin-bottom: 60px;
  margin-top: 60px;
}

.title-hero {
  font-size: 48px;
  font-weight: 700;
  opacity: 0;
  filter: blur(10px);
  animation: fadeUp 1.2s ease forwards;
  font-family: "Cinzel", serif;
  color: #e6e6fa;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}



/* Animasi muncul saat scroll */
.reveal {
  opacity: 0;
  transform: translateY(80px) scale(0.9);
  filter: blur(6px);
  transition: all 1.2s ease-in-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
/* Efek zoom untuk teks */
.hero-text .zoom-text.reveal {
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.8s ease;
}

.hero-text .zoom-text.reveal.active {
  transform: scale(1);
  opacity: 1;
}
/* Animasi Fade In */
@keyframes fadeIn {
  from {
    opacity: 0.5;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.timeline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-top: 50px;
  overflow: hidden;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  height: 5px;
  width: 0;
  background-color: #e6e6fa;
  z-index: 0;
  transition: width 2s ease;
}

.event {
  position: relative;
  text-align: center;
  width: 20%;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.circle {
  width: 50px;
  height: 50px;
  background-color: #e6e6fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  color: #886eaf;
  font-size: 20px;
  transform: scale(0);
  transition: transform 0.5s ease;
}

.date {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 18px;
  color: #e6e6fa;
}

.label {
  font-size: 16px;
  font-variant: small-caps;
  color: #e6e6fa;
}

/* Saat aktif (terlihat di layar) */
.timeline.active::before {
  width: 100%;
}

.timeline.active .event {
  opacity: 1;
  transform: translateY(0);
}

.timeline.active .event .circle {
  transform: scale(1);
}

/* Delay tiap event */
.timeline.active .event:nth-child(1) {
  transition-delay: 0.5s;
}
.timeline.active .event:nth-child(2) {
  transition-delay: 1s;
}
.timeline.active .event:nth-child(3) {
  transition-delay: 1.5s;
}
.timeline.active .event:nth-child(4) {
  transition-delay: 2s;
}
.timeline.active .event:nth-child(5) {
  transition-delay: 2.5s;
}

.timeline.active .event:nth-child(1) .circle {
  transition-delay: 0.7s;
}
.timeline.active .event:nth-child(2) .circle {
  transition-delay: 1.2s;
}
.timeline.active .event:nth-child(3) .circle {
  transition-delay: 1.7s;
}
.timeline.active .event:nth-child(4) .circle {
  transition-delay: 2.2s;
}
.timeline.active .event:nth-child(5) .circle {
  transition-delay: 2.7s;
}

.media-partners {
  width: 100%;
  padding: 30px 0;
  text-align: center;
}

.media-title {
  font-size: 3rem;
  font-weight: 1000;
  margin-bottom: 0.5rem;
  color: #e6e6fa;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
  font-family: "Cinzel", serif;
  margin-top: 100px;
}

/* NON-FORMAL FLEX WRAP */
.media-random {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  padding: 10px;
}

/* LOGO BESAR DAN JELAS */
.media-random img {
  width: 150px; /* BESAR */
  height: auto;
  object-fit: contain;
  display: block;
}

.hero-text2 p {
  font-size: rem;
  color: var(--muted);
  margin-bottom: 10px; /* jarak antara teks dan kartu */
}
.text3 {
  text-align: center;
  padding-top: 20px; /* lebih dekat ke video */
  padding-bottom: 2rem; /* tetap ada ruang ke bawah */
  padding-left: 1rem;
  padding-right: 1rem;
  transform: translateY(20px);
}

.footer {
  background: #fff;
  padding: 60px 20px 30px;
  border-top: 1px solid #ccc;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* BRAND */
.footer-brand {
  max-width: 350px;
  text-align: center;
}

.footer-logo {
  width: 90px;
  margin-bottom: 10px;
}

.footer-text {
  margin-top: 15px;
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

/* KONTAK */
.footer-section h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #111;
  margin: 8px 0;
  font-size: 16px;
}

.icon-img {
  width: 24px;
  height: 24px;
}
.icon-imgemail {
  width: 24px;
  height: 24px;
}

/* SOSIAL ICONS */
.social-icons {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.social-btn {
  width: 48px;
  height: 48px;
  background: #f4f4f4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s;
}

.social-img {
  width: 40px;
  height: 40px;
}

.social-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.social-btn:active {
  transform: scale(0.88);
  box-shadow: none;
}

.social-btnyt {
  width: 48px;
  height: 48px;
  background: #f4f4f4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s;
}

.social-imgyt {
  width: 50px;
  height: 50px;
}

.social-btnyt:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.social-btnyt:active {
  transform: scale(0.88);
  box-shadow: none;
}

.social-btnmbi {
  width: 48px;
  height: 48px;
  background: #f4f4f4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s;
}

.social-imgmbi {
  width: 60px;
  height: 30px;
}

.social-btnmbi:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.social-btnmbi:active {
  transform: scale(0.88);
  box-shadow: none;
}
/* Tablet - 768px ke bawah */
@media (max-width: 1024px) {
  .smoke-screen {
  position: fixed;
  inset: 0;
  /* Fantasy Mist Background */

  background: black;
  backdrop-filter: blur(40px);
  overflow: hidden;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeOutSmoke 5s ease 3s forwards; /* hilang setelah 6 detik */
  display: none;
}
  /* KONTEN popup */
#promo-content {
  width: 300px;
  max-width: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeScale 0.3s ease;
}

/* Gambar PROMO */
#promo-img {
  width: 200%;
  height: auto;
  display: block;

  /* MEMASTIKAN dia tidak absolute */
  position: static !important;
}

/* TEKS PROMO */
#promo-text {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 25px;
  text-align: center;
  width: 100%;
}

  /* Maskot */
  .logo img {
  position: absolute;
  top: 27%;
  right: 425px;
  width: 150px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  z-index: 999;
  animation: logoReveal 1s ease forwards;
  animation-delay: 2s;
}
.maskot {
  position: absolute;
  width: 300px;
  opacity: 0;
  transform: scale(0.9);
  z-index: 2;
}
  .navbar {
    gap: 15px;
    padding: 12px 15px;
  }

  .lang-btn {
    padding: 7px 12px;
    font-size: 12px;
    border-radius: 18px;
  }

  .flag {
    font-size: 14px;
  }

  .menu-box {
    padding: 10px 25px;
    gap: 20px;
    min-height: 45px;
    border-radius: 40px;
  }

  .logo1 img {
    height: 40px;
  }

  .menu-box span {
    font-size: 18px;
  }

  .menu-box a {
    font-size: 12px;
  }
  /* Box umum */
.about-card {
  position: relative;
  width: 80%;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(255, 0, 180, 0.2);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transition: all 0.5s ease;
  z-index: 1;
  top: 100px;
  left: -50px;
}
}

/* Mobile landscape - 768px */
@media (max-width: 768px) {
  .smoke-screen {
  position: fixed;
  inset: 0;
  /* Fantasy Mist Background */

  background: black;
  backdrop-filter: blur(40px);
  overflow: hidden;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeOutSmoke 5s ease 3s forwards; /* hilang setelah 6 detik */
  display: none;
}
  .navbar {
    gap: 10px;
    padding: 10px 10px;
  }

  .lang-btn {
    padding: 6px 10px;
    font-size: 11px;
    border-radius: 16px;
  }

  .flag {
    font-size: 13px;
  }

  .menu-box {
    padding: 8px 20px;
    gap: 15px;
    min-height: 40px;
    border-radius: 35px;
  }

  .logo1 img {
    height: 36px;
  }

  .menu-box span {
    font-size: 15px;
  }

  .menu-box a {
    font-size: 11px;
  }
}




@media (max-width: 768px) {
  .smoke-screen {
  position: fixed;
  inset: 0;
  /* Fantasy Mist Background */

  background: black;
  backdrop-filter: blur(40px);
  overflow: hidden;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeOutSmoke 5s ease 3s forwards; /* hilang setelah 6 detik */
  display: none;
}
  /* Tablet (768px ke bawah) */
  .btn-gambar {
  width: 150px;     /* ukuran gambar tombol */
  cursor: pointer; /* jadi tangan saat hover */
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  transition: .2s;
  top: 500px;
}
    /* Maskot */
  .logo img {
  position: absolute;
  top: 27%;
  right: 307px;
  width: 150px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  z-index: 999;
  animation: logoReveal 1s ease forwards;
  animation-delay: 2s;
}
.maskot {
  position: absolute;
  width: 250px;
  opacity: 0;
  transform: scale(0.9);
  z-index: 2;
}
   #promo-content {
  width: 200px;
  max-width: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeScale 0.3s ease;
}

/* Gambar PROMO */
#promo-img {
  width: 200%;
  height: auto;
  display: block;

  /* MEMASTIKAN dia tidak absolute */
  position: static !important;
}

/* TEKS PROMO */
#promo-text {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  text-align: center;
  width: 100%;
}
.hero-video {
  max-width: 100%;
  width: 100%;
  max-height: 100vh; /* full tinggi layar */
  height: 80%;
  object-fit: cover; /* biar gak gepeng */
  margin-top: 50px;
}
  .about-card.left,
  .about-card.right {
    align-items: center;
  }
.about-card {
  position: relative;
  width: 80%;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(255, 0, 180, 0.2);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transition: all 0.5s ease;
  z-index: 1;
  top: 100px;
}

.about-card .logo-container {
  position: relative;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-card .logo {
  position: relative;
  z-index: 10;
  width: 100px;
  filter: drop-shadow(0 0 25px #ff00ff)
    drop-shadow(0 0 40px rgba(255, 255, 255, 0.3));
  transition: all 0.4s ease;
}

.about-card .logo:hover {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 40px #ff66ff) brightness(1.2);
}
.about-card .text {
  text-align: center;
}
.about-card .text h2 {
  font-size: 1.6rem;
  color: #ffd3ff;
  margin-bottom: 10px;
}
.about-card .text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #fff;
  opacity: 0.9;
}
.about-card img {
  position: relative;
  z-index: 10;
}

.about-card h3,
.about-card p {
  position: relative;
  z-index: 5; /* teks di bawah logo */
}

.about-card .logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 40px #ff00ff) brightness(1.2);
}

.about-card:hover .logo {
  transform: rotate(5deg) scale(1.1);
  filter: drop-shadow(0 0 25px #ff9cff);
}

/* Teks */
.about-card .text {
  text-align: center;
}

.about-card .text h2 {
  font-size: 1.6rem;
  color: #ffd3ff;
  margin-bottom: 10px;
  margin-top: -30px;
}

.about-card .text p {
  font-size: 0.75rem;
  line-height: 1.5;
  color: #fff;
  opacity: 0.9;
  margin-top: auto;
}

/* Hover efek mengapung */
.about-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 0 50px rgba(255, 0, 200, 0.4);
}

.main-container {
  gap: 40px;
  flex-wrap: wrap;
  margin-left: 20px;
  margin-right: 40px;
  text-align: center;
  width: 95%; /* Lebar wadah utama */
  max-width: 1500px;
  height: 80%;
  padding: 20px;
  background-color: #e6e6fa;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
  transform: translateY(50px);
}
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .social-icons {
    justify-content: center;
  }
}

.footer-bottom {
  margin-top: 40px;
  font-size: 14px;
  color: #555;
  text-align: center;
  border-top: 1px solid #ccc;
  padding-top: 20px;
}

/* Mobile portrait - 480px */
@media (max-width: 480px) {
  .smoke-screen {
  position: fixed;
  inset: 0;
  /* Fantasy Mist Background */

  background: black;
  backdrop-filter: blur(40px);
  overflow: hidden;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeOutSmoke 5s ease 3s forwards; /* hilang setelah 6 detik */
  display: none;
}
    /* Maskot */
  .logo img {
  position: absolute;
  top: 27%;
  right: 165px;
  width: 150px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  z-index: 999;
  animation: logoReveal 1s ease forwards;
  animation-delay: 2s;
}
.maskot {
  position: absolute;
  width: 150px;
  opacity: 0;
  transform: scale(0.9);
  z-index: 2;
}
  .navbar {
    gap: 8px;
    padding: 8px 8px;
    flex-wrap: wrap;
    justify-content: space-around;
    flex-direction: column;
  }

  .lang-btn {
    padding: 5px 8px;
    font-size: 10px;
    border-radius: 15px;
  }

  .flag {
    font-size: 12px;
  }

  .menu-box {
    padding: 6px 15px;
    gap: 30px;
    min-height: 35px;
    border-radius: 30px;
    width: 100%;
    order: 1;
  }

  .logo1 img {
    height: 32px;
  }

  .menu-box span {
    font-size: 13px;
  }

  .menu-box a {
    font-size: 9px;
  }

  .lang-btn-left {
    order: 2;
  }

  .lang-btn-right {
    order: 2;
  }
  .hero-video {
  max-width: 100%;
  width: 100%;
  max-height: 100vh; /* full tinggi layar */
  height: 80%;
  object-fit: cover; /* biar gak gepeng */
  margin-top: 50px;
}
  .about-card.left,
  .about-card.right {
  width: 165px;
  }
.about-card {
  position: relative;
  width: 80%;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(255, 0, 180, 0.2);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transition: all 0.5s ease;
  z-index: 1;
  top: 100px;
  left: -95px;
}

.about-card .logo-container {
  position: relative;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-card .logo {
  position: relative;
  z-index: 10;
  width: 75px;
  filter: drop-shadow(0 0 25px #ff00ff)
    drop-shadow(0 0 40px rgba(255, 255, 255, 0.3));
  transition: all 0.4s ease;
}

.about-card .logo:hover {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 40px #ff66ff) brightness(1.2);
}
.about-card .text {
  text-align: center;
}
.about-card .text h2 {
  font-size: 1.6rem;
  color: #ffd3ff;
  margin-bottom: 10px;
}
.about-card .text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #fff;
  opacity: 0.9;
  overflow-y: auto;
  text-align: left;
}
.about-card img {
  position: relative;
  z-index: 10;
}

.about-card h3,
.about-card p {
  position: relative;
  z-index: 5; /* teks di bawah logo */
}

.about-card .logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 40px #ff00ff) brightness(1.2);
}

.about-card:hover .logo {
  transform: rotate(5deg) scale(1.1);
  filter: drop-shadow(0 0 25px #ff9cff);
}

/* Teks */
.about-card .text {
  text-align: center;
}

.about-card .text h2 {
  font-size: 1.6rem;
  color: #ffd3ff;
  margin-bottom: 10px;
  margin-top: -30px;
}

.about-card .text p {
  font-size: 0.75rem;
  line-height: 1.5;
  color: #fff;
  opacity: 0.9;
  margin-top: auto;
}

/* Hover efek mengapung */
.about-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 0 50px rgba(255, 0, 200, 0.4);
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  transition: opacity 0.3s ease;
}

.overlay.hidden {
  display: none;
}

.overlay-content {
  background: #ffffff;
  border-radius: 12px;
  padding: 100px 10px 50px;
  max-width: 850px;
  text-align: center;
  position: relative;
  animation: zoomIn 0.5s ease;
  margin-top: 80px;
}
.main-container {
  gap: 40px;
  flex-wrap: wrap;
  margin-left: 13px;
  margin-right: 40px;
  text-align: center;
  width: 95%; /* Lebar wadah utama */
  max-width: 1500px;
  height: 80%;
  padding: 20px;
  background-color: #e6e6fa;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
  transform: translateY(50px);
}
 
}
/* Mobile portrait - 400px */
@media (max-width: 400px) {
  .smoke-screen {
  position: fixed;
  inset: 0;
  /* Fantasy Mist Background */

  background: black;
  backdrop-filter: blur(40px);
  overflow: hidden;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeOutSmoke 5s ease 3s forwards; /* hilang setelah 6 detik */
  display: none;
}
     /* Maskot */
  .logo img {
  position: absolute;
  top: 20%;
  right: 125px;
  width: 150px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  z-index: 999;
  animation: logoReveal 1s ease forwards;
  animation-delay: 2s;
}
.maskot {
  position: absolute;
  width: 150px;
  opacity: 0;
  transform: scale(0.9);
  z-index: 2;
}
  .btn-gambar {
  width: 70px;     /* ukuran gambar tombol */
  cursor: pointer; /* jadi tangan saat hover */
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  transition: .2s;
  top: 540px;
}
  .navbar {
    gap: 8px;
    padding: 8px 8px;
    flex-wrap: wrap;
    justify-content: space-around;
    flex-direction: column;
  }

  .lang-btn {
    padding: 5px 8px;
    font-size: 10px;
    border-radius: 15px;
  }

  .flag {
    font-size: 12px;
  }

  .menu-box {
    padding: 6px 15px;
    gap: 30px;
    min-height: 35px;
    border-radius: 30px;
    width: 100%;
    order: 1;
  }

  .logo1 img {
    height: 32px;
  }

  .menu-box span {
    font-size: 13px;
    display: none;
  }

  .menu-box a {
    font-size: 10px;
  }

  .lang-btn-left {
    order: 2;
  }

  .lang-btn-right {
    order: 2;
  }
  .hero-video {
  max-width: 100%;
  width: 100%;
  max-height: 100vh; /* full tinggi layar */
  height: 80%;
  object-fit: cover; /* biar gak gepeng */
  margin-top: 70px;
}
  .about-card.left,
  .about-card.right {
  width: 155px;
  }
.about-card {
  position: relative;
  width: 80%;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(255, 0, 180, 0.2);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transition: all 0.5s ease;
  z-index: 1;
  top: 100px;
  left: -115px;
}

.about-card .logo-container {
  position: relative;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-card .logo {
  position: relative;
  z-index: 10;
  width: 85px;
  filter: drop-shadow(0 0 25px #ff00ff)
   drop-shadow(0 0 40px rgba(255, 255, 255, 0.3));
  transition: all 0.4s ease;
}

.about-card .logo:hover {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 40px #ff66ff) brightness(1.2);
}
.about-card .text {
  text-align: center;
}
.about-card .text h2 {
  font-size: 1.6rem;
  color: #ffd3ff;
  margin-bottom: 10px;
}
.about-card .text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #fff;
  opacity: 0.9;
  overflow-y: auto;
  text-align: center;
}
.about-card img {
  position: relative;
  z-index: 10;
}

.about-card h3,
.about-card p {
  position: relative;
  z-index: 5; /* teks di bawah logo */
}

.about-card .logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 40px #ff00ff) brightness(1.2);
}

.about-card:hover .logo {
  transform: rotate(5deg) scale(1.1);
  filter: drop-shadow(0 0 25px #ff9cff);
}

/* Teks */
.about-card .text {
  text-align: center;
}

.about-card .text h2 {
  font-size: 1rem;
  color: #ffd3ff;
  margin-bottom: 10px;
  margin-top: -30px;
  line-height: 1.2;
}

.about-card .text p {
  font-size: 0.5rem;
  line-height: 1.5;
  color: #fff;
  opacity: 10;
  margin-top: auto;
}

/* Hover efek mengapung */
.about-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 0 50px rgba(255, 0, 200, 0.4);
}
.card {
  max-width: 300px;
  width: 125px;
  max-height: 500px;
  height: 200px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden; /* supaya gambar ikut bentuk card */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
  object-fit: cover;
  display: block;
}
.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%; /* sesuaikan ukuran gambar, bisa 60–80% */
  height: auto;
  object-fit: contain;
  display: block;
  z-index: 1;
}
/* Kotak tipis di dalam kartu */
.card::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 2px solid #d93acd; /* warna krem tipis seperti contoh */
  border-radius: 10px;
  pointer-events: none; /* supaya tidak ganggu klik */
  box-sizing: border-box;
}
.card .text {
  position: absolute;
  top: 25px; /* jarak dari atas garis dalam */
  width: 100%;
  text-align: center;
  color: inherit;
  font-size: 15px;
  z-index: 2; /* supaya tetap di atas garis */
  color: #000000;
}
/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  transition: opacity 0.3s ease;
}

.overlay.hidden {
  display: none;
}

.overlay-content {
  background: #ffffff;
  border-radius: 12px;
  padding: 100px 10px 50px;
  max-width: 850px;
  text-align: center;
  position: relative;
  animation: zoomIn 0.5s ease;
  margin-top: 80px;
}
.toggle-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.toggle-container {
  display: flex;
  background: #f5f7fa;
  padding: 6px;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  gap: 6px;
}

.toggle-btn {
  padding: 12px 20px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  color: #1f2937;
  background: transparent;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.toggle-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  opacity: 0;
  transition: 0.35s;
  z-index: -1;
}

.toggle-btn:hover {
  color: #ff00f2;
}

.toggle-btn.active {
  color: #000000;
}

.toggle-btn.active::before {
  opacity: 1;
}

.toggle-btn.active {
  box-shadow: 0 8px 18px rgba(255, 0, 217, 0.71);
}
.timeline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-top: 50px;
  overflow: hidden;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  height: 5px;
  width: 0;
  background-color: #e6e6fa;
  z-index: 0;
  transition: width 2s ease;
}

.event {
  position: relative;
  text-align: center;
  width: 20%;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.circle {
  width: 45px;
  height: 50px;
  background-color: #e6e6fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  color: #886eaf;
  font-size: 20px;
  transform: scale(0);
  transition: transform 0.5s ease;
}

.date {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 10px;
  color: #e6e6fa;
}

.label {
  font-size: 12px;
  font-variant: small-caps;
  color: #e6e6fa;
}
.main-container {
  gap: 40px;
  flex-wrap: wrap;
  margin-left: 13px;
  margin-right: 40px;
  text-align: center;
  width: 95%; /* Lebar wadah utama */
  max-width: 1500px;
  height: 80%;
  padding: 20px;
  background-color: #e6e6fa;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
  transform: translateY(50px);
}
.prizepools-carousel-container {
  position: relative;
  padding: 0 10px;
  display: flex;
  justify-content: center; /* ✅ posisi tengah horizontal */
  align-items: center; /* ✅ posisi tengah vertikal */
}

.prizepool-container {
  background: linear-gradient(to top, #402c5c, #886eaf);
  border-radius: 20px;
  padding: 20px 20px 50px 20px; /* Padding bawah lebih besar untuk navigasi */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  min-width: 250px; /* ⭐ kurangi dari 300px */
  width: 50%; /* ⭐ tambahkan ini */
  max-width: 320px; /* ⭐ tambahkan ini */
  flex-shrink: 1; /* ⭐ ubah dari 0 */
  text-align: center;
  position: relative;
}

}

/* Extra small - 360px */
@media (max-width: 360px) {
  .btn-gambar {
  width: 70px;     /* ukuran gambar tombol */
  cursor: pointer; /* jadi tangan saat hover */
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  transition: .2s;
  top: 540px;
}

  #promo-content {
  width: 200px;
  max-width: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeScale 0.3s ease;
}

/* Gambar PROMO */
#promo-img {
  width: 200%;
  height: auto;
  display: block;

  /* MEMASTIKAN dia tidak absolute */
  position: static !important;
}

/* TEKS PROMO */
#promo-text {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  text-align: center;
  width: 100%;
}

/* ===== LAYER ASAP ===== */
.smoke-screen {
  position: fixed;
  inset: 0;
  /* Fantasy Mist Background */

  background: black;
  backdrop-filter: blur(40px);
  overflow: hidden;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeOutSmoke 5s ease 3s forwards; /* hilang setelah 6 detik */
  display: none;
}

  .hero-video {
  max-width: 100%;
  width: 100%;
  max-height: 100vh; /* full tinggi layar */
  height: 80%;
  object-fit: cover; /* biar gak gepeng */
}
  .navbar {
    gap: 6px;
    padding: 6px 6px;
  }

  .lang-btn {
    padding: 4px 6px;
    font-size: 9px;
  }

  .flag {
    font-size: 11px;
  }

  .menu-box {
    padding: 5px 12px;
    gap: 30px;
    min-height: 30px;
    border-radius: 25px;
  }

  .logo1 img {
    height: 28px;
  }

  .menu-box span {
    font-size: 11px;
  }

  .menu-box a {
    font-size: 8px;
  }

  .about-card.left,
  .about-card.right {
  width: 120px;
  }
.about-card {
  position: relative;
  width: 80%;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(255, 0, 180, 0.2);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transition: all 0.5s ease;
  z-index: 1;
  top: 100px;
  left: -95px;
}

.about-card .logo-container {
  position: relative;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-card .logo {
  position: relative;
  z-index: 10;
  width: 75px;
  filter: drop-shadow(0 0 25px #ff00ff)
    drop-shadow(0 0 40px rgba(255, 255, 255, 0.3));
  transition: all 0.4s ease;
}

.about-card .logo:hover {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 40px #ff66ff) brightness(1.2);
}
.about-card .text {
  text-align: center;
}
.about-card .text h2 {
  font-size: 1.6rem;
  color: #ffd3ff;
  margin-bottom: 10px;
}
.about-card .text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #fff;
  opacity: 0.9;
  overflow-y: auto;
  text-align: center;
}
.about-card img {
  position: relative;
  z-index: 10;
}

.about-card h3,
.about-card p {
  position: relative;
  z-index: 5; /* teks di bawah logo */
}

.about-card .logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 40px #ff00ff) brightness(1.2);
}

.about-card:hover .logo {
  transform: rotate(5deg) scale(1.1);
  filter: drop-shadow(0 0 25px #ff9cff);
}

/* Teks */
.about-card .text {
  text-align: center;
}

.about-card .text h2 {
  font-size: 1rem;
  color: #ffd3ff;
  margin-bottom: 10px;
  margin-top: -30px;
  line-height: 1.2;
}

.about-card .text p {
  font-size: 0.5rem;
  line-height: 1.25;
  color: #fff;
  opacity: 10;
  margin-top: auto;
}

/* Hover efek mengapung */
.about-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 0 50px rgba(255, 0, 200, 0.4);
}
.toggle-btn {
  padding: 12px 15px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  color: #1f2937;
  background: transparent;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.timeline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-top: 50px;
  overflow: hidden;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  height: 5px;
  width: 0;
  background-color: #e6e6fa;
  z-index: 0;
  transition: width 2s ease;
}

.event {
  position: relative;
  text-align: center;
  width: 20%;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.circle {
  width: 45px;
  height: 50px;
  background-color: #e6e6fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  color: #886eaf;
  font-size: 20px;
  transform: scale(0);
  transition: transform 0.5s ease;
}

.date {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 10px;
  color: #e6e6fa;
}

.label {
  font-size: 12px;
  font-variant: small-caps;
  color: #e6e6fa;
}
.main-container {
  gap: 40px;
  flex-wrap: wrap;
  margin-left: 10px;
  margin-right: 40px;
  text-align: center;
  width: 95%; /* Lebar wadah utama */
  max-width: 1500px;
  height: 80%;
  padding: 20px;
  background-color: #e6e6fa;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
  transform: translateY(50px);
}
.prizepools-carousel-container {
  position: relative;
  padding: 0 10px;
  display: flex;
  justify-content: center; /* ✅ posisi tengah horizontal */
  align-items: center; /* ✅ posisi tengah vertikal */
}

.prizepool-container {
  background: linear-gradient(to top, #402c5c, #886eaf);
  border-radius: 20px;
  padding: 20px 20px 50px 20px; /* Padding bawah lebih besar untuk navigasi */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  min-width: 250px; /* ⭐ kurangi dari 300px */
  width: 50%; /* ⭐ tambahkan ini */
  max-width: 320px; /* ⭐ tambahkan ini */
  flex-shrink: 1; /* ⭐ ubah dari 0 */
  text-align: center;
  position: relative;
}


}
/* Extra small - 300px */
@media (max-width: 300px) {
  .smoke-screen {
  position: fixed;
  inset: 0;
  /* Fantasy Mist Background */

  background: black;
  backdrop-filter: blur(40px);
  overflow: hidden;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeOutSmoke 5s ease 3s forwards; /* hilang setelah 6 detik */
  display: none;
}
    .btn-gambar {
  width: 70px;     /* ukuran gambar tombol */
  cursor: pointer; /* jadi tangan saat hover */
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  transition: .2s;
  top: 540px;
}

  #promo-content {
  width: 200px;
  max-width: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeScale 0.3s ease;
}

/* Gambar PROMO */
#promo-img {
  width: 200%;
  height: auto;
  display: block;

  /* MEMASTIKAN dia tidak absolute */
  position: static !important;
}

/* TEKS PROMO */
#promo-text {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  text-align: center;
  width: 100%;
}

  /* Maskot */
  .logo img {
  position: absolute;
  top: 20%;
  right: 75px;
  width: 150px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  z-index: 999;
  animation: logoReveal 1s ease forwards;
  animation-delay: 2s;
}
.maskot {
  position: absolute;
  width: 120px;
  opacity: 0;
  transform: scale(0.9);
  z-index: 2;
}
  .hero-video {
  max-width: 100%;
  width: 100%;
  max-height: 100vh; /* full tinggi layar */
  height: 80%;
  object-fit: cover; /* biar gak gepeng */
}
  .navbar {
    gap: 6px;
    padding: 6px 6px;
  }

  .lang-btn {
    padding: 4px 6px;
    font-size: 9px;
  }

  .flag {
    font-size: 11px;
  }

  .menu-box {
    padding: 0px 12px;
    gap: 17px;
    min-height: 30px;
    border-radius: 25px;
  }

  .logo1 img {
    height: 28px;
  }

  .menu-box span {
    font-size: 11px;
  }

  .menu-box a {
    font-size: 8px;
  }

  .about-card.left,
  .about-card.right {
  width: 115px;
  }
.about-card {
  position: relative;
  width: 80%;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(255, 0, 180, 0.2);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transition: all 0.5s ease;
  z-index: 1;
  top: 100px;
  left: -115px;
}

.about-card .logo-container {
  position: relative;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-card .logo {
  position: relative;
  z-index: 10;
  width: 100px;
  filter: drop-shadow(0 0 25px #ff00ff)
    drop-shadow(0 0 40px rgba(255, 255, 255, 0.3));
  transition: all 0.4s ease;
}

.about-card .logo:hover {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 40px #ff66ff) brightness(1.2);
}
.about-card .text {
  text-align: center;
}
.about-card .text h2 {
  font-size: 1.6rem;
  color: #ffd3ff;
  margin-bottom: 10px;
}
.about-card .text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #fff;
  opacity: 0.9;
  overflow-y: auto;
  text-align: center;
}
.about-card img {
  position: relative;
  z-index: 10;
}

.about-card h3,
.about-card p {
  position: relative;
  z-index: 5; /* teks di bawah logo */
}

.about-card .logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 40px #ff00ff) brightness(1.2);
}

.about-card:hover .logo {
  transform: rotate(5deg) scale(1.1);
  filter: drop-shadow(0 0 25px #ff9cff);
}

/* Teks */
.about-card .text {
  text-align: center;
}

.about-card .text h2 {
  font-size: 1rem;
  color: #ffd3ff;
  margin-bottom: 10px;
  margin-top: -30px;
  line-height: 1.2;
}

.about-card .text p {
  font-size: 0.5rem;
  line-height: 1.25;
  color: #fff;
  opacity: 10;
  margin-top: auto;
}

/* Hover efek mengapung */
.about-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 0 50px rgba(255, 0, 200, 0.4);
}
.card {
  max-width: 300px;
  width: 105px;
  max-height: 500px;
  height: 200px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden; /* supaya gambar ikut bentuk card */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
  object-fit: cover;
  display: block;
}
.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%; /* sesuaikan ukuran gambar, bisa 60–80% */
  height: auto;
  object-fit: contain;
  display: block;
  z-index: 1;
}
/* Kotak tipis di dalam kartu */
.card::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 2px solid #d93acd; /* warna krem tipis seperti contoh */
  border-radius: 10px;
  pointer-events: none; /* supaya tidak ganggu klik */
  box-sizing: border-box;
}
.card .text {
  position: absolute;
  top: 25px; /* jarak dari atas garis dalam */
  width: 100%;
  text-align: center;
  color: inherit;
  font-size: 10px;
  z-index: 2; /* supaya tetap di atas garis */
  color: #000000;
}
/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  transition: opacity 0.3s ease;
}

.overlay.hidden {
  display: none;
}

.overlay-content {
  background: #ffffff;
  border-radius: 12px;
  padding: 150px 50px 105px;
  max-width: 850px;
  text-align: center;
  position: relative;
  animation: zoomIn 0.5s ease;
  margin-top: 80px;
}
.overlay-content h2 {
  color: #000000;
  transform: translateY(-100px);
}
.overlay-content p {
  color: #000000;
  font-size: 15px;
}
.overlay-content img {
  width: 140%;
  height: 150%;
  object-fit: contain;
  margin-left: -40px;
}
.toggle-btn {
  padding: 12px 5px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  color: #1f2937;
  background: transparent;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.timeline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-top: 50px;
  overflow: hidden;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  height: 5px;
  width: 0;
  background-color: #e6e6fa;
  z-index: 0;
  transition: width 2s ease;
}

.event {
  position: relative;
  text-align: center;
  width: 20%;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.circle {
  width: 45px;
  height: 50px;
  background-color: #e6e6fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  color: #886eaf;
  font-size: 20px;
  transform: scale(0);
  transition: transform 0.5s ease;
}

.date {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 8px;
  color: #e6e6fa;
}

.label {
  font-size: 10px;
  font-variant: small-caps;
  color: #e6e6fa;
}
.text3 {
  text-align: center;
  padding-top: 20px; /* lebih dekat ke video */
  padding-bottom: 2rem; /* tetap ada ruang ke bawah */
  padding-left: 1rem;
  padding-right: 1rem;
  transform: translateY(50px);
}
.text3 h1 {
  font-family: "Cinzel", serif;
  font-size: 2.5rem;
  font-weight: 1000;
  margin-bottom: 0.5rem;
  color: #e6e6fa;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}
.main-container {
  gap: 40px;
  flex-wrap: wrap;
  margin-left: 10px;
  margin-right: 40px;
  text-align: center;
  width: 95%; /* Lebar wadah utama */
  max-width: 1500px;
  height: 80%;
  padding: 20px;
  background-color: #e6e6fa;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
  transform: translateY(50px);
}
.prizepools-carousel-container {
  position: relative;
  padding: 0 10px;
  display: flex;
  justify-content: center; /* ✅ posisi tengah horizontal */
  align-items: center; /* ✅ posisi tengah vertikal */
}

.prizepool-container {
  background: linear-gradient(to top, #402c5c, #886eaf);
  border-radius: 20px;
  padding: 20px 20px 50px 20px; /* Padding bawah lebih besar untuk navigasi */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  min-width: 200px; /* ⭐ kurangi dari 300px */
  width: 20%; /* ⭐ tambahkan ini */
  max-width: 320px; /* ⭐ tambahkan ini */
  flex-shrink: 1; /* ⭐ ubah dari 0 */
  text-align: center;
  position: relative;
}
}
/* Extra small - 280px */
@media (max-width: 280px) {.smoke-screen {
  position: fixed;
  inset: 0;
  /* Fantasy Mist Background */

  background: black;
  backdrop-filter: blur(40px);
  overflow: hidden;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeOutSmoke 5s ease 3s forwards; /* hilang setelah 6 detik */
  display: none;
}
      .btn-gambar {
  width: 70px;     /* ukuran gambar tombol */
  cursor: pointer; /* jadi tangan saat hover */
  position: fixed;
  bottom: 20px;
  right: 15px;
  z-index: 9999;
  transition: .2s;
  top: 550px;
}

  #promo-content {
  width: 200px;
  max-width: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeScale 0.3s ease;
}

/* Gambar PROMO */
#promo-img {
  width: 150%;
  height: auto;
  display: block;

  /* MEMASTIKAN dia tidak absolute */
  position: static !important;
}

/* TEKS PROMO */
#promo-text {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  text-align: center;
  width: 100%;
}

  /* Maskot */
  .logo img {
  position: absolute;
  top: 20%;
  right: 65px;
  width: 150px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  z-index: 999;
  animation: logoReveal 1s ease forwards;
  animation-delay: 2s;
}
.maskot {
  position: absolute;
  width: 120px;
  opacity: 0;
  transform: scale(0.9);
  z-index: 2;
}
  .hero-video {
  max-width: 100%;
  width: 100%;
  max-height: 100vh; /* full tinggi layar */
  height: 80%;
  object-fit: cover; /* biar gak gepeng */
}
  .navbar {
    gap: 6px;
    padding: 5px 6px;
  }

  .lang-btn {
    padding: 4px 6px;
    font-size: 9px;
  }

  .flag {
    font-size: 11px;
  }

  .menu-box {
    padding: 0px 12px;
    gap: 15px;
    min-height: 30px;
    border-radius: 25px;
  }

  .logo1 img {
    height: 28px;
  }

  .menu-box span {
    font-size: 11px;
  }

  .menu-box a {
    font-size: 8px;
  }

  .about-card.left,
  .about-card.right {
  width: 115px;
  }
.about-card {
  position: relative;
  width: 80%;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(255, 0, 180, 0.2);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transition: all 0.5s ease;
  z-index: 1;
  top: 100px;
  left: -123px;
}

.about-card .logo-container {
  position: relative;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-card .logo {
  position: relative;
  z-index: 10;
  width: 100px;
  filter: drop-shadow(0 0 25px #ff00ff)
    drop-shadow(0 0 40px rgba(255, 255, 255, 0.3));
  transition: all 0.4s ease;
}

.about-card .logo:hover {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 40px #ff66ff) brightness(1.2);
}
.about-card .text {
  text-align: center;
}
.about-card .text h2 {
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 10px;
}
.about-card .text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #fff;
  opacity: 0.9;
  overflow-y: auto;
  text-align: center;
}
.about-card img {
  position: relative;
  z-index: 10;
}

.about-card h3,
.about-card p {
  position: relative;
  z-index: 5; /* teks di bawah logo */
}

.about-card .logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 40px #ff00ff) brightness(1.2);
}

.about-card:hover .logo {
  transform: rotate(5deg) scale(1.1);
  filter: drop-shadow(0 0 25px #ff9cff);
}

/* Teks */
.about-card .text {
  text-align: center;
}

.about-card .text h2 {
  font-size: 1rem;
  color: #ffd3ff;
  margin-bottom: 10px;
  margin-top: -30px;
  line-height: 1.2;
}

.about-card .text p {
  font-size: 0.5rem;
  line-height: 1.25;
  color: #fff;
  opacity: 10;
  margin-top: auto;
}

/* Hover efek mengapung */
.about-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 0 50px rgba(255, 0, 200, 0.4);
}
.card {
  max-width: 300px;
  width: 105px;
  max-height: 500px;
  height: 200px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden; /* supaya gambar ikut bentuk card */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
  object-fit: cover;
  display: block;
}
.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%; /* sesuaikan ukuran gambar, bisa 60–80% */
  height: auto;
  object-fit: contain;
  display: block;
  z-index: 1;
}
/* Kotak tipis di dalam kartu */
.card::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 2px solid #d93acd; /* warna krem tipis seperti contoh */
  border-radius: 10px;
  pointer-events: none; /* supaya tidak ganggu klik */
  box-sizing: border-box;
}
.card .text {
  position: absolute;
  top: 25px; /* jarak dari atas garis dalam */
  width: 100%;
  text-align: center;
  color: inherit;
  font-size: 10px;
  z-index: 2; /* supaya tetap di atas garis */
  color: #000000;
}
/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  transition: opacity 0.3s ease;
}

.overlay.hidden {
  display: none;
}

.overlay-content {
  background: #ffffff;
  border-radius: 12px;
  padding: 150px 50px 105px;
  max-width: 850px;
  text-align: center;
  position: relative;
  animation: zoomIn 0.5s ease;
  margin-top: 80px;
}
.overlay-content h2 {
  color: #000000;
  transform: translateY(-100px);
}
.overlay-content p {
  color: #000000;
  font-size: 15px;
}
.overlay-content img {
  width: 140%;
  height: 150%;
  object-fit: contain;
  margin-left: -40px;
}
.timeline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-top: 50px;
  overflow: hidden;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  height: 5px;
  width: 0;
  background-color: #e6e6fa;
  z-index: 0;
  transition: width 2s ease;
}

.event {
  position: relative;
  text-align: center;
  width: 20%;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.circle {
  width: 40px;
  height: 45px;
  background-color: #e6e6fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  color: #886eaf;
  font-size: 20px;
  transform: scale(0);
  transition: transform 0.5s ease;
}

.date {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 7px;
  color: #e6e6fa;
}

.label {
  font-size: 8px;
  font-variant: small-caps;
  color: #e6e6fa;
}
.text3 {
  text-align: center;
  padding-top: 20px; /* lebih dekat ke video */
  padding-bottom: 2rem; /* tetap ada ruang ke bawah */
  padding-left: 1rem;
  padding-right: 1rem;
  transform: translateY(50px);
}
.text3 h1 {
  font-family: "Cinzel", serif;
  font-size: 2.5rem;
  font-weight: 1000;
  margin-bottom: 0.5rem;
  color: #e6e6fa;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}
.main-container {
  gap: 40px;
  flex-wrap: wrap;
  margin-left: 7px;
  margin-right: 40px;
  text-align: center;
  width: 95%; /* Lebar wadah utama */
  max-width: 1500px;
  height: 80%;
  padding: 20px;
  background-color: #e6e6fa;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
  transform: translateY(50px);
}
.event-title {
  color: #886eaf;
  font-size: 27px;
  font-weight: bold;
  letter-spacing: 3px;
  margin-top: 10px;
}
.prizepools-carousel-container {
  position: relative;
  padding: 0 10px;
  display: flex;
  justify-content: center; /* ✅ posisi tengah horizontal */
  align-items: center; /* ✅ posisi tengah vertikal */
}

.prizepool-container {
  background: linear-gradient(to top, #402c5c, #886eaf);
  border-radius: 20px;
  padding: 20px 20px 50px 20px; /* Padding bawah lebih besar untuk navigasi */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  min-width: 180px; /* ⭐ kurangi dari 300px */
  width: 20%; /* ⭐ tambahkan ini */
  max-width: 320px; /* ⭐ tambahkan ini */
  flex-shrink: 1; /* ⭐ ubah dari 0 */
  text-align: center;
  position: relative;
}

}