/* === Mz-Cuan Navbar Upgrade === */

body {
  overflow-x: hidden;
}

.top {
  background: #07111f !important;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 0;
  z-index: 999;
}

.wrap.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 16px 10px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.logo {
  display: flex !important;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
  color: #ffffff !important;
  flex-shrink: 0;
}

.logo .mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(34,197,94,0.22);
}

.logo-title {
  color: #ffffff !important;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.1;
}

.logo small {
  color: #cbd5e1 !important;
  font-size: 12px;
}

.menu {
  display: flex !important;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  white-space: nowrap;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 6px 2px 10px;
  flex: 1;
}

.menu::-webkit-scrollbar {
  height: 4px;
}

.menu::-webkit-scrollbar-track {
  background: transparent;
}

.menu::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.35);
  border-radius: 999px;
}

.menu a {
  flex: 0 0 auto;
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 800;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.2s ease;
}

.menu a:hover,
.menu a.active {
  background: #16a34a !important;
  border-color: #16a34a !important;
  color: #ffffff !important;
}

.search {
  display: flex !important;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.search input {
  width: 180px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid #334155;
  padding: 0 12px;
  outline: none;
}

.search button {
  height: 38px;
  border: none;
  border-radius: 10px;
  padding: 0 16px;
  background: #16a34a;
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
}

.search button:hover {
  background: #15803d;
}

@media (max-width: 768px) {
  .wrap.nav {
    align-items: flex-start;
  }

  .logo {
    width: 100%;
  }

  .search {
    width: 100%;
    order: 2;
  }

  .search input {
    width: 100%;
  }

  .menu {
    width: 100%;
    order: 3;
  }

  .menu::before {
    content: "Geser menu →";
    color: #cbd5e1;
    font-size: 12px;
    font-weight: 600;
    padding-right: 6px;
  }

  .menu a {
    font-size: 13px;
    padding: 7px 12px;
  }
}

/* Info Coin source note */
.source-note {
  font-size: 13px;
  color: #64748b;
  margin-top: -4px;
  margin-bottom: 14px;
}

/* Legal pages readability */
.section p {
  white-space: pre-line;
  line-height: 1.75;
  color: #334155;
}

.section h1 {
  margin-bottom: 14px;
}

.section h2 {
  margin-top: 22px;
  margin-bottom: 8px;
  font-size: 20px;
  color: #0f172a;
}

/* Legal page polish */
.legal-page {
  max-width: 900px;
  margin: 40px auto;
  padding: 28px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
}

.legal-page h1 {
  font-size: 30px;
  margin-bottom: 18px;
  color: #0f172a;
}

.legal-text {
  white-space: pre-line;
  line-height: 1.8;
  font-size: 15px;
  color: #334155;
}

.legal-text::first-line {
  font-weight: 500;
}

@media (max-width: 768px) {
  .legal-page {
    margin: 20px 12px;
    padding: 20px;
    border-radius: 14px;
  }

  .legal-page h1 {
    font-size: 24px;
  }

  .legal-text {
    font-size: 14px;
    line-height: 1.75;
  }
}

/* Contact page polish */
.contact-page {
  max-width: 980px;
  margin: 40px auto;
}

.contact-intro {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 18px;
}

.contact-cards {
  margin-top: 18px;
  margin-bottom: 22px;
}

.contact-box {
  margin-top: 18px;
  padding: 20px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.contact-box h2 {
  margin-top: 0;
  font-size: 20px;
  color: #0f172a;
}

.contact-box p {
  line-height: 1.7;
  color: #334155;
}

.contact-box.warning {
  border-color: #fecaca;
  background: #fff7f7;
}

.contact-box ul {
  margin-bottom: 0;
  padding-left: 20px;
  color: #334155;
  line-height: 1.8;
}

.contact-page .card {
  transition: 0.2s ease;
}

.contact-page .card:hover {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .contact-page {
    margin: 20px 12px;
  }

  .contact-box {
    padding: 16px;
  }
}

/* Airdrop page polish */
.airdrop-page,
.section:has(h1) {
  max-width: 1180px;
}

.airdrop-card,
.cards .card {
  position: relative;
}

.airdrop-card .badge,
.card .badge,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.badge-open {
  background: #dcfce7;
  color: #166534;
  border-color: #bbf7d0;
}

.badge-free {
  background: #e0f2fe;
  color: #075985;
  border-color: #bae6fd;
}

.badge-risk-low {
  background: #f0fdf4;
  color: #15803d;
  border-color: #bbf7d0;
}

.badge-risk-medium {
  background: #fef9c3;
  color: #854d0e;
  border-color: #fde68a;
}

.badge-warning {
  background: #fee2e2;
  color: #991b1b;
  border-color: #fecaca;
}

.cards {
  gap: 18px;
}

.cards .card {
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  transition: 0.2s ease;
}

.cards .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.10);
}

.cards .card h2,
.cards .card h3 {
  margin-top: 8px;
  margin-bottom: 8px;
}

.cards .card p {
  color: #475569;
  line-height: 1.65;
}

.cards .card .btn,
.card a.btn {
  border-radius: 999px;
  font-weight: 800;
}

/* === Final Airdrop Page Polish === */

.airdrop-page-final {
  max-width: 1180px;
  margin: 40px auto;
}

.airdrop-head-final {
  margin-bottom: 22px;
}

.airdrop-head-final h1 {
  font-size: 32px;
  margin-bottom: 8px;
  color: #0f172a;
}

.airdrop-head-final p {
  color: #475569;
  line-height: 1.7;
}

.airdrop-search-final {
  display: flex;
  gap: 8px;
  margin: 18px 0 24px;
}

.airdrop-search-final input {
  width: 100%;
  height: 42px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 0 14px;
  outline: none;
}

.airdrop-search-final input:focus {
  border-color: #16a34a;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.12);
}

.airdrop-search-final button {
  height: 42px;
  border: none;
  border-radius: 12px;
  padding: 0 18px;
  background: #16a34a;
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
}

.airdrop-search-final button:hover {
  background: #15803d;
}

.airdrop-grid-final {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}

.airdrop-card-final {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  transition: 0.2s ease;
}

.airdrop-card-final:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.10);
}

.airdrop-card-final img,
.airdrop-card-final .airdrop-logo,
.airdrop-card-final .logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  margin-bottom: 12px;
}

.airdrop-badges-final {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0 12px;
}

.airdrop-badges-final .badge,
.airdrop-card-final .badge,
.badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.airdrop-card-final h3 {
  font-size: 20px;
  margin: 10px 0 14px;
  color: #0f172a;
}

.airdrop-btn-final {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: #16a34a;
  color: #ffffff !important;
  font-weight: 800;
  text-decoration: none !important;
}

.airdrop-btn-final:hover {
  background: #15803d;
}

@media (max-width: 768px) {
  .airdrop-page-final {
    margin: 20px 12px;
  }

  .airdrop-head-final h1 {
    font-size: 26px;
  }

  .airdrop-search-final {
    flex-direction: column;
  }

  .airdrop-search-final button {
    width: 100%;
  }
}

/* === Mz-Cuan Final Color Polish === */

/* Navbar color polish */
header.top {
  background: #07111f !important;
}

header.top .menu a {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  color: #e5e7eb !important;
  box-shadow: none !important;
}

header.top .menu a:hover,
header.top .menu a.active {
  background: #10b981 !important;
  border-color: #10b981 !important;
  color: #ffffff !important;
}

header.top .search button,
.search button {
  background: #10b981 !important;
  color: #ffffff !important;
}

header.top .search button:hover,
.search button:hover {
  background: #059669 !important;
}

