:root {
  --bg: #141821;
  --bg-2: #1a1f29;
  --panel: #1c2230;
  --panel-2: #212938;
  --field: #262e3d;
  --border: #313a4d;
  --text: #f4f6fb;
  --muted: #c6cedc;
  --purple: #a020f0;
  --purple-2: #c14dff;
  --blue: #4da3ff;
  --green: #57d18c;
  --red: #ff6b6b;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover { text-decoration: underline; }

.topbar {
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}

.topbar-inner,
.page {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
}

.brand,
.product-name {
  color: var(--purple-2);
  font-weight: 700;
}

.brand {
  font-size: 20px;
}

.topnav {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.page {
  padding: 18px 0 40px;
}

.tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.tab {
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text);
  padding: 8px 13px;
  font-size: 14px;
}

.tab.active {
  background: var(--panel-2);
  font-weight: 700;
}

.shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  border: 1px solid var(--border);
  background: var(--panel);
}

.main {
  padding: 24px;
  border-right: 1px solid var(--border);
}

.side {
  background: var(--bg-2);
  padding: 18px;
}

h1 {
  margin: 0 0 8px;
  font-size: 34px;
  line-height: 1.2;
  color: var(--purple-2);
}

h2 {
  margin: 26px 0 10px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--border);
  font-size: 18px;
  color: var(--purple-2);
}

h3 {
  margin: 0 0 10px;
  font-size: 16px;
  color: var(--purple-2);
}

p, li { color: var(--text); }

.subtitle {
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 16px;
}

.lead-box,
.panel-box,
.release-card,
.shot,
.info-box {
  border: 1px solid var(--border);
  background: var(--panel-2);
}

.lead-box {
  padding: 16px 18px;
  margin-bottom: 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.feature {
  border: 1px solid var(--border);
  background: #202736;
  padding: 12px 14px;
}

.shot {
  padding: 12px;
  margin-top: 14px;
  text-align: center;
}

.shot img {
  width: 100%;
  display: block;
  border: 1px solid var(--border);
  background: #171c26;
  min-height: 180px;
  object-fit: cover;
}

.caption {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
}

.release-card {
  padding: 16px 18px;
  margin-bottom: 14px;
}

.release-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.release-head strong {
  font-size: 16px;
  color: var(--purple-2);
}

.badge {
  display: inline-block;
  padding: 3px 8px;
  font-size: 12px;
  border: 1px solid #2f6d4b;
  color: var(--green);
  background: rgba(87,209,140,0.08);
  margin-left: 10px;
  vertical-align: middle;
}

.release-date {
  color: var(--purple-2);
  font-size: 13px;
  white-space: nowrap;
}

.release-card ul {
  margin: 8px 0 0 18px;
  padding: 0;
}

.info-box {
  margin-bottom: 14px;
}

.info-title {
  padding: 11px 12px;
  border-bottom: 1px solid var(--border);
  color: var(--purple-2);
  font-weight: 700;
  background: #202736;
}

.info-body {
  padding: 13px 12px;
  font-size: 14px;
}

.download-btn {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 12px 14px;
  background: var(--purple);
  border: 1px solid #8e1ee0;
  color: #fff;
  text-align: center;
  font-weight: 700;
}

.download-btn:hover {
  background: var(--purple-2);
  text-decoration: none;
}

.download-count {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.details-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.details-row:last-child { border-bottom: none; }

.details-row span:first-child { color: var(--muted); }
.details-row span:last-child { text-align: right; }

.faq-item {
  margin-bottom: 14px;
}

.footer-stack {
  text-align: center;
  margin-top: 28px;
}

.donate-line,
.discord-line,
.support-line,
.footer {
  text-align: center;
}

.donate-line {
  color: #c84dff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.donate-line .price { color: var(--green); }
.donate-line .lifetime { color: var(--blue); }
.donate-line .paypal-link { color: var(--blue); }

.discord-line {
  color: #c84dff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
}

.support-line {
  color: #c84dff;
  font-size: 15px;
  margin-bottom: 22px;
}

.footer {
  color: #c84dff;
  font-size: 18px;
  font-weight: 700;
}

.footer .heart { color: #ff2d2d; }
.footer .brand-link,
.discord-link,
.paypal-link { color: var(--blue); }

@media (max-width: 980px) {
  .shell { grid-template-columns: 1fr; }
  .main { border-right: none; border-bottom: 1px solid var(--border); }
  .feature-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .topbar-inner { flex-direction: column; align-items: flex-start; }
  .release-head { flex-direction: column; align-items: flex-start; }
  h1 { font-size: 28px; }
  .donate-line { font-size: 17px; }
  .discord-line { font-size: 16px; }
  .footer { font-size: 16px; }
}
