body {
  background-color: #0F0E2F; /* warna hitam */
  margin: 0;
    min-height: 200vh; /* biar bisa discroll */

}


html {
  scroll-behavior: smooth;
}

.wrapper {
    margin: 0px;
}

.content {
    margin: 0px;
}

@font-face {
  font-family: 'Circular';
  src: url('assets/fonts/circular-bold.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Inter-Bold';
  src: url('assets/fonts/inter-bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Inter-Medium';
  src: url('assets/fonts/inter-medium.ttf') format('truetype');
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: 'Inter-Semibold';
  src: url('assets/fonts/inter-semibold.ttf') format('truetype');
  font-style: normal;
}

@font-face {
  font-family: 'Inter-Regular';
  src: url('assets/fonts/inter-regular.ttf') format('truetype');
  font-style: normal;
    font-weight: normal;
}

#wrapper, #content {
  overflow: visible;
}

.logo-top {
  display: flex;
  justify-content: center; /* biar horizontal tengah */
  align-items: center; /* biar vertikal rapi */
  padding-top: 30px; /* jarak dari atas */
}

.logo-top img {
  width: 120px; /* atur ukuran logo, bisa ubah sesuai selera */
  height: auto; /* biar proporsional */
}

.top-title .title-1 {
  font-family: 'Inter-Bold';
  color: #FFFFFF; /* warna putih */
  font-size: 95px;
  line-height: -10rem;
  letter-spacing: -5px;
  text-align: center;
  margin-top: 90px;
}

.top-title .title-2 {
  font-family: 'Inter-Bold';
  color: #FFFFFF; /* warna putih */
  font-size: 95px;
  letter-spacing: -5px;
  text-align: center;
  margin-top: -88px;
}

.header-top {
  justify-content: center; /* biar horizontal tengah */
  align-items: center; /* biar vertikal rapi */
  margin-top: 126px;
}

.sub-title {
    font-family: 'Inter-Regular';
    color: #CACAD1; /* warna putih */
    font-size: 16px;
    text-align: center;
    margin-top: -45px;
    padding-left: 100px;
    padding-right: 100px;
    line-height: 22px;
}

.btn-started {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.main-started {
  background-color: #FFFFFF;
  font-family: 'Inter-Semibold';
  color: #0F0E2F;
  letter-spacing: -0.5px;
  font-size: 16px;
  padding: 7px 20px;
  border-radius: 50px;
  cursor: pointer;
    transition: all 0.3s ease;
}

.main-started:hover {
  background-color: #ffffff;
  color: #0F0E2F;
  transform: scale(1.05);
}

.main-started-bot {
  background-color: #FFFFFF;
  font-family: 'Inter-Semibold';
  color: #0F0E2F;
  letter-spacing: -0.5px;
  font-size: 16px;
  padding: 7px 20px;
  border-radius: 50px;
  cursor: pointer;
    transition: all 0.3s ease;
}

.main-started-bot:hover {
  background-color: #ffffff;
  color: #0F0E2F;
  transform: scale(1.05);
}

/* === MODAL BACKGROUND === */
.login-modal {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 14, 47, 0.6);
  justify-content: center;
  align-items: center;
}

/* === LOGIN BOX (2 COLUMN) === */
.login-box {
  display: flex;
  width: 800px;
  height: 35rem;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  animation: popUp 0.3s ease;
}

@keyframes popUp {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* === LEFT SIDE === */
.login-left {
  flex: 1;
  background: linear-gradient(160deg, #3700B3, #1D1C46);
  color: white;
  padding: 17px 40px;
  display: flex;
  flex-direction: column;
}

.login-left img {
  width: 7rem;
  margin-top: 1.5rem;
}

.login-left h1 {
  font-size: 2rem;
  line-height: -5.3px;
  letter-spacing: -1px;
  margin-top: 17rem;
  font-family: 'Inter-SemiBold';
}

.login-left span {
  font-size: 14px;
  opacity: 0.9;
  font-family: 'Inter-Regular';
}

.login-left .small-text {
  opacity: 0.8;
  font-size: 13px;
}

/* === RIGHT SIDE === */
.login-right {
  flex: 1;
  padding: 50px 40px;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 22px;
  cursor: pointer;
  color: #666;
  transition: 0.2s;
}
.close-btn:hover { color: #ff2a6d; }

.login-right h2 {
  font-family: 'Inter-Bold';
  letter-spacing: -1px;
  color: #0F0E2F;
}

.login-right form label, input {
  font-family: 'Inter-Medium';
  letter-spacing: -0.2px;
  padding-right: 40px;
}

.sub-text {
  font-size: 14px;
  color: #666;
  margin-bottom: 2rem;
  letter-spacing: -0.5px;
  margin-top: -0.9rem;
  font-family: 'Inter-Regular';
}

.login-right label {
  font-size: 13px;
  display: block;
  text-align: left;
  margin-top: 10px;
  margin-bottom: 5px;
  color: #333;
}

.login-right input {
  width: 95%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 1rem;
}

.terms {
  text-align: left;
  font-size: 13px;
  color: #444;
  margin-top: 10px;
}

.terms a {
  color: #5a3aff;
  text-decoration: none;
}

.login-btn {
  width: 100%;
  background: #201D53;
  border: none;
  color: white;
  padding: 10px;
  border-radius: 50px;
  margin-top: 11rem;
  font-family: 'Inter-SemiBold';
  cursor: pointer;
  transition: 0.3s;
}
.login-btn:hover {
  background: #3d29c3;
}

.signup-text {
  margin-top: 15px;
  font-size: 13px;
  font-family: 'Inter-Medium';
}

.signup-text a {
  color: #5a3aff;
  text-decoration: none;
    font-family: 'Inter-Medium';
}


.partnership {
    justify-content: center;
    align-items: center;
    margin-top: 90px;
    margin-bottom: 50px;
}

.partnership .partner-subtitle {
    font-family: 'Inter-Medium';
    color: #504F67; /* warna putih */
    font-size: 16px;
    text-align: center;
    margin-bottom: 20px;
}

.partnership .partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px; /* jarak antar logo */
}

.running-section {
  background-color: #272644;
  border: 1px solid #ffffff;
  margin-top: 90px;
  overflow: hidden; /* penting! biar teks yang keluar area gak kelihatan */
  white-space: nowrap; /* biar teksnya gak turun ke bawah */
}

.running-section .running-text {
  display: inline-block;
  margin: 8px;
  animation: scrollText 20s linear infinite; /* ini animasinya */
}

.running-section p {
  font-family: 'Inter-Medium';
  color: #ffffff;
    letter-spacing: -0.5px;
  font-size: 19px;
  display: inline-block;
  padding-left: 100%; /* start dari kanan */
}

/* Keyframes buat animasi jalan ke kiri */
@keyframes scrollText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.about 
{
    background-color: #1D1C46;
    border-bottom-left-radius: 30px;  /* sudut kiri bawah */
    border-bottom-right-radius: 30px; /* sudut kanan bawah */
}

.logo-star {
  display: flex;
  justify-content: center; /* biar horizontal tengah */
  align-items: center; /* biar vertikal rapi */
  padding-top: 100px; /* jarak dari atas */

}

.logo-star img {
  width: 30px; /* atur ukuran logo, bisa ubah sesuai selera */
  height: auto; /* biar proporsional */
}

.sec-title {
  text-align: center;

}


.sec-title .sctitle-1 {
  font-family: 'Inter-Semibold';
  color: #FFFFFF; /* warna putih */
  font-size: 55px;
  letter-spacing: -3px;
  text-align: center;
    overflow: hidden;
  margin-top: 20px;
}

.sec-title .sctitle-2 {
  font-family: 'Inter-Semibold';
  color: #FFFFFF; /* warna putih */
  font-size: 55px;
  letter-spacing: -3px;
    overflow: hidden;

  text-align: center;
  margin-top: -48px;
}

.sub-sctitle {
    font-family: 'Inter-Regular';
    color: #CACAD1; /* warna putih */
    font-size: 16px;
    text-align: center;
    margin-top: -5px;
    padding-left: 100px;
    padding-right: 100px;
    line-height: 22px;
}

.split-container {
    margin-top: -80px;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 80px 0;
      margin-bottom: -80px;

}

.split {
  max-width: 900px;
  text-align: center;
  color: #CACAD1;
  font-family: 'Inter-Regular';
  font-size: 16px;
  line-height: 22px;
}

.line {
  overflow: hidden;
}


.event-card {
    
  position: relative;
  width: 300px; /* sesuai referensimu */
  height: 512px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #1b1b3a;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
  margin: 50px auto;
  display: flex;
  align-items: flex-end;
  border: white 1px solid;
  justify-content: center;
}

.event-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
}


.event-overlay {
  position: relative;
  z-index: 2;
  background: linear-gradient(to top, #3B378B 5%, rgba(15,14,47,0.3) 70%);
  width: 100%;
  height: 100%;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* 🔥 ini kuncinya */
  text-align: center;
}

.top-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
}

/* styling teks bawah */
.bottom-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.event-title {
  font-family: 'Inter-Bold';
  font-size: 45px;
  color: #ffffff;
  line-height: 38px;
  letter-spacing: -1.5px;
  margin: 0;
}

.event-footer {
  font-family: 'Inter-Medium';
  font-size: 12px;
  padding: 4px 16px;
  background-color: #201D53;
  color: white;
    border-radius: 20px;
  margin-top: 10px;
}

.event-overlay .presents {
  font-family: 'Inter-Semibold';
  font-size: 13px;
  color: white;
  letter-spacing: -0.5px;
  margin-bottom: 2px;
}

.event-overlay .remaining {
  font-family: 'Inter-Medium';
  font-size: 12px;
    letter-spacing: -0.5px;
  color: white;
  margin-top: 0; /* biar lebih rapet */
}

.slider-container {
  position: relative;
  width: 95%;
  margin: 50px auto;
  overflow: hidden;
}

.slider {
    margin-top: -40px;
  display: flex;
  gap: 20px;
  scroll-behavior: smooth;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  
}



.event-card {
  flex: 0 0 auto;
  scroll-snap-align: center;
}

/* Tombol kiri kanan */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 5;
  font-size: 24px;
  transition: background-color 0.3s ease;
}

.slider-btn:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }

/* Sembunyikan scrollbar */
.slider::-webkit-scrollbar {
  display: none;
}

.button-container {
  display: flex;
  justify-content: center;
  align-items: center; /* biar sejajar secara vertikal */
  margin-top: 30px;
  gap: 10px;
}

.button-container .previous-left {
  opacity: 75%;
  font-family: 'Inter-Semibold';
  background-color: #343358;
  color: white;
  letter-spacing: -0.5px;
  font-size: 20px; /* lebih kecil dari main */
  padding: 7px 18px; /* padding juga disesuaikan */
  border-radius: 50px;
  line-height: 1; /* biar tinggi teksnya gak nambah */
}

.button-container .main {
  font-family: 'Inter-Semibold';
  background-color: #3700B3;
  color: white;
  letter-spacing: -0.5px;
  font-size: 22px;
  padding: 7px 20px;
  border-radius: 50px;
}

.button-container .previous-right {
    opacity: 75%;
  font-family: 'Inter-Semibold';
  background-color: #343358;
  color: white;
  letter-spacing: -0.5px;
  font-size: 20px; /* lebih kecil dari main */
  padding: 7px 18px; /* padding juga disesuaikan */
  border-radius: 50px;
  line-height: 1; /* biar tinggi teksnya gak nambah */
}

