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

:root {
  --bg: #0a0d14;
  --bg-card: #12161f;
  --border: #232838;
  --accent: #6c5ce7;
  --accent2: #00d9ff;
  --text: #e6e8f0;
  --text-dim: #8a8fa3;
  --danger: #ff4757;
  --success: #2ed573;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: radial-gradient(ellipse at top, #151a26 0%, var(--bg) 60%);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.container {
  width: 100%;
  max-width: 520px;
}

.brand {
  text-align: center;
  margin-bottom: 24px;
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--text-dim);
  text-transform: uppercase;
}
.brand span { color: var(--accent2); }

.card {
  background: linear-gradient(180deg, var(--bg-card), #0d1017);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}

.subtitle {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 24px;
}

/* ── Gate (captcha) ─────────────────────────────── */
.gate {
  text-align: center;
  padding: 24px 0;
}
.gate-icon {
  font-size: 40px;
  margin-bottom: 16px;
}
.gate-text {
  color: var(--text-dim);
  font-size: 14px;
  margin-bottom: 20px;
}
.turnstile-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}
.gate-error {
  color: var(--danger);
  font-size: 13px;
  margin-top: 12px;
  display: none;
}

/* ── Content (setelah verified) ────────────────── */
.content { display: none; }
.content.show { display: block; animation: fadeIn .4s ease; }

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

.media-main img, .media-main video {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 16px;
  border: 1px solid var(--border);
}

.text-box {
  background: #0d1017;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 16px;
  position: relative;
}

.text-box pre {
  white-space: pre-wrap;
  word-break: break-word;
  font-family: 'Consolas', 'Courier New', monospace;
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}

.copy-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  cursor: pointer;
  transition: all .15s ease;
}
.copy-btn:hover { background: #5849c4; }
.copy-btn.copied { background: var(--success); }

.testimoni-section {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px dashed var(--border);
}
.testimoni-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dim);
  margin-bottom: 12px;
}
.testimoni-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 8px;
}
.testimoni-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform .15s ease;
}
.testimoni-grid img:hover { transform: scale(1.05); }

.footer-note {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-dim);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.show { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
}
