/* Оформление заглушки: обычный сайт Minecraft-сервера. Никаких внешних
   зависимостей — шрифты системные, картинок нет, всё рисуется средствами CSS.
   Так страница одинаково выглядит и без интернета, и её нечем выдать:
   у реальных мелких серверов сайты ровно такие же простые. */

:root{
  --bg:#151a14;
  --panel:#1e251c;
  --line:#2c3528;
  --t1:#eef3ea;
  --t2:#a8b3a0;
  --green:#6aa84f;
  --green-d:#4e7f3a;
  --dirt:#7a5c3e;
  --radius:14px;
}

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

body{
  font-family:system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',sans-serif;
  background:var(--bg);
  color:var(--t1);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}

.wrap{width:100%;max-width:1040px;margin:0 auto;padding:0 20px}

/* ── Шапка ────────────────────────────────────────────────────────────── */
.top{
  position:sticky;top:0;z-index:10;
  background:rgba(21,26,20,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.top .wrap{display:flex;align-items:center;gap:24px;height:64px}
.logo{
  display:inline-flex;align-items:center;gap:10px;
  font-weight:700;font-size:18px;letter-spacing:-.01em;
  color:var(--t1);text-decoration:none;flex-shrink:0;
}
.cube{
  width:18px;height:18px;border-radius:4px;
  background:linear-gradient(160deg,var(--green) 0 50%,var(--dirt) 50% 100%);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.35),inset 0 -2px 3px rgba(0,0,0,.35);
}
.menu{display:flex;gap:20px;margin-left:auto}
.menu a{color:var(--t2);text-decoration:none;font-size:15px}
.menu a:hover{color:var(--t1)}
.copy{
  display:inline-flex;align-items:center;height:36px;padding:0 16px;
  border-radius:999px;background:var(--panel);border:1px solid var(--line);
  color:var(--green);font-weight:600;font-size:14px;text-decoration:none;
  white-space:nowrap;
}
.copy:hover{background:#242d21}

/* ── Первый экран ─────────────────────────────────────────────────────── */
.hero{padding:72px 0 56px;border-bottom:1px solid var(--line)}
.tag{color:var(--green);font-size:14px;font-weight:600;margin-bottom:14px}
h1{font-size:52px;line-height:1.1;letter-spacing:-.02em;font-weight:700}
.lead{color:var(--t2);font-size:18px;max-width:56ch;margin:20px 0 32px}
.cta{display:flex;gap:12px;flex-wrap:wrap;align-items:center}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  height:52px;padding:0 24px;border:none;border-radius:999px;cursor:pointer;
  font:inherit;font-size:16px;font-weight:600;text-decoration:none;
}
.btn-main{
  flex-direction:column;gap:0;align-items:flex-start;
  background:linear-gradient(160deg,var(--green),var(--green-d));
  color:#fff;box-shadow:inset 0 1px 0 rgba(255,255,255,.3),inset 0 -2px 3px rgba(0,0,0,.25);
}
.btn-t{font-size:12px;opacity:.85;line-height:1.2}
.btn-ip{font-size:16px;line-height:1.2}
.btn-main:hover{filter:brightness(1.08)}
.btn-ghost{background:var(--panel);border:1px solid var(--line);color:var(--t1)}
.btn-ghost:hover{background:#242d21}

.stats{display:flex;gap:40px;flex-wrap:wrap;margin-top:44px}
.stats dt{font-size:22px;font-weight:700}
.stats dd{color:var(--t2);font-size:14px}

/* ── Секции ───────────────────────────────────────────────────────────── */
.sec{padding:56px 0}
.sec-alt{background:var(--panel);border-block:1px solid var(--line)}
h2{font-size:30px;font-weight:700;letter-spacing:-.02em;margin-bottom:26px}

.cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:16px}
.card{
  background:var(--panel);border:1px solid var(--line);border-radius:var(--radius);
  padding:22px;
}
.sec-alt .card{background:var(--bg)}
.card h3{font-size:17px;font-weight:600;margin-bottom:8px}
.card p{color:var(--t2);font-size:15px}

.steps{list-style:none;display:grid;gap:14px;counter-reset:s}
.steps li{
  counter-increment:s;position:relative;padding-left:52px;
  display:flex;flex-direction:column;
}
.steps li::before{
  content:counter(s);position:absolute;left:0;top:2px;
  width:36px;height:36px;border-radius:10px;
  display:flex;align-items:center;justify-content:center;
  background:var(--green);color:#fff;font-weight:700;font-size:16px;
}
.steps b{font-size:17px;font-weight:600}
.steps span{color:var(--t2);font-size:15px}
.note{color:var(--t2);font-size:15px;margin-top:22px}

.rules{list-style:none;display:grid;gap:12px;max-width:70ch}
.rules li{position:relative;padding-left:26px;color:var(--t2);font-size:16px}
.rules li::before{
  content:"";position:absolute;left:0;top:9px;
  width:10px;height:10px;border-radius:3px;background:var(--green-d);
}

/* ── Подвал ───────────────────────────────────────────────────────────── */
.foot{border-top:1px solid var(--line);padding:24px 0 32px;color:var(--t2);font-size:14px}
.foot .wrap{display:flex;justify-content:space-between;gap:16px;flex-wrap:wrap}

@media(max-width:720px){
  .menu{display:none}
  .top .wrap{gap:12px}
  h1{font-size:34px}
  .lead{font-size:16px}
  .hero{padding:48px 0 40px}
  .stats{gap:26px;margin-top:32px}
  h2{font-size:24px}
  .sec{padding:40px 0}
}
