/* === Reset / base === */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: #0a0d14;
  color: #d8dde8;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
a { color: #ffd040; text-decoration: none; }
a:hover { color: #fff; text-decoration: underline; }
code, pre {
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12.5px;
}

/* === Background === */
.bg-grid {
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(255,208,64,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,208,64,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  z-index: -2;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at top, rgba(0,0,0,0.9), transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at top, rgba(0,0,0,0.9), transparent 70%);
}
.bg-glow {
  position: fixed;
  width: 800px; height: 800px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.18;
  z-index: -1;
  pointer-events: none;
}
.bg-glow-1 { background: #ffd040; top: -200px; left: -150px; }
.bg-glow-2 { background: #c63b3b; top: 40%; right: -200px; opacity: 0.12; }

/* === Topbar === */
.topbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  background: rgba(10,13,20,0.65);
  position: sticky; top: 0; z-index: 10;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-logo {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #ffd040, #c63b3b);
  color: #0a0d14;
  font-weight: 800;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  letter-spacing: 0.04em;
  border-radius: 9px;
  box-shadow: 0 6px 20px rgba(255,208,64,0.25);
}
.brand-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.brand-sub { display: block; font-size: 11.5px; color: #6f7a8d; letter-spacing: 0.02em; }
.topnav { display: flex; gap: 28px; }
.topnav a { color: #b6bdcc; font-weight: 500; font-size: 14px; }
.topnav a:hover { color: #ffd040; text-decoration: none; }

/* === Main / sections === */
main { max-width: 1180px; margin: 0 auto; padding: 0 48px; }
section { padding: 96px 0 48px; }
.section-head { text-align: center; margin-bottom: 44px; }
.section-head h2 {
  margin: 0;
  padding: 0;
  font-family: 'Oswald', sans-serif;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.section-head h2::before { display: none; }
.section-sub {
  margin: 12px 0 0;
  color: #98a1b2;
  font-size: 16px;
}
section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 36px;
  position: relative;
  padding-left: 18px;
}
section h2::before {
  content: '';
  position: absolute; left: 0; top: 6px; bottom: 6px;
  width: 4px; border-radius: 4px;
  background: linear-gradient(180deg, #ffd040, #c63b3b);
}

/* === Hero === */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0 48px;
}
.hero-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(40,200,40,0.12);
  color: #66d96d;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(102,217,109,0.25);
}
.hero-title {
  margin: 18px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-pre {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #6f7a8d;
}
.hero-main {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 92px;
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, #ffd040 0%, #ff8420 50%, #c63b3b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: uppercase;
  margin: 4px 0 8px;
  filter: drop-shadow(0 4px 24px rgba(255,132,32,0.35));
}
.hero-tag {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #d8dde8;
  text-transform: uppercase;
  line-height: 1.15;
}
.lead {
  color: #98a1b2;
  font-size: 16px;
  max-width: 560px;
  margin: 28px 0 36px;
}
.cta { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 1px solid transparent;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, #ffd040, #ffb020);
  color: #0a0d14;
  box-shadow: 0 8px 24px rgba(255,208,64,0.25);
}
.btn-primary:hover {
  box-shadow: 0 12px 32px rgba(255,208,64,0.4);
  color: #0a0d14;
}
.btn-icon { font-size: 12px; }
.btn-ghost {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
  color: #d8dde8;
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); color: #fff; }

/* === Server card === */
.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.card-head {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px;
  background: rgba(0,0,0,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.status-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #66d96d;
  box-shadow: 0 0 12px rgba(102,217,109,0.7);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}
.card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #d8dde8;
}
.server-body { padding: 18px 20px; display: flex; flex-direction: column; gap: 14px; }
.server-row {
  display: flex; align-items: center; gap: 12px;
}
.server-row-wide { flex-direction: column; align-items: flex-start; gap: 4px; }
.server-label {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6f7a8d;
  width: 64px;
  flex-shrink: 0;
}
.server-row-wide .server-label { width: auto; }
.server-val {
  color: #d8dde8;
  font-size: 14px;
}
.server-val b { color: #ffd040; font-weight: 700; }
.server-ip {
  flex: 1;
  background: rgba(255,208,64,0.08);
  border: 1px solid rgba(255,208,64,0.2);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: #ffd040;
  font-weight: 600;
}
.copy-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #d8dde8;
  width: 36px; height: 36px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  display: grid; place-items: center;
  transition: background 0.2s ease;
}
.copy-btn:hover { background: rgba(255,208,64,0.12); color: #ffd040; }

/* === Play / install methods === */
.play-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.play-card {
  position: relative;
  display: flex; flex-direction: column;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 36px 32px 28px;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
  text-decoration: none;
  color: inherit;
}
.play-card:hover {
  text-decoration: none;
  border-color: rgba(255,208,64,0.4);
  transform: translateY(-4px);
}
.play-card-primary {
  background: linear-gradient(180deg, rgba(255,208,64,0.08), rgba(255,208,64,0.01));
  border-color: rgba(255,208,64,0.3);
}
.play-tag {
  position: absolute; top: -11px; left: 32px;
  font-family: 'Oswald', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: linear-gradient(135deg, #ffd040, #c63b3b);
  color: #0a0d14;
  padding: 5px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(255,208,64,0.3);
}
.play-num {
  font-family: 'Oswald', sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  color: rgba(255,208,64,0.18);
  margin-bottom: 8px;
}
.play-card h3 {
  margin: 0 0 12px;
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.play-desc {
  margin: 0 0 18px;
  color: #b6bdcc;
  font-size: 15px;
}
.play-desc code {
  background: rgba(255,255,255,0.06);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12.5px;
  color: #ffd040;
}
.play-perks {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.play-perks li {
  font-size: 14px;
  color: #d8dde8;
}
.play-foot {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffd040;
}

/* === Download === */
.download-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 18px;
}
.dl-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px;
  display: flex; flex-direction: column; gap: 20px;
  transition: border-color 0.2s ease;
}
.dl-card:hover { border-color: rgba(255,208,64,0.3); }
.dl-card-primary {
  background: linear-gradient(180deg, rgba(255,208,64,0.06), rgba(255,208,64,0.01));
  border-color: rgba(255,208,64,0.25);
}
.dl-head { display: flex; align-items: center; gap: 16px; }
.dl-num {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: rgba(255,208,64,0.5);
  line-height: 1;
  width: 36px;
  flex-shrink: 0;
}
.dl-head > div:nth-child(2) { flex: 1; }
.dl-head h3 {
  margin: 0;
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.dl-sub { margin: 4px 0 0; color: #6f7a8d; font-size: 12.5px; }
.dl-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 700;
  padding: 4px 10px;
  background: rgba(255,208,64,0.15);
  color: #ffd040;
  border-radius: 5px;
  letter-spacing: 0.04em;
}
.dl-body { display: flex; flex-direction: column; gap: 14px; flex: 1; }
.dl-body p {
  margin: 0;
  color: #b6bdcc;
  font-size: 14px;
}
.dl-body p code {
  background: rgba(255,255,255,0.06);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12.5px;
  color: #ffd040;
}
.dl-rows { display: flex; flex-direction: column; gap: 8px; }
.dl-btn {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  color: #d8dde8;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.dl-btn:hover {
  background: rgba(255,208,64,0.08);
  border-color: rgba(255,208,64,0.3);
  color: #ffd040;
  text-decoration: none;
}
.dl-btn[data-soon] { opacity: 0.55; cursor: not-allowed; }
.dl-btn[data-soon]:hover { background: rgba(255,255,255,0.04); color: #d8dde8; border-color: rgba(255,255,255,0.08); }
.dl-btn-primary {
  background: linear-gradient(135deg, #ffd040, #ffb020);
  color: #0a0d14;
  border-color: transparent;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(255,208,64,0.2);
}
.dl-btn-primary:hover {
  background: linear-gradient(135deg, #ffe060, #ffc030);
  color: #0a0d14;
  box-shadow: 0 8px 28px rgba(255,208,64,0.32);
}
.dl-os { display: flex; align-items: center; gap: 8px; font-family: 'JetBrains Mono', monospace; }
.dl-meta { font-size: 12px; opacity: 0.7; font-weight: 500; }
.dl-note {
  font-size: 12.5px !important;
  color: #6f7a8d !important;
  padding: 12px;
  background: rgba(0,0,0,0.25);
  border-radius: 8px;
  border-left: 2px solid rgba(255,208,64,0.4);
}
.dl-note b { color: #d8dde8; }
.dl-individual {
  margin-top: 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 14px 22px;
}
.dl-individual summary {
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: #98a1b2;
  list-style: none;
  padding: 4px 0;
}
.dl-individual summary::-webkit-details-marker { display: none; }
.dl-individual summary::before { content: '▸  '; color: #ffd040; }
.dl-individual[open] summary::before { content: '▾  '; }
.dl-individual[open] summary { margin-bottom: 8px; color: #ffd040; }
.dl-list { list-style: none; margin: 0; padding: 8px 0 0; display: flex; flex-direction: column; gap: 6px; }
.dl-list li { font-size: 13px; color: #b6bdcc; }
.dl-list a { font-family: 'JetBrains Mono', monospace; }
.dl-list-note { margin: 8px 0 4px !important; font-size: 13px !important; color: #98a1b2 !important; }

/* === Features === */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 26px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.feature:hover {
  transform: translateY(-3px);
  border-color: rgba(255,208,64,0.25);
}
.f-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: rgba(255,208,64,0.1);
  border-radius: 10px;
  font-size: 22px;
  margin-bottom: 14px;
}
.feature h3 {
  margin: 0 0 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.feature p { margin: 0; color: #98a1b2; font-size: 14px; }

/* === Changelog === */
.ver {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 20px 28px;
  margin-bottom: 14px;
}
.ver header {
  display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
  margin-bottom: 12px;
}
.ver-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  background: rgba(255,208,64,0.12);
  color: #ffd040;
  border-radius: 5px;
  letter-spacing: 0.02em;
}
.ver-date {
  font-size: 12px;
  color: #6f7a8d;
}
.ver h3 {
  margin: 0;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  flex: 1;
}
.ver ul { margin: 0; padding-left: 18px; color: #b6bdcc; }
.ver ul li { padding: 4px 0; font-size: 14px; }
.cl-archive { color: #6f7a8d; margin-top: 18px; font-size: 13px; text-align: center; }

/* === Footer === */
footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 48px;
}
.foot-row {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 48px;
  display: flex; align-items: center; gap: 20px;
  font-size: 13px; color: #6f7a8d;
}
.foot-row b { font-family: 'Oswald', sans-serif; letter-spacing: 0.04em; color: #d8dde8; }
.foot-spacer { flex: 1; }

/* === Responsive === */
@media (max-width: 1100px) {
  .hero-main { font-size: 76px; }
}
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; gap: 40px; }
  .hero-main { font-size: 68px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .download-grid { grid-template-columns: 1fr; }
  .play-grid { grid-template-columns: 1fr; }
  main { padding: 0 24px; }
  section { padding: 64px 0 24px; }
  .topbar { padding: 18px 24px; }
  .topnav { gap: 16px; }
  .topnav a { font-size: 13px; }
  .section-head h2 { font-size: 30px; }
}
@media (max-width: 600px) {
  .hero-main { font-size: 52px; }
  .hero-tag { font-size: 18px; }
  .feature-grid { grid-template-columns: 1fr; }
  .topnav { display: none; }
  .foot-row { padding: 22px 24px; flex-wrap: wrap; gap: 12px; }
}