/* Main card polish */
.section {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

/* Airdrop detail page */
.airdrop-detail,
.section {
  color: #0f172a;
}

/* Back link */
.section a[href="/airdrop/"] {
  color: #059669 !important;
  font-weight: 800;
  text-decoration: none !important;
}

.section a[href="/airdrop/"]:hover {
  color: #047857 !important;
}

/* Banner image */
.section img {
  border-radius: 16px;
}

/* Title */
.section h1,
.section h2,
.section h3 {
  color: #0f172a;
}

/* Badge base */
.badge,
.airdrop-badges-final .badge,
.airdrop-card-final .badge,
span.badge {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 6px 11px !important;
  border-radius: 999px !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase !important;
  box-shadow: none !important;
}

/* Badge warna default */
.badge {
  background: #f1f5f9 !important;
  color: #334155 !important;
  border: 1px solid #cbd5e1 !important;
}

/* Badge hijau: open / rendah / potensial */
.badge-open,
.badge-green,
.badge-success,
span.badge:contains("OPEN") {
  background: #dcfce7 !important;
  color: #166534 !important;
  border-color: #bbf7d0 !important;
}

/* Badge kategori: airdrop */
.airdrop-badges-final .badge:nth-child(2),
.section .badge:nth-child(2) {
  background: #e0f2fe !important;
  color: #075985 !important;
  border-color: #bae6fd !important;
}

/* Badge risiko */
.airdrop-badges-final .badge:nth-child(4),
.section .badge:nth-child(4) {
  background: #ecfdf5 !important;
  color: #047857 !important;
  border-color: #a7f3d0 !important;
}

/* Tombol bawah */
.btn,
.airdrop-btn-final,
.card a.btn,
.section a.btn {
  background: #10b981 !important;
  color: #ffffff !important;
  border-radius: 999px !important;
  border: none !important;
  font-weight: 800 !important;
  box-shadow: 0 8px 18px rgba(16, 185, 129, 0.20) !important;
}

.btn:hover,
.airdrop-btn-final:hover,
.card a.btn:hover,
.section a.btn:hover {
  background: #059669 !important;
}

/* Text content */
.section p,
.section li {
  color: #334155;
  line-height: 1.75;
}

/* Airdrop detail content spacing */
.section h2 {
  margin-top: 24px;
  margin-bottom: 12px;
}

.section h3 {
  margin-top: 18px;
  margin-bottom: 10px;
}

/* Small social buttons */
.section a[href*="twitter"],
.section a[href*="x.com"],
.section a[href*="discord"],
.section a[href*="t.me"],
.section a[href*="telegram"] {
  background: #10b981 !important;
  color: #ffffff !important;
  border-radius: 10px !important;
  padding: 8px 14px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  display: inline-flex !important;
  margin-right: 8px !important;
  margin-bottom: 8px !important;
}

/* Body background */
body {
  background: #f4f7f6 !important;
}

/* Remove ugly glowing/over-strong colors on badges if any inline style exists */
span[style*="background"],
.badge[style*="background"] {
  box-shadow: none !important;
}

/* Mobile polish */
@media (max-width: 768px) {
  .section {
    border-radius: 16px;
    margin: 18px 12px !important;
    padding: 18px !important;
  }

  .badge {
    font-size: 10px !important;
    padding: 5px 9px !important;
  }
}

/* === Mz-Cuan Final Theme Palette === */

:root {
  --mz-bg: #f4f7f6;
  --mz-navbar: #07111f;
  --mz-primary: #10b981;
  --mz-primary-hover: #059669;
  --mz-text: #0f172a;
  --mz-muted: #334155;
  --mz-border: #e2e8f0;
  --mz-card: #ffffff;

  --mz-badge-blue-bg: #e0f2fe;
  --mz-badge-blue-text: #075985;
  --mz-badge-blue-border: #bae6fd;

  --mz-badge-green-bg: #dcfce7;
  --mz-badge-green-text: #166534;
  --mz-badge-green-border: #bbf7d0;
}

body {
  background: var(--mz-bg) !important;
  color: var(--mz-text) !important;
}

header.top {
  background: var(--mz-navbar) !important;
}

header.top .logo,
header.top .logo-title,
header.top .menu a {
  color: #ffffff !important;
}

header.top .menu a {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
}

header.top .menu a:hover,
header.top .menu a.active {
  background: var(--mz-primary) !important;
  border-color: var(--mz-primary) !important;
  color: #ffffff !important;
}

.btn,
button,
input[type="submit"],
.airdrop-btn-final,
.card a.btn,
.section a.btn {
  background: var(--mz-primary) !important;
  color: #ffffff !important;
  border-color: var(--mz-primary) !important;
}

.btn:hover,
button:hover,
input[type="submit"]:hover,
.airdrop-btn-final:hover,
.card a.btn:hover,
.section a.btn:hover {
  background: var(--mz-primary-hover) !important;
  border-color: var(--mz-primary-hover) !important;
}

.section,
.card,
.airdrop-card-final,
.contact-box,
.legal-page {
  background: var(--mz-card) !important;
  border-color: var(--mz-border) !important;
}

h1,
h2,
h3,
h4,
.logo-title {
  color: var(--mz-text) !important;
}

p,
li,
.legal-text,
.contact-intro {
  color: var(--mz-muted) !important;
}

.badge,
span.badge,
.airdrop-card-final .badge,
.airdrop-badges-final .badge {
  background: var(--mz-badge-blue-bg) !important;
  color: var(--mz-badge-blue-text) !important;
  border: 1px solid var(--mz-badge-blue-border) !important;
  box-shadow: none !important;
}

/* Badge pertama biasanya POTENSI/PILIHAN */
.airdrop-badges-final .badge:nth-child(1),
.section .badge:nth-child(1) {
  background: var(--mz-badge-green-bg) !important;
  color: var(--mz-badge-green-text) !important;
  border-color: var(--mz-badge-green-border) !important;
}

/* Badge OPEN / risiko rendah biasanya hijau */
.airdrop-badges-final .badge:nth-child(3),
.airdrop-badges-final .badge:nth-child(4),
.section .badge:nth-child(3),
.section .badge:nth-child(4) {
  background: var(--mz-badge-green-bg) !important;
  color: var(--mz-badge-green-text) !important;
  border-color: var(--mz-badge-green-border) !important;
}

a {
  color: var(--mz-primary-hover);
}

a:hover {
  color: var(--mz-primary);
}

body{overflow-x:hidden!important}
main,.wrap,.container,.content{max-width:1180px!important;width:100%!important;overflow:hidden!important}
.card,.item,.box,.panel,article{max-width:100%!important;width:100%!important;overflow:hidden!important;box-sizing:border-box!important}
.card p,.item p,.box p,.panel p,article p,.summary,.excerpt,.desc{
  white-space:normal!important;
  word-break:break-word!important;
  overflow-wrap:anywhere!important;
  overflow:hidden!important;
  max-height:80px!important;
  line-height:1.6!important;
}
.card h1,.card h2,.card h3,.item h1,.item h2,.item h3{
  white-space:normal!important;
  word-break:break-word!important;
  overflow-wrap:anywhere!important;
}
.grid,.cards,.list{
  display:grid!important;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr))!important;
  gap:18px!important;
  max-width:100%!important;
  overflow:hidden!important;
}
@media(max-width:700px){
  .grid,.cards,.list{grid-template-columns:1fr!important}
}
/* =====================================================
   MZ-CUAN SHARP PROFESSIONAL UI
   Clean crypto portal style
===================================================== */

:root {
  --bg: #f3f6f5;
  --nav: #07111f;
  --nav-2: #0b1626;
  --primary: #10b981;
  --primary-hover: #059669;
  --text: #0f172a;
  --muted: #475569;
  --soft: #64748b;
  --border: #d9e2e7;
  --card: #ffffff;

  --blue-bg: #e0f2fe;
  --blue-text: #075985;
  --blue-border: #bae6fd;

  --green-bg: #dcfce7;
  --green-text: #166534;
  --green-border: #bbf7d0;

  --gold-bg: #fef3c7;
  --gold-text: #92400e;
  --gold-border: #fde68a;

  --red-bg: #fee2e2;
  --red-text: #991b1b;
  --red-border: #fecaca;
}

* {
  box-sizing: border-box;
}

body,
button,
input,
textarea,
select,
a,
p,
li,
span,
div,
h1,
h2,
h3,
h4,
.logo-title,
.logo small,
.menu a,
.btn {
  font-family: Arial, Helvetica, sans-serif !important;
}

body {
  margin: 0 !important;
  background: var(--bg) !important;
  color: var(--text) !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  overflow-x: hidden !important;
}

/* ================= NAVBAR ================= */

header.top {
  background: var(--nav) !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  box-shadow: none !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 999 !important;
}

.wrap.nav {
  max-width: 1160px !important;
  margin: 0 auto !important;
  padding: 12px 16px !important;
  display: grid !important;
  grid-template-columns: auto 1fr auto !important;
  align-items: center !important;
  gap: 14px !important;
}

