/* ===== NAVBAR ===== */
html, body {
  overflow-x: hidden; /* cegah scroll horizontal */
}

.navbar {
  width: 100%;
  position: fixed; /* ganti sticky jadi fixed agar selalu muncul */
  top: 0;
  left: 0;
  background: rgba(11, 11, 15, 0.95);
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.navbar-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  gap: 10px;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #ffb700;
  text-decoration: none;
}

.logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* NAV LINKS */
.nav-links {
  max-width: 100%; /* atau 100% viewport */
  right: 0;
}


.nav-links a {
  text-decoration: none;
  font-weight: 600;
  color: #ffffff;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ffb700;
}

/* LANGUAGE SWITCHER */
.lang-switcher {
  display: flex;
  gap: 5px;
}

.lang-switcher button {
  background: none;
  border: 1px solid #fff;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.lang-switcher button:hover {
  background: #ffb700;
  color: #000;
}

/* HAMBURGER */
.hamburger {
  display: none; /* hidden untuk desktop */
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
  .navbar-container {
    justify-content: space-between;
  }

  .nav-links {
    position: fixed;   /* tetap di atas konten saat dibuka */
    top: 60px;         /* di bawah navbar */
    right: 0;
    background: rgba(11,11,15,0.95);
    flex-direction: column;
    width: 200px;
    display: none;     /* default hidden */
    padding: 10px 0;
    border-radius: 0 0 10px 10px;
    z-index: 9999;
  }

  .nav-links a {
    margin: 10px 0;
    text-align: center;
  }

  .hamburger {
    display: block;
  }

  .lang-switcher {
    margin-left: 10px;
  }
}

/* toggle class untuk hamburger */
.nav-links.active {
  display: flex;
}




