body {
  font-family: Inter, system-ui, Arial;
  background: #0b1220;
  color: #e6eef8;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 0;
}

.container { 
  flex: 1;
  max-width: 480px;
  width: 100%;
  padding: 20px;
  margin: 0 auto;
  padding-top: 60px; /* beri jarak dari footer fixed di atas */
}

/* Judul */
h1 { 
  text-align: center; 
  font-size: 22px; 
  margin-bottom: 12px; 
  color: #0ee; 
}

/* Card */
.card { 
  background: linear-gradient(180deg,#0f1724 0%, #071023 100%);
  border-radius: 12px; 
  padding: 15px; 
  margin-bottom: 16px; 
  box-shadow: 0 8px 20px rgba(2,6,23,0.6); 
}

/* Row */
.row { 
  display: flex; 
  justify-content: space-between; 
  margin: 6px 0; 
  font-size: 14px; 
}

/* Button */
.btn { 
  width: 100%; 
  background: #5a3aff; 
  color: #022; 
  padding: 10px; 
  border-radius: 8px; 
  border: 0; 
  cursor: pointer; 
  font-weight: 600; 
  margin-top: 6px; 
  transition: 0.2s; 
}
.btn:hover { background: #14b9b7; }

/* NFT Grid */
.nft-grid {
  display: grid;
  grid-template-columns: repeat(3, 120px);
  gap: 10px;
  justify-content: center;
  margin-top: 10px;
}
.nft-card, .booster-card {
  width: 100px;
  height: 100px;
  border: 1px solid #aaa;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nft-card img, .booster-card img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}

/* Status */
.status { 
  padding: 8px; 
  margin-top: 8px; 
  background: rgba(255,255,255,0.02); 
  border-radius: 8px; 
  font-size: 13px; 
}

/* Progress */
.progress-bar { 
  height: 8px; 
  background: #022; 
  border-radius: 4px; 
  overflow: hidden; 
  margin-top: 4px; 
}
.progress-fill { 
  height: 100%; 
  background: #0ea5a3; 
  width: 0%; 
  transition: width 0.3s ease; 
}

/* Links */
a { 
  color: #0ee; 
  text-decoration: none; 
  font-size: 12px; 
}

/* Footer */
.footer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #222;
  color: #fff;
  text-align: center;
  padding: 12px;
  box-sizing: border-box;
  font-size: 14px;
  z-index: 1000;
}

.social-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-brand img {
  width: 30px;
  height: 30px;
}

/* Tombol di footer */
.btn-docs,
.btn-presale {
  display: inline-block;
  padding: 10px 18px;
  background: #5a3aff;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.2s;
}
.btn-docs:hover { background: #3a25b6; }
.btn-docs i, .btn-presale i { margin-right: 6px; }

.btn-presale.disabled {
  background: #8884cc;
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.7;
}

/* Style banner */
    #cookieBanner {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: #222;
      color: #fff;
      padding: 15px;
      text-align: center;
      font-size: 14px;
      display: none;
      z-index: 9999;
    }
    #cookieBanner button {
      background: #4CAF50;
      color: white;
      border: none;
      padding: 8px 16px;
      margin-left: 10px;
      cursor: pointer;
      border-radius: 4px;
    }
    #cookieBanner a {
      color: #00c3ff;
      text-decoration: underline;
    }	
/* Responsive */
@media (max-width: 520px) {
  .row { flex-direction: column; }
}
@media (max-width: 500px) {
  body { padding: 1rem; }
}