.logo {
  min-width: 190px !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

.logo .mark {
  width: 38px !important;
  height: 38px !important;
  border-radius: 8px !important;
  background: rgba(16,185,129,0.10) !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

.logo-title {
  font-size: 18px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  letter-spacing: -0.02em !important;
  line-height: 1.1 !important;
}

.logo small {
  font-size: 11px !important;
  font-weight: 600 !important;
  color: #cbd5e1 !important;
}

.menu {
  display: flex !important;
  align-items: center !important;
  gap: 7px !important;
  overflow-x: auto !important;
  white-space: nowrap !important;
  padding: 3px 0 7px !important;
  scrollbar-width: thin !important;
}

.menu::-webkit-scrollbar {
  height: 4px !important;
}

.menu::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.30) !important;
  border-radius: 999px !important;
}

.menu a {
  flex: 0 0 auto !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  color: #e5e7eb !important;
  text-decoration: none !important;
  padding: 7px 11px !important;
  border-radius: 8px !important;
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  box-shadow: none !important;
}

.menu a:hover,
.menu a.active {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #ffffff !important;
}

form.global {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

form.global input {
  width: 180px !important;
  height: 36px !important;
  border-radius: 8px !important;
  border: 1px solid #cbd5e1 !important;
  background: #ffffff !important;
  color: #0f172a !important;
  padding: 0 11px !important;
  font-size: 13px !important;
  outline: none !important;
}

form.global input:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 2px rgba(16,185,129,0.16) !important;
}

form.global button,
.btn,
button,
input[type="submit"],
.airdrop-btn-final,
.card a.btn,
.section a.btn {
  min-height: 36px !important;
  border: 0 !important;
  border-radius: 8px !important;
  padding: 0 14px !important;
  background: var(--primary) !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  font-size: 13px !important;
  text-decoration: none !important;
  cursor: pointer !important;
  box-shadow: none !important;
}

form.global button:hover,
.btn:hover,
button:hover,
input[type="submit"]:hover,
.airdrop-btn-final:hover,
.card a.btn:hover,
.section a.btn:hover {
  background: var(--primary-hover) !important;
}

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

main.container,
.container,
.wrap:not(.nav) {
  max-width: 1060px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.section {
  max-width: 1060px !important;
  margin: 28px auto !important;
  padding: 24px !important;
  background: var(--card) !important;
  border: 1px solid var(--border) !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 24px rgba(15,23,42,0.05) !important;
}

h1,
h2,
h3 {
  color: var(--text) !important;
  letter-spacing: -0.025em !important;
  line-height: 1.2 !important;
}

h1 {
  font-size: clamp(28px, 4vw, 38px) !important;
  font-weight: 800 !important;
}

h2 {
  font-size: clamp(23px, 3vw, 30px) !important;
  font-weight: 800 !important;
}

h3 {
  font-size: 19px !important;
  font-weight: 800 !important;
}

p,
li {
  color: var(--muted) !important;
  line-height: 1.65 !important;
}

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

.hero {
  max-width: 1060px !important;
  margin: 32px auto 20px !important;
  padding: 42px 34px !important;
  border-radius: 12px !important;
  background:
    linear-gradient(135deg, rgba(7,17,31,0.94), rgba(8,78,61,0.92)) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  box-shadow: none !important;
  color: #ffffff !important;
}

.hero h1,
.hero h2 {
  max-width: 720px !important;
  color: #ffffff !important;
  font-size: clamp(30px, 4vw, 42px) !important;
  font-weight: 800 !important;
  line-height: 1.18 !important;
  margin-bottom: 14px !important;
  text-shadow: none !important;
}

.hero p {
  max-width: 650px !important;
  color: #d1fae5 !important;
  font-size: 15px !important;
}

.hero .btn,
.hero a.btn {
  margin-top: 14px !important;
  min-height: 40px !important;
  display: inline-flex !important;
  align-items: center !important;
}

/* ================= CARDS ================= */

.cards {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(245px, 1fr)) !important;
  gap: 16px !important;
}

.card,
.airdrop-card-final {
  background: #ffffff !important;
  border: 1px solid var(--border) !important;
  border-radius: 12px !important;
  padding: 18px !important;
  box-shadow: none !important;
  transition: border-color 0.18s ease, transform 0.18s ease !important;
}

.card:hover,
.airdrop-card-final:hover {
  transform: translateY(-2px) !important;
  border-color: #b8c8d1 !important;
  box-shadow: 0 8px 20px rgba(15,23,42,0.06) !important;
}

.card img,
.airdrop-card-final img,
.section img {
  border-radius: 10px !important;
  object-fit: cover !important;
}

.card h3,
.airdrop-card-final h3 {
  margin: 10px 0 10px !important;
  color: var(--text) !important;
}

.card p {
  color: var(--muted) !important;
  font-size: 14px !important;
}

/* horizontal scroll cards */
.scroller,
.scroll-row,
.carousel,
.p2p-scroll,
.cards {
  scrollbar-width: thin !important;
}

.scroller::-webkit-scrollbar,
.scroll-row::-webkit-scrollbar,
.carousel::-webkit-scrollbar,
.p2p-scroll::-webkit-scrollbar,
.cards::-webkit-scrollbar {
  height: 6px !important;
}

.scroller::-webkit-scrollbar-thumb,
.scroll-row::-webkit-scrollbar-thumb,
.carousel::-webkit-scrollbar-thumb,
.p2p-scroll::-webkit-scrollbar-thumb,
.cards::-webkit-scrollbar-thumb {
  background: #94a3b8 !important;
  border-radius: 999px !important;
}

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

.badge,
span.badge {
  display: inline-flex !important;
  align-items: center !important;
  width: fit-content !important;
  padding: 5px 9px !important;
  border-radius: 6px !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase !important;
  background: var(--blue-bg) !important;
  color: var(--blue-text) !important;
  border: 1px solid var(--blue-border) !important;
  box-shadow: none !important;
}

.badge-admin,
.badge-gold {
  background: var(--gold-bg) !important;
  color: var(--gold-text) !important;
  border-color: var(--gold-border) !important;
}

.badge-open {
  background: var(--green-bg) !important;
  color: var(--green-text) !important;
  border-color: var(--green-border) !important;
}

.badge-ended,
.badge-closed,
.badge-end {
  background: var(--red-bg) !important;
  color: var(--red-text) !important;
  border-color: var(--red-border) !important;
}

.badge-risk-low {
  background: #ecfdf5 !important;
  color: #047857 !important;
  border-color: #a7f3d0 !important;
}

.badge-risk-medium {
  background: #fef9c3 !important;
  color: #854d0e !important;
  border-color: #fde68a !important;
}

.badge-risk-high {
  background: var(--red-bg) !important;
  color: var(--red-text) !important;
  border-color: var(--red-border) !important;
}

/* ================= AIRDROP ================= */

.airdrop-page-final {
  max-width: 1060px !important;
  margin: 28px auto !important;
}

.airdrop-head-final {
  margin-bottom: 18px !important;
}

.airdrop-search-final {
  display: flex !important;
  gap: 10px !important;
  margin: 18px 0 22px !important;
}

.airdrop-search-final input {
  width: 100% !important;
  height: 40px !important;
  border: 1px solid #cbd5e1 !important;
  border-radius: 8px !important;
  padding: 0 12px !important;
  outline: none !important;
}

.airdrop-search-final input:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 2px rgba(16,185,129,0.16) !important;
}

.airdrop-grid-final {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)) !important;
  gap: 16px !important;
}

.airdrop-badges-final {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 7px !important;
  margin: 12px 0 14px !important;
}

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

footer,
.footer {
  background: var(--nav) !important;
  color: #cbd5e1 !important;
  padding: 30px 16px !important;
  margin-top: 40px !important;
}

footer p,
footer b,
footer strong {
  color: #ffffff !important;
}