:root {
  --bg: #0b0b0f;
  --card: #15151d;
  --red: #ff3b3b;
  --gold: #ffb700;
  --text: #eaeaea;
  --muted: #a0a0a0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

section {
  padding: 80px 8%;
}

h1, h2, h3 {
  font-family: 'Orbitron', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== HERO ===== */
.hero{
  min-height: 100vh;
  background: radial-gradient(circle at top,#1a0040,#05000f);
  display: flex;
  align-items: center;
}

.hero-inner{
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* TEXT LEFT */
.hero-content{
  flex: 1;
}

.hero-content h1{
  font-size: 72px;
  color: #ffb700;
  margin-bottom: 20px;
}

.hero-content p{
  font-size: 18px;
  margin-bottom: 20px;
  opacity: 0.85;
}

/* BUTTON */
.btn-group{
  margin-bottom: 15px;
}

/* CONTRACT ADDRESS */
.ca-section{
  margin-top: 10px;
}

.ca-label{
  display: block;
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 8px;
}

.ca-box{
  display: inline-block;
  padding: 14px 22px;
  border-radius: 12px;
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  background: #0b0f14;
  color: white;
  border: 1px solid rgba(255,183,0,0.5);
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 14px rgba(255,183,0,0.3);
}

.ca-box:hover{
  background: linear-gradient(135deg,#ffb700,#ff5200);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(255,183,0,0.6);
}

/* IMAGE RIGHT */
.hero-image{
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-image img{
  width: 420px;
  max-width: 100%;
  animation: float 4s ease-in-out infinite;
}

html {
  scroll-behavior: smooth;
}


@keyframes float{
  0%{ transform: translateY(0); }
  50%{ transform: translateY(-20px); }
  100%{ transform: translateY(0); }
}

/* MOBILE RESPONSIVE */
@media(max-width:768px){
  .hero-inner{
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
  }

  .hero-content h1{
    font-size: 52px;
  }

  .hero-image img{
    width: 300px;
    margin-top: 30px;
  }
}


/* ===== TRUST ===== */
.trust {
  background: #07070a;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  padding: 60px 8%;
}

.trust-card {
  background: #15151d;
  padding: 30px 25px;
  border-radius: 18px;
  text-align: center;
  transition: 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(255, 59, 59, 0.35);
}

.trust-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 15px;
}

.trust-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #ffb700;
}

.trust-card p {
  font-size: 0.95rem;
  color: #cfcfcf;
  line-height: 1.6;
}

.hero{
  min-height: 100vh;
  background: radial-gradient(circle at top, #1a0000, #000);
  display: flex;
  align-items: center;
}

.hero-inner{
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* TEXT */
.hero-content{
  flex: 1;
}

.hero-content h1{
  font-size: 72px;
  color: #ffb700;
}

.hero-content p{
  font-size: 18px;
  margin: 20px 0 30px;
  opacity: 0.85;
}

/* IMAGE */
.hero-image{
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-image img{
  width: 420px;
  max-width: 100%;
  animation: float 4s ease-in-out infinite;
}

/* FLOAT EFFECT */
@keyframes float{
  0%{ transform: translateY(0); }
  50%{ transform: translateY(-20px); }
  100%{ transform: translateY(0); }
}

/* RESPONSIVE MOBILE */
@media(max-width: 768px){
  .hero-inner{
    flex-direction: column;
    text-align: center;
    padding: 80px 30px;
  }

  .hero-content h1{
    font-size: 52px;
  }

  .hero-image img{
    width: 300px;
    margin-top: 40px;
  }
}


/* ===== ABOUT ===== */
.about {
  display: flex;            
  justify-content: space-between;
  align-items: flex-start;  
  gap: 40px;                
  padding: 80px 50px;
}

.about-text {
  flex: 1;                  
  text-align: left;          /* rapih di kiri */
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #ffb700;
}

.about-text p {
  color: #cfcfcf;
  margin-bottom: 15px;
  line-height: 1.7;
}

.mission-list {
  margin-top: 10px;
  padding-left: 20px;
}

.mission-list li {
  margin-bottom: 10px;
  color: #eaeaea;
  list-style: disc;
}

.about-image {
  flex: 1;                  
  display: flex;
  justify-content: center;  
  align-items: center;
}

.about-image img {
  max-width: 100%;
  width: 600px;   /* ukuran gambar di laptop */
  height: auto;
  border-radius: 15px;
}

/* RESPONSIVE HP */
@media(max-width: 1024px){
  .about {
    flex-direction: column; 
    gap: 30px;
    text-align: center;
  }

  .about-text, .about-image {
    flex: unset;            
  }

  .about-image img {
    width: 80%;             
  }
}



/* ===== UTILITY ===== */
.token-overview {
  padding: 80px 8%;
  background: #0b0b0f;
}

.token-overview h2 {
  text-align: center;
  font-size: 2.4rem;
  color: #ffb700;
  margin-bottom: 10px;
}

.token-subtitle {
  text-align: center;
  color: #aaa;
  margin-bottom: 50px;
}

.token-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
}

/* Token Info Box */
.token-info {
  background: #15151d;
  border-radius: 20px;
  padding: 30px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #222;
}

.info-row:last-child {
  border-bottom: none;
}

.info-row span {
  color: #aaa;
}

.info-row strong {
  color: #fff;
}

/* Utility Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: #15151d;
  padding: 25px;
  border-radius: 18px;
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 18px rgba(255, 59, 59, 0.35);
}

.card h3 {
  color: #ffb700;
  margin-bottom: 10px;
}

.card p {
  color: #cfcfcf;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 900px) {
  .token-grid {
    grid-template-columns: 1fr;
  }
}

/* === Use Case ==*/

.usecase-section {
  padding: 80px 8%;
  background: #0b0b0f;
  color: #fff;
}

.usecase-title {
  text-align: center;
  font-size: 2.4rem;
  color: #ffb700;
  margin-bottom: 10px;
}

.usecase-subtitle {
  text-align: center;
  color: #aaa;
  margin-bottom: 50px;
}

.usecase-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.usecase-card {
  background: #15151d;
  padding: 35px 30px;
  border-radius: 20px;
  text-align: center;
  transition: 0.3s ease;
}

.usecase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(255, 59, 59, 0.35);
}

.usecase-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.usecase-card h3 {
  color: #ffb700;
  margin-bottom: 12px;
}

.usecase-card p {
  color: #cfcfcf;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .usecase-card {
    padding: 30px 20px;
  }
}


/* ===== ROADMAP ===== */

.dragon-circle-roadmap{
  padding: 120px 0;
  background: #0b0b0f;
  color: #ffffff;
  text-align: center;
}
.dragon-circle-roadmap h2{
  font-size: 2rem;
  margin-bottom: 15px;
  color: #ffb700;
}
.subtitle{
  opacity: 0.7;
  margin-bottom: 50px;
}

.circle-container{
  position: relative;
  width: 420px;
  height: 420px;
  margin: auto;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,0.2);
}

/* CENTER */
.center-content{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 240px;
  transform: translate(-50%,-50%);
  background: rgba(255,255,255,0.06);
  padding: 25px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
}

/* NODES */
.node{
  position: absolute;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg,#ffb700,#ff5200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 20px rgba(255,183,0,0.6);
}

.node:hover{
  transform: scale(1.2);
}

/* POSITIONS */
.node1{ top: -10px; left: 50%; transform: translateX(-50%); }
.node2{ right: -10px; top: 50%; transform: translateY(-50%); }
.node3{ bottom: -10px; left: 50%; transform: translateX(-50%); }
.node4{ left: -10px; top: 50%; transform: translateY(-50%); }

/* MOBILE RESPONSIVE */
@media(max-width:600px){
  .circle-container{
    width: 300px;       /* lebih kecil supaya muat layar HP */
    height: 300px;
  }

  .center-content{
    width: 180px;       /* sesuaikan dengan lingkaran */
    padding: 20px;
    font-size: 14px;    /* teks lebih kecil tapi tetap terbaca */
  }

  /* POSISI NODES DI LINGKARAN */
  .node{
    width: 60px;        /* lebih kecil supaya tidak tumpang tindih */
    height: 60px;
    font-size: 20px;
  }

  .node1{ top: 0; left: 50%; transform: translateX(-50%); }
  .node2{ right: 0; top: 50%; transform: translateY(-50%); }
  .node3{ bottom: 0; left: 50%; transform: translateX(-50%); }
  .node4{ left: 0; top: 50%; transform: translateY(-50%); }
}

.dragon-circle-roadmap{
  padding: 80px 20px 120px; /* lebih ramping di atas & bawah */
}

.center-content p{
  line-height: 1.4rem;
  font-size: 13px;
}





/* ===== HOW TO BUY ===== */
.steps{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.step{
  background: var(--card);
  border-radius: 18px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s ease;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

/* IMAGE FULL */
.step img{
  width: 100%;
  height: 100%;
  object-fit: contain; /* ganti cover kalau mau penuh banget */
  transition: transform 0.4s ease;
  padding: 25px;
}

/* HOVER EFFECT */
.step:hover{
  background: linear-gradient(50deg,#ff0000,#ff6a00);
  transform: translateY(-6px);
}

.step:hover img{
  transform: scale(1.08);
}

/* MOBILE */
@media(max-width:768px){
  .step{
    height: 140px;
  }
}



/* ===== COMMUNITY ===== */
.community {
  text-align: center;
}

.socials {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 25px;
  font-weight: 600;
}

.btn{
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  color: white;
  background: linear-gradient(50deg,#ff0000,#ff6a00);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.btn:hover{
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(203, 1, 1, 0.6);
}

/* ICON DALAM BUTTON */
.icon-btn img{
  width: 20px;
  height: 20px;
  object-fit: contain;
}


/* ===== FOOTER ===== */
footer {
  background: #050507;
  padding: 30px 8%;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ===== RESPONSIVE BUTTON MOBILE ===== */
@media (max-width: 768px) {

  .btn {
    width: 100%;          /* tombol full width */
    justify-content: center; /* icon + teks tetap di tengah */
    padding: 14px 0;      /* lebih mudah di klik */
    font-size: 1rem;      /* sedikit lebih besar untuk readability */
    gap: 8px;             /* jarak icon dan teks lebih rapat */
  }

  .icon-btn img {
    width: 18px;           /* icon lebih proporsional di tombol full width */
    height: 18px;
  }

  .socials {
    flex-direction: column;  /* tombol sosial vertikal */
    gap: 15px;
    align-items: center;
  }
}

.hero-inner, .about, .token-overview, .steps {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box; /* pastikan padding masuk hitungan width */
  padding: 0 20px;        /* jangan terlalu besar di HP */
}

.hero-image img, .about-image img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .hero-inner {
    padding: 0 20px;
  }

  .about {
    padding: 40px 20px;
  }

  .token-overview {
    padding: 40px 20px;
  }

  .steps {
    padding: 0 10px;
  }
}