.feature 
{
    background-color: #0F0E2F;
    border-bottom-left-radius: 30px;  /* sudut kiri bawah */
    border-bottom-right-radius: 30px; /* sudut kanan bawah */
    margin-bottom: 50px;
}

.thi-title .thtitle-1 {
  font-family: 'Inter-Semibold';
  color: #FFFFFF; /* warna putih */
  font-size: 55px;
  margin-bottom: 80px;
  letter-spacing: -3px;
  text-align: center;
  
}

.thi-title .thtitle-2 {
  font-family: 'Circular';
  color: #FFFFFF; /* warna putih */
  font-size: 200px;
  letter-spacing: -15px;
  text-align: center;
  margin-top: -48px;
}

.sub-thtitle {
    font-family: 'Inter-Regular';
    color: #CACAD1; /* warna putih */
    font-size: 16px;
    text-align: center;
    margin-top: 30px;
    padding-left: 100px;
    padding-right: 100px;
    line-height: 22px;
}

.big-logo {
  display: block;
  margin: -14rem auto 6rem auto; /* atas kanan bawah kiri */
  height: auto;
  transform: translateY(80px); /* geser dikit ke bawah dulu */
}

.card-feature-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 50px;
}

/* CARD UTAMA */
.feature-card {
  position: relative;
  width: 280px;
  height: 280px;
  background-color: #02DAC5;
  border: 1px solid white;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* biar isi (h2 + p) nempel di bawah */
  color: #0F0E2F;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

/* NOMOR DI POJOK KIRI ATAS */
.feature-card .number {
  position: absolute;
  top: 20px;
  left: 20px;
  border: 2px solid #0F0E2F;
  border-radius: 50%;
  padding: 10px 18px;
  font-size: 20px;
  font-family: 'Inter-Semibold';
  color: #0F0E2F;
}

/* TITLE DAN SUBTITLE */
.feature-card .feature-title {
  font-family: 'Inter-Bold';
  font-size: 26px;
  letter-spacing: -0.5px;
}

.feature-card .feature-subtitle {
  font-family: 'Inter-Medium';
  font-size: 16px;
  color: #0F0E2F;
  margin-top: -15px;
  letter-spacing: -0.5px;
  line-height: 1.4;
}

/* BIAR ADA JARAK ANTARA ANGKA & TEXT */
.feature-card::before {
  content: "";
  display: block;
  height: 40px; /* buat ngasih jarak antara angka di atas & text di bawah */
}

.marquee-wrapper {
  overflow: hidden;
  padding: 30px 0;
}

/* Struktur dasar */
.marquee {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.marquee-content {
  display: flex;
  flex-shrink: 0;
    gap: 15px;

}

.marquee span {
  display: inline-block;
  background-color: #272644;
  color: white;
  font-family: 'Inter-Medium';
  font-size: 23px;
  padding: 5px 20px;
  border-radius: 50px;
  letter-spacing: -0.5px;
}

/* Animasi jalan */
.marquee-top .marquee-content {
    margin-bottom: 15px;
  animation: scrollRight 30s linear infinite;
}

.marquee-bottom .marquee-content {
  animation: scrollLeft 30s linear infinite;
}

@keyframes scrollRight {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(0); }
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Hover pause */
.marquee:hover .marquee-content {
  animation-play-state: paused;
}


.ready-section {
  background-color: #1D1C46;
   border-top-left-radius: 30px;  /* sudut kiri bawah */
    border-top-right-radius: 30px; /* sudut kanan bawah */
  padding-bottom: 150px;
  padding-top: 80px;
}

.fou-title .foutitle-1 {
  font-family: 'Inter-Semibold';
  color: #FFFFFF; /* warna putih */
  font-size: 70px;
  letter-spacing: -3px;
  text-align: center;
  margin-top: 20px;
}

.fou-title .foutitle-2 {
  font-family: 'Inter-Semibold';
  color: #FFFFFF; /* warna putih */
  font-size: 70px;
  letter-spacing: -3px;
  text-align: center;
  margin-top: -65px;
}

.sub-foutitle {
    font-family: 'Inter-Regular';
    color: #CACAD1; /* warna putih */
    font-size: 16px;
    text-align: center;
    margin-top: -20px;
    padding-left: 100px;
    padding-right: 100px;
    line-height: 22px;
}

.footer {
  background-color: #111111;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 60px 100px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  font-family: 'Inter', sans-serif;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo .star {
  font-size: 30px;
  font-weight: bold;
  color: #fff;
}

.footer-logo .logo-img {
  height: 44px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* biar putih kalo logo gelap */
}

.footer-copy {
  font-size: 17px;
  color: #9b9b9b;
  margin-top: 1px;
  font-family: 'Inter-Medium';
  letter-spacing: -0.5px;
}

.footer-right {
  text-align: left;
  margin-top: -25px;
}

.footer-connect {
  font-size: 14px;
  color: #9b9b9b;
  margin-bottom: 10px;
}

.footer-social {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-social li {
  font-size: 15px;
  color: #9b9b9b;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.footer-social i {
  font-size: 16px;
  color: #9b9b9b;
}

/* Responsive */
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 40px;
  }
  .footer-right {
    text-align: center;
  }
  .footer-social li {
    justify-content: center;
  }
}

#splash {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: #fff; /* awal putih */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow: hidden;
  }

  .circle {
    position: absolute;
    top: -50%;
    width: 100px;
    height: 100px;
    background: #1c1845; /* biru dongker */
    border-radius: 50%;
  }