footer a {
  color: #d1fae5 !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  body {
    font-size: 14px !important;
  }

  .wrap.nav {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding: 16px !important;
  }

  .logo {
    min-width: auto !important;
    width: 100% !important;
    justify-content: flex-start !important;
  }

  .logo .mark {
    width: 46px !important;
    height: 46px !important;
    border-radius: 10px !important;
  }

  .logo-title {
    font-size: 22px !important;
  }

  .logo small {
    font-size: 12px !important;
  }

  form.global {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    gap: 10px !important;
    order: 2 !important;
  }

  form.global input {
    width: 100% !important;
    height: 44px !important;
    border-radius: 10px !important;
    font-size: 14px !important;
  }

  form.global button {
    height: 44px !important;
    min-width: 78px !important;
    border-radius: 10px !important;
  }

  .menu {
    width: 100% !important;
    order: 3 !important;
    gap: 8px !important;
    padding: 0 0 7px !important;
  }

  .menu::before {
    content: "Menu →" !important;
    flex: 0 0 auto !important;
    color: #cbd5e1 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    padding: 8px 4px 8px 0 !important;
  }

  .menu a {
    font-size: 13px !important;
    padding: 8px 12px !important;
    border-radius: 8px !important;
  }

  .hero {
    margin: 20px 14px 16px !important;
    padding: 28px 20px !important;
    border-radius: 12px !important;
  }

  .hero h1,
  .hero h2 {
    font-size: 26px !important;
    line-height: 1.2 !important;
  }

  .hero p {
    font-size: 14px !important;
  }

  .section {
    margin: 18px 14px !important;
    padding: 18px !important;
    border-radius: 12px !important;
  }

  .section h1,
  .section h2 {
    font-size: 25px !important;
  }

  .cards,
  .airdrop-grid-final {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .card,
  .airdrop-card-final {
    border-radius: 12px !important;
    padding: 16px !important;
  }

  .cards .card {
    min-width: 230px !important;
  }

  .airdrop-search-final {
    flex-direction: column !important;
  }

  .airdrop-search-final button {
    width: 100% !important;
  }

  footer,
  .footer {
    text-align: center !important;
  }
}

/* ======================================================
   MZ-CUAN MOBILE CLEAN FIX — stable professional UI
====================================================== */

/* Paksa font normal, bukan cartoon */
html,
body,
body *,
button,
input,
textarea,
select {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif !important;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  body {
    background: #f4f7f6 !important;
    font-size: 14px !important;
    overflow-x: hidden !important;
  }

  /* Header lebih compact */
  header.top {
    position: sticky !important;
    top: 0 !important;
    z-index: 999 !important;
    background: #07111f !important;
    box-shadow: 0 8px 24px rgba(2, 6, 23, 0.22) !important;
  }

  .wrap.nav {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
    padding: 14px 16px 16px !important;
  }

  /* Logo */
  .logo {
    width: 100% !important;
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 12px !important;
    min-width: 0 !important;
  }

  .logo .mark {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    border-radius: 14px !important;
    background: rgba(16, 185, 129, 0.12) !important;
    overflow: hidden !important;
  }

  .logo-title {
    font-size: 22px !important;
    line-height: 1.05 !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    letter-spacing: -0.03em !important;
  }

  .logo small {
    font-size: 12px !important;
    color: #cbd5e1 !important;
    font-weight: 600 !important;
  }

  /* Search di atas menu */
  form.global {
    order: 2 !important;
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr 76px !important;
    gap: 10px !important;
  }

  form.global input {
    width: 100% !important;
    height: 44px !important;
    border-radius: 14px !important;
    padding: 0 14px !important;
    font-size: 14px !important;
    border: 1px solid #cbd5e1 !important;
  }

  form.global button {
    height: 44px !important;
    min-height: 44px !important;
    border-radius: 14px !important;
    padding: 0 !important;
    font-size: 14px !important;
    background: #10b981 !important;
    color: #ffffff !important;
    box-shadow: none !important;
  }

  /* Menu horizontal dibuat clean, tanpa kesan bug */
  .menu {
    order: 3 !important;
    width: 100% !important;
    display: flex !important;
    gap: 8px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    white-space: nowrap !important;
    padding: 0 0 8px !important;
    margin: 0 !important;
    scrollbar-width: none !important;
  }

  .menu::-webkit-scrollbar {
    display: none !important;
  }

  .menu::before {
    content: none !important;
  }

  .menu a {
    flex: 0 0 auto !important;
    font-size: 13px !important;
    line-height: 1 !important;
    padding: 10px 14px !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    color: #e5e7eb !important;
    font-weight: 800 !important;
    box-shadow: none !important;
  }

  .menu a.active,
  .menu a:hover {
    background: #10b981 !important;
    color: #ffffff !important;
    border-color: #10b981 !important;
  }

  /* Hero tidak kepotong */
  .hero {
    margin: 18px 16px 16px !important;
    padding: 26px 20px !important;
    border-radius: 22px !important;
    min-height: auto !important;
    background:
      linear-gradient(135deg, rgba(7,17,31,0.94), rgba(6,78,59,0.90)),
      radial-gradient(circle at 20% 20%, rgba(16,185,129,0.28), transparent 35%) !important;
  }

  .hero h1,
  .hero h2 {
    color: #ffffff !important;
    font-size: 24px !important;
    line-height: 1.2 !important;
    margin: 8px 0 10px !important;
  }

  .hero p {
    color: #d1fae5 !important;
    font-size: 14px !important;
    line-height: 1.65 !important;
  }

  .hero .btn,
  .hero a.btn {
    height: 42px !important;
    min-height: 42px !important;
    padding: 0 18px !important;
    border-radius: 999px !important;
    box-shadow: none !important;
  }

  /* Section mobile lebih nyaman */
  .section {
    margin: 18px 16px !important;
    padding: 18px !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07) !important;
  }

  .section h1,
  .section h2 {
    font-size: 24px !important;
    line-height: 1.2 !important;
    letter-spacing: -0.03em !important;
  }

  .section h3 {
    font-size: 19px !important;
  }

  .section p,
  .section li {
    font-size: 14px !important;
    line-height: 1.65 !important;
  }

  /* Card tidak terlalu tinggi */
  .cards {
    display: flex !important;
    gap: 14px !important;
    overflow-x: auto !important;
    padding-bottom: 8px !important;
    scroll-snap-type: x proximity !important;
  }

  .cards::-webkit-scrollbar {
    height: 4px !important;
  }

  .cards::-webkit-scrollbar-thumb {
    background: #cbd5e1 !important;
    border-radius: 99px !important;
  }

  .card {
    flex: 0 0 235px !important;
    min-width: 235px !important;
    padding: 16px !important;
    border-radius: 18px !important;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06) !important;
  }

  .card h3 {
    font-size: 18px !important;
    margin: 10px 0 !important;
  }

  .card p {
    font-size: 13.5px !important;
  }

  .card .btn,
  .card a.btn {
    height: 38px !important;
    min-height: 38px !important;
    padding: 0 15px !important;
    font-size: 13px !important;
  }

  /* Airdrop detail */
  .airdrop-badges-final {
    gap: 7px !important;
  }

  .badge,
  span.badge {
    font-size: 10px !important;
    padding: 6px 10px !important;
    border-radius: 999px !important;
    font-weight: 900 !important;
  }

  /* Footer */
  footer,
  .footer {
    margin-top: 28px !important;
    padding: 28px 16px !important;
    text-align: center !important;
  }
}

/* ======================================================
   MZ-CUAN BUTTON + MOBILE CARD FIX
   Fokus: tombol rapi, card tidak kepotong, font profesional
====================================================== */

/* Paksa font profesional */
html,
body,
body *,
button,
input,
textarea,
select {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif !important;
}

/* Semua tombol dibuat konsisten */
.btn,
button,
input[type="submit"],
.card a.btn,
.section a.btn,
.airdrop-btn-final,
form.global button,
.airdrop-search-final button {
  min-height: 40px !important;
  height: auto !important;
  padding: 10px 18px !important;
  border-radius: 12px !important;
  background: #10b981 !important;
  color: #ffffff !important;
  border: 1px solid #10b981 !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 8px 18px rgba(16, 185, 129, 0.18) !important;
  white-space: nowrap !important;
}

.btn:hover,
button:hover,
input[type="submit"]:hover,
.card a.btn:hover,
.section a.btn:hover,
.airdrop-btn-final:hover,
form.global button:hover {
  background: #059669 !important;
  border-color: #059669 !important;
}

/* Tombol di card jangan terlalu besar */
.card .btn,
.card a.btn {
  min-height: 38px !important;
  padding: 9px 15px !important;
  font-size: 13px !important;
  border-radius: 10px !important;
}

