/* =========================
   RESET & BASE
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: "JetBrains Mono", monospace;
  background: #05010d;
  color: #fff;
  overflow-x: hidden;
}

/* =========================
   BACKGROUND
========================= */
.bg-banner {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top, #ff00cc33, transparent 60%),
    radial-gradient(circle at bottom, #00ffe133, transparent 60%),
    linear-gradient(180deg, #090014, #05010d 70%);
  z-index: -2;
}

.bg-overlay {
  position: fixed;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.03) 0,
      rgba(255,255,255,0.03) 1px,
      transparent 1px,
      transparent 6px
    );
  z-index: -1;
  pointer-events: none;
}

/* =========================
   LAYOUT
========================= */
.frame {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 16px 80px;
}

/* =========================
   TOP BAR
========================= */
.topbar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 0 20px #ff00cc;
}

.brand-name {
  font-family: "Monoton", cursive;
  font-size: 22px;
  letter-spacing: 1px;
}

.brand-sub {
  font-size: 12px;
  opacity: 0.8;
}

.brand-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chip {
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff00cc, #00ffe1);
  color: #000;
  font-weight: 600;
  font-size: 12px;
  text-decoration: none;
}

/* =========================
   TABS
========================= */
.tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.tab {
  border: none;
  background: rgba(255,255,255,0.08);
  color: #fff;
  padding: 10px 18px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
}

.tab:hover {
  background: rgba(255,255,255,0.18);
}

.tab.active {
  background: linear-gradient(90deg, #ff00cc, #00ffe1);
  color: #000;
}

/* =========================
   PANELS
========================= */
.panel {
  display: none;
  animation: fadeUp 0.4s ease;
}

.panel.active {
  display: block;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   HERO / BANNERS
========================= */
.panel-hero {
  margin-bottom: 26px;
  text-align: center;
}

.hero-img {
  width: 100%;
  max-width: 100%;
  border-radius: 18px;
  box-shadow:
    0 0 30px rgba(255,0,204,0.35),
    0 0 60px rgba(0,255,225,0.25);
}

.hero-placeholder {
  padding: 60px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ff00cc33, #00ffe133);
  box-shadow: 0 0 40px #ff00cc44;
}

.hero-placeholder-title {
  font-family: "Permanent Marker", cursive;
  font-size: 32px;
}

.hero-placeholder-sub {
  margin-top: 10px;
  opacity: 0.8;
}

/* =========================
   HEADINGS
========================= */
.title {
  text-align: center;
  font-family: "Monoton", cursive;
  font-size: 42px;
  margin-bottom: 12px;
}

.h2 {
  text-align: center;
  font-family: "Permanent Marker", cursive;
  font-size: 32px;
  margin-bottom: 16px;
}

.tagline {
  text-align: center;
  opacity: 0.9;
  margin-bottom: 28px;
  line-height: 1.4;
}

.p {
  max-width: 700px;
  margin: 0 auto 26px;
  text-align: center;
  opacity: 0.9;
}

/* =========================
   STATS GRID
========================= */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.stats-grid.big {
  margin-top: 20px;
}

.stat {
  background: rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 14px;
  text-align: center;
  box-shadow: inset 0 0 12px rgba(255,255,255,0.05);
}

.stat span {
  display: block;
  font-size: 12px;
  opacity: 0.7;
}

.stat b {
  font-size: 20px;
  margin-top: 6px;
  display: block;
}

.stat small {
  font-size: 11px;
  opacity: 0.6;
}

/* =========================
   PROGRESS BAR
========================= */
.progress-wrap {
  margin: 22px 0;
}

.progress-bar {
  width: 100%;
  height: 14px;
  background: rgba(255,255,255,0.1);
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ff00cc, #00ffe1);
  transition: width 0.4s ease;
}

.progress-text {
  text-align: center;
  margin-top: 8px;
  font-size: 13px;
  opacity: 0.85;
}

/* =========================
   QTY / TOTAL
========================= */
.qty {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.qty button {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

.qty input {
  width: 60px;
  text-align: center;
  border-radius: 8px;
  border: none;
  font-size: 16px;
}

.total {
  text-align: center;
  margin: 12px 0 20px;
  font-weight: 600;
}

/* =========================
   BUTTONS
========================= */
.actions {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.btn {
  padding: 12px 26px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  font-weight: 700;
}

.btn.primary {
  background: linear-gradient(90deg, #ff00cc, #00ffe1);
  color: #000;
}

.btn.ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* =========================
   ROADMAP
========================= */
.roadmap {
  max-width: 700px;
  margin: 0 auto;
  list-style: none;
}

.roadmap li {
  padding: 12px 16px;
  margin-bottom: 10px;
  border-radius: 14px;
  background: rgba(255,255,255,0.07);
}

/* =========================
   ABOUT
========================= */
.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.card {
  background: rgba(255,255,255,0.07);
  padding: 18px;
  border-radius: 16px;
}

.card h3 {
  margin-bottom: 6px;
  font-family: "Permanent Marker", cursive;
}

/* =========================
   FOOTER
========================= */
.footer {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 12px;
  opacity: 0.8;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.dot {
  margin: 0 6px;
}

/* =========================
   STATUS
========================= */
.status {
  text-align: center;
  margin-top: 18px;
  font-size: 13px;
  opacity: 0.85;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 600px) {
  .title {
    font-size: 32px;
  }
  .h2 {
    font-size: 26px;
  }
}
