* {
  box-sizing: border-box;
  font-family: Inter, system-ui, sans-serif;
}

body {
  margin: 0;
  background: radial-gradient(circle at top, #1a1a1a, #0b0d10);
  color: #eaeaea;
}

.topbar {
  padding: 14px 20px;
  border-bottom: 2px solid #ff2b2b;
}

.logo span {
  color: #ff2b2b;
  font-weight: 700;
}

.logo small {
  background: #0fd9b5;
  color: #000;
  padding: 2px 8px;
  border-radius: 8px;
  font-size: 12px;
  margin-left: 6px;
}

.container {
  max-width: 720px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
}

.title {
  color: #ff2b2b;
  font-size: 40px;
}

.subtitle {
  color: #aaa;
  margin-bottom: 30px;
}

.subtitle span {
  color: #00e0b8;
}

.switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.btn {
  padding: 14px 20px;
  border-radius: 12px;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

.btn.red {
  background: #e11d2e;
  color: #fff;
}

.btn.dark {
  background: #1c1f26;
  color: #999;
}

.btn.active {
  outline: 2px solid #ff2b2b;
}

.card {
  position: relative;
  z-index: 1;
  background: #111;
  border-radius: 18px;
  padding: 28px;
  border: 2px solid #00e0b8;
}

.tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 16px;
}

.tab {
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 14px;
}

.tab.active {
  background: #00e0b8;
  color: #000;
}

.tab.inactive {
  background: #1c1f26;
  color: #777;
}

.code {
  background: linear-gradient(180deg, #050505, #0b0b0b);
  color: #00e0b8;
  padding: 18px 20px;
  border-radius: 14px;
  text-align: left;
  overflow-x: auto;
  font-size: 15px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  line-height: 1.6;
  box-shadow:
    inset 0 0 0 1px rgba(0, 224, 184, 0.25),
    0 0 24px rgba(0, 224, 184, 0.12);
}

/* glow cursor feeling */

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}
.steps {
  text-align: left;
  margin-top: 16px;
  color: #aaa;
}

.steps li::marker {
  color: #ff2b2b;
}

.footer-cta {
  margin-top: 30px;
  color: #888;
}

.footer-cta a {
  color: #00e0b8;
  text-decoration: none;
  margin-left: 6px;
}

.footer {
  text-align: center;
  padding: 32px 20px 28px; /* dipadatkan */
  font-size: 13px;
  color: #666;
}
.switch {
  position: relative;
  z-index: 10; /* bikin tombol bisa diklik */
}
.code .cmd {
  color: #6affc7;
}

.code .url {
  color: #4de3ff;
}
/* pastikan hanya tombol yang bisa diklik */
.code,
.code::after,
.section,
.roadmap,
.step {
  pointer-events: none;
}

/* tombol HARUS bisa diklik */
button,
.switch {
  pointer-events: auto;
}
.content {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 20px 40px; /* sebelumnya terlalu besar */
}
.section {
  margin-bottom: 48px; /* dari 80px → 48px */
}
.section h2 {
  font-size: 14px;
  letter-spacing: 0.12em; /* dipadatkan */
  margin-bottom: 10px;
}

.section p,
.list li {
  font-size: 15px;
  color: #9aa0a6;
  line-height: 1.8;
}
.list {
  padding-left: 18px;
  margin-top: 12px;
}

.list li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #b5b5b5;
}
.roadmap {
  margin-top: 16px;
  gap: 12px;
}
.step {
  padding: 14px 16px; /* lebih compact */
  font-size: 14px;
}
.footer {
  text-align: center;
  padding: 60px 20px 40px;
  font-size: 13px;
  color: #666;
}
.notify {
  margin: 120px 0 80px;
  display: flex;
  justify-content: center;
}

.notify-inner {
  width: 100%;
  max-width: 720px;
  padding: 0 20px;
}

.notify-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #00e0b8;
  font-size: 16px;
  margin-bottom: 20px;
}

.notify-title .dot {
  width: 8px;
  height: 8px;
  background: #00e0b8;
  border-radius: 50%;
}

.notify-form {
  display: flex;
  gap: 14px;
}

.notify-form input {
  flex: 1;
  padding: 16px 18px;
  border-radius: 12px;
  border: none;
  font-size: 15px;
  background: #ffffff;
  color: #000;
}

.notify-form input::placeholder {
  color: #999;
}

.notify-form button {
  padding: 0 22px;
  border-radius: 12px;
  border: none;
  font-size: 15px;
  background: #2a2a2a;
  color: #777;
  cursor: not-allowed;
}
body::before,
body::after {
  content: none !important;
}
.content {
  padding-bottom: 40px;
}
html, body {
  overflow-x: hidden;
}

body *::before,
body *::after {
  content: none !important;
}
/* container */
.content {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 20px 40px;
  display: grid;
  gap: 32px;
}

/* module frame */
.module {
  background: linear-gradient(180deg, #0e0e0e, #090909);
  border: 1px solid rgba(0, 224, 184, 0.25);
  border-radius: 16px;
  box-shadow: 0 0 32px rgba(0, 224, 184, 0.08);
  overflow: hidden;
}

/* title box */
.module-title {
  padding: 14px 18px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #00e0b8;
  background: rgba(0, 224, 184, 0.08);
  border-bottom: 1px solid rgba(0, 224, 184, 0.25);
}

/* body */
.module-body {
  padding: 18px;
  font-size: 15px;
  color: #b0b7bd;
  line-height: 1.8;
}

/* list */
.module-list {
  padding-left: 18px;
}

.module-list li {
  margin-bottom: 8px;
}

/* roadmap items */
.roadmap {
  display: grid;
  gap: 12px;
}

.roadmap-item {
  padding: 14px 16px;
  border-radius: 12px;
  background: #0b0b0b;
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 4px solid #00e0b8;
  font-size: 14px;
  color: #d0d6da;
}
/* wrapper */
.notify-module {
  max-width: 720px;
  margin: 0 auto 40px; /* sebelumnya terlalu jauh */
  padding: 0 20px;
}

/* frame box */
.notify-frame {
  background: linear-gradient(180deg, #0e0e0e, #0a0a0a);
  border: 1px solid rgba(0, 224, 184, 0.25);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 0 28px rgba(0, 224, 184, 0.08);
}

/* title */
.notify-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00e0b8;
  margin-bottom: 14px;
}

/* dot */
.notify-title .dot {
  width: 8px;
  height: 8px;
  background: #00e0b8;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0, 224, 184, 0.6);
}

/* form */
.notify-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.notify-form input {
  padding: 14px 16px;
  border-radius: 12px;
  border: none;
  font-size: 14px;
  background: #2a2a2a;
  color: #bbb;
}

.notify-form input::placeholder {
  color: #888;
}

.notify-form button {
  padding: 0 20px;
  border-radius: 12px;
  border: none;
  font-size: 14px;
  background: #1f1f1f;
  color: #666;
  cursor: not-allowed;
}
.social-x {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 20px 0 8px;
  font-size: 14px;
}

.social-x .label {
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(0, 224, 184, 0.15);
  color: #00e0b8;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.social-x a {
  color: #00e0b8;
  text-decoration: none;
}

.social-x a:hover {
  text-decoration: underline;
}