/* Search form lebih rapi */
form.global input,
.airdrop-search-final input,
.section input[type="text"],
.section input[type="search"] {
  height: 42px !important;
  border-radius: 12px !important;
  border: 1px solid #cbd5e1 !important;
  background: #ffffff !important;
  color: #0f172a !important;
  font-size: 14px !important;
  padding: 0 14px !important;
  outline: none !important;
}

form.global input:focus,
.airdrop-search-final input:focus,
.section input[type="text"]:focus,
.section input[type="search"]:focus {
  border-color: #10b981 !important;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12) !important;
}

/* Badge lebih compact */
.badge,
span.badge {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif !important;
  padding: 6px 10px !important;
  border-radius: 999px !important;
  font-size: 10px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: 0.02em !important;
}

/* Card lebih rapi */
.card,
.airdrop-card-final,
.contact-box {
  border-radius: 18px !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06) !important;
}

/* Mobile fix utama */
@media (max-width: 768px) {
  body {
    background: #f4f7f6 !important;
    overflow-x: hidden !important;
  }

  /* Header lebih pendek dan rapi */
  .wrap.nav {
    padding: 14px 16px !important;
    gap: 12px !important;
  }

  .logo {
    justify-content: flex-start !important;
    gap: 12px !important;
  }

  .logo .mark {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    border-radius: 14px !important;
    background: rgba(16, 185, 129, 0.16) !important;
  }

  .logo-title {
    font-size: 22px !important;
    font-weight: 900 !important;
  }

  .logo small {
    font-size: 12px !important;
  }

  /* Search mobile */
  form.global {
    display: grid !important;
    grid-template-columns: 1fr 74px !important;
    gap: 10px !important;
    width: 100% !important;
  }

  form.global input {
    height: 43px !important;
    border-radius: 13px !important;
    font-size: 14px !important;
  }

  form.global button {
    min-height: 43px !important;
    padding: 0 !important;
    border-radius: 13px !important;
    font-size: 14px !important;
    box-shadow: none !important;
  }

  /* Menu mobile tanpa teks Geser agar tidak terlihat bug */
  .menu::before {
    content: none !important;
  }

  .menu {
    width: 100% !important;
    gap: 8px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    white-space: nowrap !important;
    padding: 0 0 6px !important;
    scrollbar-width: none !important;
  }

  .menu::-webkit-scrollbar {
    display: none !important;
  }

  .menu a {
    font-size: 13px !important;
    padding: 9px 13px !important;
    border-radius: 12px !important;
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
  }

  .menu a.active,
  .menu a:hover {
    background: #10b981 !important;
    border-color: #10b981 !important;
  }

  /* Section tidak terlalu lebar dan tidak kepotong */
  .section {
    width: auto !important;
    max-width: none !important;
    margin: 18px 14px !important;
    padding: 18px !important;
    border-radius: 20px !important;
    overflow: hidden !important;
  }

  .section h1,
  .section h2 {
    font-size: 24px !important;
    line-height: 1.2 !important;
  }

  .section h3 {
    font-size: 18px !important;
  }

  .section p,
  .section li {
    font-size: 14px !important;
    line-height: 1.65 !important;
  }

  /* Card halaman biasa: jangan horizontal kepotong */
  .section > .cards {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    overflow: visible !important;
    padding-bottom: 0 !important;
  }

  .section > .cards > .card {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    flex: initial !important;
  }

  /* Khusus homepage P2P / list horizontal tetap bisa geser */
  .home .cards,
  .home-section .cards {
    display: flex !important;
    overflow-x: auto !important;
  }

  .home .cards .card,
  .home-section .cards .card {
    flex: 0 0 230px !important;
    min-width: 230px !important;
  }

  /* Card detail airdrop */
  .airdrop-card-final,
  .card {
    padding: 16px !important;
    border-radius: 18px !important;
  }

  .card .btn,
  .card a.btn,
  .section a.btn,
  .airdrop-btn-final {
    min-height: 38px !important;
    padding: 9px 15px !important;
    font-size: 13px !important;
    border-radius: 10px !important;
  }

  /* Hero lebih compact */
  .hero {
    margin: 18px 14px !important;
    padding: 24px 18px !important;
    border-radius: 20px !important;
  }

  .hero h1,
  .hero h2 {
    font-size: 24px !important;
    line-height: 1.2 !important;
  }

  .hero .btn,
  .hero a.btn {
    min-height: 40px !important;
    border-radius: 10px !important;
  }

  /* Kontak: card jangan horizontal */
  .contact-page .cards,
  .contact-cards {
    display: grid !important;
    grid-template-columns: 1fr !important;
    overflow: visible !important;
  }

  .contact-page .card,
  .contact-cards .card {
    width: 100% !important;
    min-width: 0 !important;
  }

  /* Kalender/tools/news/artikel cards jangan kepotong */
  .section .card {
    width: 100% !important;
    min-width: 0 !important;
  }
}

/* ==============================
   FIX SEARCH AIRDROP MOBILE
============================== */
@media (max-width: 768px) {
  /* box section airdrop */
  .airdrop-page-final,
  .airdrop-section,
  .section.airdrop-page-final {
    padding: 22px 18px !important;
  }

  /* deskripsi atas */
  .airdrop-page-final p,
  .section.airdrop-page-final p {
    font-size: 15px !important;
    line-height: 1.75 !important;
    margin-bottom: 14px !important;
  }

  /* form pencarian airdrop */
  .airdrop-search-final,
  .section .airdrop-search-final,
  form.airdrop-search-final {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
    margin-top: 14px !important;
    margin-bottom: 20px !important;
  }

  .airdrop-search-final input,
  .section .airdrop-search-final input,
  form.airdrop-search-final input {
    width: 100% !important;
    min-width: 100% !important;
    height: 48px !important;
    padding: 0 16px !important;
    font-size: 15px !important;
    border-radius: 14px !important;
    border: 1.5px solid #cbd5e1 !important;
    background: #ffffff !important;
    color: #0f172a !important;
    box-sizing: border-box !important;
  }

  .airdrop-search-final input::placeholder {
    color: #64748b !important;
    font-size: 15px !important;
  }

  .airdrop-search-final input:focus {
    border-color: #10b981 !important;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12) !important;
    outline: none !important;
  }

  .airdrop-search-final button,
  .section .airdrop-search-final button,
  form.airdrop-search-final button {
    width: 100% !important;
    height: 48px !important;
    min-height: 48px !important;
    border-radius: 14px !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    padding: 0 16px !important;
    background: #10b981 !important;
    color: #ffffff !important;
    border: 1px solid #10b981 !important;
    box-shadow: 0 10px 22px rgba(16, 185, 129, 0.18) !important;
  }

  .airdrop-search-final button:hover {
    background: #059669 !important;
    border-color: #059669 !important;
  }
}

/* ==============================
   FIX SEARCH AIRDROP MOBILE
============================== */
@media (max-width: 768px) {
  /* box section airdrop */
  .airdrop-page-final,
  .airdrop-section,
  .section.airdrop-page-final {
    padding: 22px 18px !important;
  }

  /* deskripsi atas */
  .airdrop-page-final p,
  .section.airdrop-page-final p {
    font-size: 15px !important;
    line-height: 1.75 !important;
    margin-bottom: 14px !important;
  }

  /* form pencarian airdrop */
  .airdrop-search-final,
  .section .airdrop-search-final,
  form.airdrop-search-final {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
    margin-top: 14px !important;
    margin-bottom: 20px !important;
  }

  .airdrop-search-final input,
  .section .airdrop-search-final input,
  form.airdrop-search-final input {
    width: 100% !important;
    min-width: 100% !important;
    height: 48px !important;
    padding: 0 16px !important;
    font-size: 15px !important;
    border-radius: 14px !important;
    border: 1.5px solid #cbd5e1 !important;
    background: #ffffff !important;
    color: #0f172a !important;
    box-sizing: border-box !important;
  }

  .airdrop-search-final input::placeholder {
    color: #64748b !important;
    font-size: 15px !important;
  }

  .airdrop-search-final input:focus {
    border-color: #10b981 !important;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12) !important;
    outline: none !important;
  }

  .airdrop-search-final button,
  .section .airdrop-search-final button,
  form.airdrop-search-final button {
    width: 100% !important;
    height: 48px !important;
    min-height: 48px !important;
    border-radius: 14px !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    padding: 0 16px !important;
    background: #10b981 !important;
    color: #ffffff !important;
    border: 1px solid #10b981 !important;
    box-shadow: 0 10px 22px rgba(16, 185, 129, 0.18) !important;
  }

  .airdrop-search-final button:hover {
    background: #059669 !important;
    border-color: #059669 !important;
  }
}

