/* =========================
   BKHS FINAL — CLEAN PREMIUM
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: radial-gradient(circle at 50% 0%, #0f1116, #050506 70%);
  color: #eaeaea;
  line-height: 1.6;
}

/* =========================
   LAYOUT
========================= */

.container {
  max-width: 1150px;
  margin: auto;
  padding: 40px 20px;
}

section {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* =========================
   HERO
========================= */

.hero {
  text-align: center;
  padding-top: 80px;
}

.hero img {
  width: 260px;
  margin-bottom: 30px;
  filter: drop-shadow(0 10px 40px rgba(200,169,106,0.35));
}

h1 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 10px;
}

.tagline {
  color: #c8a96a;
  font-size: 16px;
  margin-bottom: 30px;
}

/* =========================
   BUTTONS
========================= */

.cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta a {
  padding: 12px 26px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.25s;
}

.btn-primary {
  background: #c8a96a;
  color: #111;
}

.btn-primary:hover {
  background: #e0c588;
}

.btn-outline {
  border: 1px solid rgba(200,169,106,0.6);
  color: #c8a96a;
}

.btn-outline:hover {
  background: rgba(200,169,106,0.1);
}

/* =========================
   BADGES
========================= */

.badges {
  margin-top: 20px;
  color: #c8a96a;
  font-size: 14px;
  line-height: 1.7;
}

/* =========================
   SECTION TITLE
========================= */

h2 {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

h2::after {
  content: "";
  width: 60px;
  height: 2px;
  background: #c8a96a;
  display: block;
  margin: 12px auto 0;
  opacity: 0.6;
}

/* =========================
   LOCK SECTION
========================= */

.lock-section {
  text-align: center;
}

.lock-bar {
  width: 100%;
  max-width: 500px;
  margin: 20px auto;
  background: #1a1c22;
  border-radius: 30px;
  overflow: hidden;
}

.locked {
  background: #c8a96a;
  color: #111;
  padding: 10px;
  font-weight: 600;
}

/* =========================
   TOKEN GRID
========================= */

.token-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: linear-gradient(145deg, #0f1116, #0a0c10);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 28px;
  border-radius: 14px;
  text-align: center;
  position: relative;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-6px);
  border-color: #c8a96a;
  box-shadow: 0 10px 40px rgba(200,169,106,0.15);
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: radial-gradient(circle at top, rgba(200,169,106,0.08), transparent 70%);
  opacity: 0;
  transition: 0.3s;
}

.card:hover::after {
  opacity: 1;
}

.card h3 {
  color: #c8a96a;
  margin-bottom: 8px;
}

/* =========================
   WALLET
========================= */

.wallet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.wallet {
  background: #0f1116;
  border: 1px solid rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 12px;
  transition: 0.3s;
}

.wallet:hover {
  border-color: #c8a96a;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(200,169,106,0.12);
}

.wallet h3 {
  color: #c8a96a;
  margin-bottom: 8px;
}

.wallet p {
  font-size: 13px;
  color: #aaa;
  word-break: break-all;
}

.wallet a {
  margin-top: 10px;
  display: inline-block;
  font-size: 13px;
  color: #c8a96a;
}

/* =========================
   CONTRACT
========================= */

.contract-box {
  background: #0f1116;
  border: 1px solid rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  color: #c8a96a;
}

/* =========================
   FOOTER
========================= */

footer {
  text-align: center;
  padding: 60px 0;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.footer-links a {
  font-size: 13px;
  color: #c8a96a;
  padding: 6px 12px;
  border: 1px solid rgba(200,169,106,0.3);
  border-radius: 20px;
  transition: 0.25s;
}

.footer-links a:hover {
  background: rgba(200,169,106,0.1);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
  h1 {
    font-size: 34px;
  }

  .hero img {
    width: 200px;
  }
}

/* ===== FINAL POLISH (WAJIB) ===== */

/* BACKGROUND DEPTH */
body {
  background: radial-gradient(circle at 50% -10%, #1a1c22, #050506 70%);
}

/* CARD UPGRADE */
.card {
  background: linear-gradient(145deg, #111318, #0a0c10);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.card:hover {
  border-color: #c8a96a;
  box-shadow:
    0 10px 40px rgba(200,169,106,0.15),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

/* WALLET */
.wallet {
  background: linear-gradient(145deg, #111318, #0a0c10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.wallet:hover {
  box-shadow: 0 10px 30px rgba(200,169,106,0.12);
}

/* GOLD UPGRADE */
h3 {
  color: #e6c889;
}

.wallet a {
  color: #e6c889;
}

.hero img {
  width: 260px;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(200,169,106,0.4));
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.hero img {
  animation: float 6s ease-in-out infinite, glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
  from { filter: drop-shadow(0 0 10px rgba(200,169,106,0.3)); }
  to { filter: drop-shadow(0 0 40px rgba(200,169,106,0.8)); }
}

.contract-box {
  text-align: center;
  padding: 15px;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  word-break: break-all;
}


/* BKHS Dex Section START */
.bkhs-dex-section {
  background: #0d0d0d;
  text-align: center;
}

.bkhs-container {
  max-width: 1100px;
  margin: 0 auto;
}

.bkhs-title {
  font-size: 32px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 10px;
}

.bkhs-subtitle {
  font-size: 16px;
  color: #aaaaaa;
  margin-bottom: 30px;
}

.bkhs-chart-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0,0,0,0.6);
  margin-bottom: 30px;
}

.bkhs-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.bkhs-btn {
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.bkhs-btn.primary {
  background: #00ffa3;
  color: #000;
}

.bkhs-btn.primary:hover {
  background: #00cc82;
}

.bkhs-btn.secondary {
  border: 1px solid #444;
  color: #fff;
}

.bkhs-btn.secondary:hover {
  border-color: #00ffa3;
  color: #00ffa3;
}
/* BKHS Dex Section END */

/* FIX ALIGN SEMUA SECTION */
.bkhs-dex-section,
.bkhs-gecko-section {
  padding: 80px 0;
}

.bkhs-gecko-section {
  background: rgba(255,255,255,0.02);
}

/* FIX CTA POSITION */
.bkhs-cta-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

/* Pastikan tetap center di semua kondisi */
.bkhs-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
.bkhs-btn.primary {
  box-shadow: 0 0 15px rgba(0,255,163,0.3);
}

.bkhs-btn.secondary:hover {
  background: rgba(0,255,163,0.1);
}