/* === Global === */
body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background: radial-gradient(circle at top left, #1e1e2f, #0c0c13);
  color: #eee;
  text-align: center;
  overflow-x: hidden;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* === Animated Background === */
#animatedBg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url("bg.gif") no-repeat center center fixed;
  background-size: cover;
  opacity: 0.3;
  pointer-events: none;
}

/* === Logo === */
#globalLogo {
  margin-top: 40px;
}
#globalLogo img {
  width: 300px;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
  border-radius: 50%;
}
@media screen and (max-width: 480px) {
  #globalLogo img {
    width: 180px;
  }
}

/* === Welcome Banner === */
.welcome {
  max-width: 700px;
  padding: 20px;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  margin: 20px auto;
}
.welcome h3 {
  color: #00ffc3;
}

/* === Intro Section === */
#introText.container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px 10%;
  margin-top: 20px;
}
.intro {
 background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 12px;
  text-align: left;
  font-size: 14px;
  box-shadow: 0 0 20px rgba(0, 255, 150, 0.05);
}
.intro h3 {
  color: #66CDAA;
}

.intro.right {
  width: 100%;
  box-sizing: border-box;
}


/* === Login Area === */
#loginArea {
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 12px;
  max-width: 300px;
  margin: 0;
  box-shadow: 0 0 20px rgba(0, 255, 150, 0.1);
}
#loginArea {
  padding-top: 24px; /* tambahan agar rata atas dengan intro */
}

#loginArea h2 {
  color: #00ffc8;
  margin-bottom: 16px;
}
#loginArea input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  background-color: #2a2a2a;
  border: 1px solid #333;
  border-radius: 8px;
  color: #fff;
}
#loginArea button {
  width: 100%;
  padding: 12px;
  background: #00c896;
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: bold;
  cursor: pointer;
}
#loginArea button:hover {
  background-color: #009e75;
}

/* === Register Button Khusus === */
.btn-register {
  background-color: #FFD700 !important;
  color: #000 !important;
  border: 2px solid #ffa500;
}
.btn-register:hover {
  background-color: #ffb300 !important;
}
#loginArea input,
#loginArea button {
  width: 100%;
  box-sizing: border-box; /* penting agar padding tidak menambah lebar */
}

.btn-email-login {
  background-color: #0077ff !important;
  color: #fff !important;
  font-weight: bold;
  border: 2px solid #3399ff;
  transition: background 0.3s ease;
}
.btn-email-login:hover {
  background-color: #005fcc !important;
}



/* === App Area === */
#appArea {
  padding: 30px 20px;
}

/* === Booster Banner === */
.booster-banner {
  background: linear-gradient(135deg, #00ffc3, #007a8e);
  padding: 12px 26px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  color: #000;
  width: 90%;
  max-width: 450px;
  min-height: 100px;
  text-align: center;
}
.booster-banner h3 {
  margin-top: 0;
  font-size: 20px;
}
.booster-banner p {
  font-size: 12px;
  margin: 10px 0 16px;
}
.chain-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.chain-icons img {
  width: 30px;
  height: 30px;
}
.booster-banner button {
  padding: 10px 24px;
  background: #000;
  color: #00ffc3;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}
.booster-banner button:hover {
  background: #111;
}

/* === Card Style === */
.card {
  background: #1e1e1e;
  padding: 20px;
  border-radius: 10px;
  margin: 20px auto;
  max-width: 400px;
}

/* === Global Button (di luar LoginArea) === */
button {
  padding: 10px 18px;
  margin: 5px 0;
  background: #2ecc71;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
}
button:hover {
  background-color: #27ae60;
}

/* === Responsive === */
@media screen and (max-width: 768px) {
  #introText.container {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 20px;
  }
  .intro {
    text-align: center;
  }
}

/* === Intro + Login Layout Baru === */
#topLayout {
  display: grid;
  grid-template-columns: 2fr 1fr; /* kiri 2 bagian, kanan 1 bagian */
  gap: 30px;
  padding: 40px 10%;
  align-items: start;
}

@media screen and (max-width: 768px) {
  #topLayout {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}


.project-banner {
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
  border-radius: 10px;
  margin-top: 20px;
  font-size: 13px;
  color: #ccc;
  line-height: 1.6;
}
.project-banner h4 {
  color: #00ffc3;
  margin-bottom: 8px;
}

.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  background: #111;
  color: #00ffc3;
  padding: 10px 0;
}

.marquee-text {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 15s linear infinite;
}

.marquee-container:hover .marquee-text {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.icon-small1 {
  width: 35px;
  height: 35px;
  margin-bottom: 15px;
  vertical-align: middle;
  filter: drop-shadow(0 0 3px #00ffc3); /* opsional efek glow */
}
.icon-small {
  width: 22px;
  height: 22px;
  margin: 0 4px;
  vertical-align: middle; /* penting agar sejajar dengan teks */
  display: inline-block;
}
.logo-inline {
  display: flex;
  align-items: center;
  justify-content: center; /* agar tetap di tengah */
  gap: 10px; /* jarak antara ikon dan teks */
}

.icon-inline {
  width: 30px;
  height: 30px;
  vertical-align: middle;
  filter: drop-shadow(0 0 3px #00ffc3); /* opsional glow */
  margin-top: -3px; /* opsional koreksi tinggi agar pas */
}

.roadmap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
  margin-top: 16px;
}

.roadmap-phase {
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
  border-radius: 10px;
  color: #ccc;
  font-size: 13px;
  box-shadow: 0 0 10px rgba(0,255,150,0.05);
}

.roadmap-phase h4 {
  color: #00ffc3;
  margin-bottom: 10px;
  font-size: 15px;
}

.roadmap-phase ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.roadmap-phase li {
  margin-bottom: 6px;
}