/* ======================================================
   FIX DARK HERO / TOOLS CRYPTO BANNER
   Supaya banner hitam tidak terlihat blank
====================================================== */

/* Banner gelap umum */
.hero,
.tools-hero,
.scanner-hero,
[class*="hero"],
[class*="banner"],
[class*="scanner-head"],
[class*="tool-head"] {
  background:
    radial-gradient(circle at 18% 20%, rgba(16,185,129,0.28), transparent 34%),
    linear-gradient(135deg, #07111f 0%, #0f2f2a 58%, #064e3b 100%) !important;
  color: #ffffff !important;
  border-radius: 24px !important;
}

/* Paksa semua teks di banner gelap jadi terbaca */
.hero *,
.tools-hero *,
.scanner-hero *,
[class*="hero"] *,
[class*="banner"] *,
[class*="scanner-head"] *,
[class*="tool-head"] * {
  color: #ffffff !important;
  opacity: 1 !important;
}

/* Paragraf di banner dibuat hijau muda */
.hero p,
.tools-hero p,
.scanner-hero p,
[class*="hero"] p,
[class*="banner"] p,
[class*="scanner-head"] p,
[class*="tool-head"] p {
  color: #d1fae5 !important;
  opacity: 1 !important;
  font-weight: 500 !important;
}

/* Badge di banner */
.hero .badge,
.tools-hero .badge,
.scanner-hero .badge,
[class*="hero"] .badge,
[class*="banner"] .badge {
  background: #10b981 !important;
  color: #ffffff !important;
  border-color: #10b981 !important;
}

/* Search input di halaman tools / airdrop / news / artikel jangan terlalu kecil */
.section form,
.airdrop-search-final,
.tools-search,
.searchbox,
form[action] {
  gap: 10px !important;
}

.section input[type="text"],
.section input[type="search"],
.airdrop-search-final input,
.tools-search input,
.searchbox input {
  min-height: 44px !important;
  height: 44px !important;
  border-radius: 14px !important;
  font-size: 15px !important;
  padding: 0 16px !important;
}

/* Mobile: search airdrop jangan kecil */
@media (max-width: 768px) {
  .airdrop-search-final,
  .section form {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .airdrop-search-final input,
  .section input[type="text"],
  .section input[type="search"] {
    width: 100% !important;
    min-height: 46px !important;
    height: 46px !important;
    font-size: 15px !important;
    border-radius: 14px !important;
  }

  .airdrop-search-final button,
  .section form button,
  .section input[type="submit"] {
    width: 100% !important;
    min-height: 44px !important;
    border-radius: 14px !important;
  }

  .hero,
  .tools-hero,
  .scanner-hero,
  [class*="hero"],
  [class*="banner"],
  [class*="scanner-head"],
  [class*="tool-head"] {
    border-radius: 20px !important;
    padding: 24px 18px !important;
  }
}
/* ======================================================
   MZ-CUAN UI FINAL FIX
   Fokus: font normal, layout rapi, scanner tidak kepotong
====================================================== */

:root {
  --mz-bg: #f4f7f6;
  --mz-nav: #07111f;
  --mz-primary: #10b981;
  --mz-primary-hover: #059669;
  --mz-text: #0f172a;
  --mz-muted: #475569;
  --mz-border: #e2e8f0;
  --mz-card: #ffffff;
}

/* RESET FONT TOTAL */
html,
body,
body *,
input,
button,
textarea,
select,
a {
  font-family: Arial, Helvetica, sans-serif !important;
  letter-spacing: normal !important;
}

body {
  margin: 0 !important;
  background: var(--mz-bg) !important;
  color: var(--mz-text) !important;
  overflow-x: hidden !important;
}

/* HEADER */
header.top {
  background: var(--mz-nav) !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
  box-shadow: 0 8px 24px rgba(2,6,23,.18) !important;
}

.wrap.nav {
  max-width: 1120px !important;
  margin: 0 auto !important;
  padding: 14px 16px !important;
  display: grid !important;
  grid-template-columns: 210px 1fr 250px !important;
  align-items: center !important;
  gap: 14px !important;
}

.logo {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  color: #fff !important;
  text-decoration: none !important;
  min-width: 0 !important;
}

.logo .mark {
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  border-radius: 12px !important;
  background: rgba(16,185,129,.16) !important;
  overflow: hidden !important;
}

.logo-title {
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
}

.logo small {
  color: #cbd5e1 !important;
  font-size: 11px !important;
  font-weight: 500 !important;
}

/* MENU */
.menu {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  overflow-x: auto !important;
  white-space: nowrap !important;
  padding: 4px 0 6px !important;
  scrollbar-width: thin !important;
}

.menu a {
  flex: 0 0 auto !important;
  color: #e5e7eb !important;
  text-decoration: none !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  padding: 8px 12px !important;
  border-radius: 10px !important;
  background: rgba(255,255,255,.06) !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  box-shadow: none !important;
}

.menu a.active,
.menu a:hover {
  background: var(--mz-primary) !important;
  border-color: var(--mz-primary) !important;
  color: #fff !important;
}

/* SEARCH HEADER */
form.global {
  display: grid !important;
  grid-template-columns: 1fr 68px !important;
  gap: 8px !important;
  width: 100% !important;
}

form.global input {
  width: 100% !important;
  height: 40px !important;
  border-radius: 10px !important;
  border: 1px solid #cbd5e1 !important;
  padding: 0 12px !important;
  font-size: 14px !important;
  outline: none !important;
}

form.global button {
  height: 40px !important;
  min-height: 40px !important;
  border-radius: 10px !important;
  padding: 0 !important;
  font-size: 14px !important;
}

/* MAIN CONTAINER */
main.container,
.container,
.wrap:not(.nav),
.section {
  max-width: 1080px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.section {
  width: calc(100% - 32px) !important;
  background: #fff !important;
  border: 1px solid var(--mz-border) !important;
  border-radius: 18px !important;
  box-shadow: 0 12px 32px rgba(15,23,42,.07) !important;
  padding: 24px !important;
  margin-top: 28px !important;
  margin-bottom: 28px !important;
  overflow: hidden !important;
}

.section * {
  max-width: 100% !important;
}

h1, h2, h3 {
  color: var(--mz-text) !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
}

h1 { font-size: 32px !important; }
h2 { font-size: 26px !important; }
h3 { font-size: 20px !important; }

p, li {
  color: var(--mz-muted) !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
}

/* BUTTON */
.btn,
button,
input[type="submit"],
a.btn,
.card a.btn,
.section a.btn,
.airdrop-btn-final {
  min-height: 40px !important;
  border-radius: 10px !important;
  padding: 10px 16px !important;
  background: var(--mz-primary) !important;
  color: #fff !important;
  border: 1px solid var(--mz-primary) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: none !important;
}

.btn:hover,
button:hover,
input[type="submit"]:hover,
a.btn:hover {
  background: var(--mz-primary-hover) !important;
  border-color: var(--mz-primary-hover) !important;
}

/* HERO / DARK BANNER */
.hero,
[class*="hero"],
[class*="banner"],
[class*="scanner-head"],
[class*="tool-head"] {
  background: linear-gradient(135deg, #07111f 0%, #0f2f2a 58%, #064e3b 100%) !important;
  color: #fff !important;
  border-radius: 18px !important;
}

.hero *,
[class*="hero"] *,
[class*="banner"] *,
[class*="scanner-head"] *,
[class*="tool-head"] * {
  color: #fff !important;
  opacity: 1 !important;
}

.hero p,
[class*="hero"] p,
[class*="banner"] p,
[class*="scanner-head"] p,
[class*="tool-head"] p {
  color: #d1fae5 !important;
}

/* CARD UMUM */
.cards {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)) !important;
  gap: 16px !important;
  overflow: visible !important;
}

.card,
.airdrop-card-final,
.contact-box {
  width: 100% !important;
  min-width: 0 !important;
  background: #fff !important;
  border: 1px solid var(--mz-border) !important;
  border-radius: 16px !important;
  padding: 16px !important;
  box-shadow: 0 8px 20px rgba(15,23,42,.055) !important;
  overflow: hidden !important;
}

/* SCANNER PAGE FIX: cegah card 3 kolom melebar keluar */
.section [class*="grid"],
.section [class*="list"],
.section [class*="scanner"],
.section [class*="token"] {
  max-width: 100% !important;
}

.section [style*="grid-template-columns"] {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
}

.section > div {
  max-width: 100% !important;
}

/* Kalau ada card scanner custom */
.section div[class*="card"],
.section article,
.section .token-card,
.section .scanner-card {
  min-width: 0 !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* Search di halaman section */
.section form {
  display: grid !important;
  grid-template-columns: 1fr auto auto !important;
  gap: 10px !important;
  align-items: center !important;
}

.section input[type="text"],
.section input[type="search"] {
  width: 100% !important;
  height: 42px !important;
  border-radius: 10px !important;
  border: 1px solid #cbd5e1 !important;
  padding: 0 14px !important;
  font-size: 14px !important;
}

/* BADGES */
.badge,
span.badge {
  display: inline-flex !important;
  align-items: center !important;
  width: fit-content !important;
  padding: 6px 10px !important;
  border-radius: 999px !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  background: #e0f2fe !important;
  color: #075985 !important;
  border: 1px solid #bae6fd !important;
  box-shadow: none !important;
}

.badge-admin,
.badge-gold {
  background: #fef3c7 !important;
  color: #92400e !important;
  border-color: #fde68a !important;
}

.badge-open {
  background: #dcfce7 !important;
  color: #166534 !important;
  border-color: #bbf7d0 !important;
}

.badge-ended,
.badge-closed {
  background: #fee2e2 !important;
  color: #991b1b !important;
  border-color: #fecaca !important;
}

/* DESKTOP SCANNER COMPACT */
@media (min-width: 769px) {
  .section {
    padding: 28px !important;
  }

  .section .cards,
  .section [class*="grid"] {
    gap: 18px !important;
  }

  /* batasi lebar konten scanner supaya tidak mentok kanan */
  .section > * {
    max-width: 100% !important;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .wrap.nav {
    grid-template-columns: 1fr !important;
    padding: 14px 16px !important;
    gap: 12px !important;
  }

  .logo .mark {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
  }

  .logo-title {
    font-size: 22px !important;
  }

  .logo small {
    font-size: 12px !important;
  }

  form.global {
    grid-template-columns: 1fr 72px !important;
  }

  form.global input,
  form.global button {
    height: 42px !important;
    min-height: 42px !important;
    border-radius: 10px !important;
  }

  .menu {
    width: 100% !important;
    overflow-x: auto !important;
    scrollbar-width: none !important;
  }

  .menu::-webkit-scrollbar {
    display: none !important;
  }

  .menu::before {
    content: none !important;
  }

  .menu a {
    font-size: 13px !important;
    padding: 9px 13px !important;
    border-radius: 10px !important;
  }

  .section {
    width: auto !important;
    margin: 18px 14px !important;
    padding: 18px !important;
    border-radius: 18px !important;
  }

  h1 { font-size: 26px !important; }
  h2 { font-size: 23px !important; }
  h3 { font-size: 18px !important; }

  .section form {
    grid-template-columns: 1fr !important;
  }

  .section input[type="text"],
  .section input[type="search"],
  .section form button,
  .section input[type="submit"] {
    width: 100% !important;
    height: 42px !important;
  }

  .cards,
  .section .cards,
  .section [class*="grid"] {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    overflow: visible !important;
  }

  .card,
  .section .card,
  .section div[class*="card"],
  .section article {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .hero,
  [class*="hero"],
  [class*="banner"],
  [class*="scanner-head"],
  [class*="tool-head"] {
    padding: 22px 18px !important;
    border-radius: 16px !important;
  }
}
body{overflow-x:hidden!important}
main,.wrap,.container,.content{max-width:1180px!important;width:100%!important;overflow:hidden!important}
.card,.item,.box,.panel,article{max-width:100%!important;width:100%!important;overflow:hidden!important;box-sizing:border-box!important}
.card p,.item p,.box p,.panel p,article p,.summary,.excerpt,.desc{
  white-space:normal!important;
  word-break:break-word!important;
  overflow-wrap:anywhere!important;
  overflow:hidden!important;
  max-height:80px!important;
  line-height:1.6!important;
}
.card h1,.card h2,.card h3,.item h1,.item h2,.item h3{
  white-space:normal!important;
  word-break:break-word!important;
  overflow-wrap:anywhere!important;
}
.grid,.cards,.list{
  display:grid!important;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr))!important;
  gap:18px!important;
  max-width:100%!important;
  overflow:hidden!important;
}
@media(max-width:700px){
  .grid,.cards,.list{grid-template-columns:1fr!important}
}

/* ======================================================
   MZ-CUAN UI ROUND 1
   Fix font, search, button, card, mobile layout
====================================================== */

/* Font profesional */
html,
body,
body *,
input,
button,
textarea,
select,
a {
  font-family: Arial, Helvetica, sans-serif !important;
  letter-spacing: normal !important;
}

/* Warna dasar */
body {
  background: #f4f7f6 !important;
  color: #0f172a !important;
  overflow-x: hidden !important;
}

/* Navbar lebih clean */
header.top {
  background: #07111f !important;
  box-shadow: 0 8px 24px rgba(2, 6, 23, 0.18) !important;
}

.wrap.nav {
  max-width: 1120px !important;
}

/* Logo jangan blank terlalu gelap */
.logo .mark {
  background: rgba(16, 185, 129, 0.18) !important;
  border: 1px solid rgba(16, 185, 129, 0.22) !important;
}

/* Tombol konsisten */
.btn,
button,
input[type="submit"],
a.btn,
.card a.btn,
.section a.btn,
.airdrop-btn-final {
  min-height: 40px !important;
  padding: 10px 16px !important;
  border-radius: 10px !important;
  background: #10b981 !important;
  border: 1px solid #10b981 !important;
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

.btn:hover,
button:hover,
input[type="submit"]:hover,
a.btn:hover {
  background: #059669 !important;
  border-color: #059669 !important;
}

/* Input search lebih proporsional */
input[type="text"],
input[type="search"],
form.global input,
.section input[type="text"],
.section input[type="search"],
.airdrop-search-final input {
  min-height: 42px !important;
  height: 42px !important;
  border-radius: 10px !important;
  border: 1px solid #cbd5e1 !important;
  background: #ffffff !important;
  color: #0f172a !important;
  padding: 0 14px !important;
  font-size: 14px !important;
  outline: none !important;
}

input[type="text"]:focus,
input[type="search"]:focus {
  border-color: #10b981 !important;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12) !important;
}

/* Section dan card */
.section {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 18px !important;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07) !important;
  overflow: hidden !important;
}

.card,
.airdrop-card-final,
.contact-box {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 16px !important;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.055) !important;
  overflow: hidden !important;
}

/* Judul dan teks */
h1, h2, h3 {
  color: #0f172a !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
}

p, li {
  color: #475569 !important;
  line-height: 1.65 !important;
}

/* Badge */
.badge,
span.badge {
  padding: 6px 10px !important;
  border-radius: 999px !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  box-shadow: none !important;
}

/* Airdrop search khusus biar tidak kecil */
.airdrop-search-final {
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  gap: 10px !important;
  align-items: center !important;
}

.airdrop-search-final button {
  min-width: 76px !important;
}

/* Mobile clean */
@media (max-width: 768px) {
  .wrap.nav {
    padding: 14px 16px !important;
    gap: 12px !important;
  }

  form.global {
    display: grid !important;
    grid-template-columns: 1fr 74px !important;
    gap: 10px !important;
    width: 100% !important;
  }

  form.global input,
  form.global button {
    height: 42px !important;
    min-height: 42px !important;
    border-radius: 10px !important;
  }

  .menu {
    width: 100% !important;
    overflow-x: auto !important;
    scrollbar-width: none !important;
    padding-bottom: 6px !important;
  }

  .menu::-webkit-scrollbar {
    display: none !important;
  }

  .menu::before {
    content: none !important;
  }

  .menu a {
    font-size: 13px !important;
    padding: 9px 13px !important;
    border-radius: 10px !important;
  }

  .section {
    width: auto !important;
    margin: 18px 14px !important;
    padding: 18px !important;
    border-radius: 18px !important;
  }

  h1 {
    font-size: 26px !important;
  }

  h2 {
    font-size: 23px !important;
  }

  h3 {
    font-size: 18px !important;
  }

  .section form,
  .airdrop-search-final {
    grid-template-columns: 1fr !important;
  }

  .section form button,
  .section input[type="submit"],
  .airdrop-search-final button {
    width: 100% !important;
  }

  .cards,
  .section .cards,
  .airdrop-grid-final {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    overflow: visible !important;
  }

  .card,
  .section .card,
  .airdrop-card-final,
  .contact-box {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .card a.btn,
  .section a.btn,
  .airdrop-btn-final {
    width: fit-content !important;
    min-height: 38px !important;
    padding: 9px 14px !important;
    border-radius: 10px !important;
    font-size: 13px !important;
  }
}

/* ======================================================
   MZ-CUAN UI FIX NEXT
   Hanya CSS: search, tombol, font, card mobile
====================================================== */

/* Paksa font normal dan rapi */
html,
body,
body *,
button,
input,
textarea,
select,
a {
  font-family: Arial, Helvetica, sans-serif !important;
}

/* Search utama dan search halaman */
form.global input,
.section input[type="text"],
.section input[type="search"],
.airdrop-search-final input,
.searchbox input,
.tools-search input {
  height: 44px !important;
  min-height: 44px !important;
  border-radius: 12px !important;
  border: 1px solid #cbd5e1 !important;
  background: #ffffff !important;
  color: #0f172a !important;
  font-size: 15px !important;
  padding: 0 16px !important;
  outline: none !important;
}

form.global input:focus,
.section input[type="text"]:focus,
.section input[type="search"]:focus,
.airdrop-search-final input:focus,
.searchbox input:focus,
.tools-search input:focus {
  border-color: #10b981 !important;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.14) !important;
}

/* Tombol lebih rapi dan konsisten */
.btn,
button,
input[type="submit"],
a.btn,
.card a.btn,
.section a.btn,
.airdrop-btn-final,
form.global button,
.airdrop-search-final button {
  min-height: 42px !important;
  height: auto !important;
  padding: 10px 18px !important;
  border-radius: 12px !important;
  background: #10b981 !important;
  border: 1px solid #10b981 !important;
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  text-decoration: none !important;
  box-shadow: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap !important;
}

.btn:hover,
button:hover,
input[type="submit"]:hover,
a.btn:hover,
.card a.btn:hover,
.section a.btn:hover,
.airdrop-btn-final:hover,
form.global button:hover,
.airdrop-search-final button:hover {
  background: #059669 !important;
  border-color: #059669 !important;
}

/* Search Airdrop jangan kecil */
.airdrop-search-final {
  display: grid !important;
  grid-template-columns: 1fr 90px !important;
  gap: 10px !important;
  align-items: center !important;
  margin: 18px 0 22px !important;
}

.airdrop-search-final button {
  width: 90px !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Form search halaman biasa */
.section form {
  display: grid !important;
  grid-template-columns: 1fr auto auto !important;
  gap: 10px !important;
  align-items: center !important;
}

/* Card umum */
.card,
.airdrop-card-final,
.contact-box {
  border-radius: 16px !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06) !important;
  overflow: hidden !important;
}

/* Judul lebih profesional */
h1, h2, h3,
.logo-title {
  font-family: Arial, Helvetica, sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
}

p, li {
  font-family: Arial, Helvetica, sans-serif !important;
}

/* Mobile */
@media (max-width: 768px) {
  .wrap.nav {
    padding: 14px 16px !important;
  }

  form.global {
    display: grid !important;
    grid-template-columns: 1fr 78px !important;
    gap: 10px !important;
  }

  form.global input,
  form.global button {
    height: 44px !important;
    min-height: 44px !important;
    border-radius: 12px !important;
  }

  .section {
    margin: 18px 14px !important;
    padding: 18px !important;
    border-radius: 18px !important;
  }

  .section form,
  .airdrop-search-final {
    grid-template-columns: 1fr !important;
  }

  .section form button,
  .section input[type="submit"],
  .airdrop-search-final button {
    width: 100% !important;
  }

  .section input[type="text"],
  .section input[type="search"],
  .airdrop-search-final input {
    width: 100% !important;
    height: 46px !important;
    min-height: 46px !important;
    font-size: 15px !important;
  }

  .cards,
  .section .cards,
  .airdrop-grid-final {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    overflow: visible !important;
  }

  .card,
  .section .card,
  .airdrop-card-final,
  .contact-box {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .card a.btn,
  .section a.btn,
  .airdrop-btn-final {
    min-height: 40px !important;
    padding: 10px 15px !important;
    border-radius: 12px !important;
    font-size: 13px !important;
  }
}

/* FIX badge wrapper jangan ikut jadi badge */
.airdrop-badges-final,
[class*="badges"],
.card [class*="badges"],
.section [class*="badges"] {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 7px !important;
  width: auto !important;
  max-width: 100% !important;
}

.airdrop-badges-final .badge,
[class*="badges"] .badge,
.card .badge,
.section .badge {
  width: fit-content !important;
  max-width: fit-content !important;
  display: inline-flex !important;
  flex: 0 0 auto !important;
}

/* Airdrop type badge colors */
.badge-type-retro {
  background: #ffedd5 !important;
  color: #c2410c !important;
  border-color: #fed7aa !important;
}

.badge-type-node {
  background: #ede9fe !important;
  color: #5b21b6 !important;
  border-color: #ddd6fe !important;
}

.badge-type-testnet {
  background: #dbeafe !important;
  color: #1e40af !important;
  border-color: #bfdbfe !important;
}

.badge-type-airdrop {
  background: #cffafe !important;
  color: #0e7490 !important;
  border-color: #a5f3fc !important;
}

.badge-type-depin {
  background: #ccfbf1 !important;
  color: #0f766e !important;
  border-color: #99f6e4 !important;
}

.badge-type-waitlist {
  background: #e2e8f0 !important;
  color: #334155 !important;
  border-color: #cbd5e1 !important;
}

.badge-type-yapping {
  background: #fce7f3 !important;
  color: #be185d !important;
  border-color: #fbcfe8 !important;
}

.badge-type-other {
  background: #f1f5f9 !important;
  color: #475569 !important;
  border-color: #cbd5e1 !important;
}

/* ======================================================
   FIX SEARCH FORM NEWS / ARTIKEL / LIST PAGE
====================================================== */

.section form,
.section .searchbox,
.section .global,
main .section form {
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  gap: 12px !important;
  align-items: center !important;
  width: 100% !important;
  margin: 18px 0 22px !important;
}

.section form input[name="q"],
.section form input[type="search"],
.section form input[type="text"],
main .section form input[name="q"],
main .section form input[type="search"],
main .section form input[type="text"] {
  width: 100% !important;
  min-width: 0 !important;
  height: 46px !important;
  min-height: 46px !important;
  border-radius: 14px !important;
  border: 1px solid #cbd5e1 !important;
  padding: 0 16px !important;
  font-size: 15px !important;
  color: #0f172a !important;
  background: #ffffff !important;
  box-sizing: border-box !important;
}

.section form button,
.section form .btn,
main .section form button,
main .section form .btn {
  height: 46px !important;
  min-height: 46px !important;
  padding: 0 22px !important;
  border-radius: 14px !important;
  background: #10b981 !important;
  color: #ffffff !important;
  border: none !important;
  font-weight: 800 !important;
  white-space: nowrap !important;
}

.section form input:focus,
main .section form input:focus {
  outline: none !important;
  border-color: #10b981 !important;
  box-shadow: 0 0 0 4px rgba(16,185,129,.12) !important;
}

/* Mobile: input full, tombol full di bawah */
@media (max-width: 768px) {
  .section form,
  .section .searchbox,
  main .section form {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .section form input[name="q"],
  .section form input[type="search"],
  .section form input[type="text"],
  main .section form input[name="q"],
  main .section form input[type="search"],
  main .section form input[type="text"] {
    height: 52px !important;
    min-height: 52px !important;
    font-size: 16px !important;
    border-radius: 16px !important;
  }

  .section form button,
  .section form .btn,
  main .section form button,
  main .section form .btn {
    width: 100% !important;
    height: 52px !important;
    min-height: 52px !important;
    border-radius: 16px !important;
    font-size: 16px !important;
  }
}
