:root {
  color-scheme: dark;
  --bg: #0b0d0e;
  --text: #f4f0e8;
  --muted: #c6bcae;
  --line: rgba(255, 255, 255, 0.18);
  --panel: rgba(12, 14, 15, 0.72);
  --panel-solid: #151719;
  --gold: #d6b25e;
  --green: #8fd06f;
  --red: #ff7474;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.9), rgba(5, 6, 7, 0.42) 54%, rgba(5, 6, 7, 0.86)),
    url("image/backgroud.png") center / cover fixed,
    var(--bg);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 70px;
  padding: 0 clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(4, 5, 6, 0.64);
  backdrop-filter: blur(14px);
}

.brand {
  color: #ffffff;
  font-weight: 900;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav a {
  padding: 9px 12px;
  border-radius: 4px;
}

.nav a:hover,
.nav a:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.shop-link {
  color: #111111;
  background: var(--gold);
  font-weight: 800;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 116px clamp(18px, 6vw, 90px) 70px;
}

.hero-content {
  width: min(860px, 100%);
}

.kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 980px;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(3.1rem, 11vw, 9.2rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.72);
  white-space: nowrap;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.22rem);
  line-height: 1.7;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  border-radius: 4px;
  font-weight: 900;
}

.primary-action {
  gap: 12px;
  min-width: min(100%, 330px);
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  color: #0e100d;
  background: #ffffff;
  cursor: pointer;
}

.primary-action span {
  max-width: 180px;
  overflow: hidden;
  color: #536044;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.secondary-action {
  min-width: 138px;
  padding: 0 18px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.36);
}

.primary-action:hover,
.primary-action:focus-visible {
  background: #efe5c9;
}

.secondary-action:hover,
.secondary-action:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.status-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  padding: 11px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.48);
  color: var(--muted);
  font-size: 0.94rem;
}

.status-strip > span {
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.07);
}

.status-pill {
  min-width: 102px;
}

.online {
  color: var(--green);
}

.offline {
  color: var(--red);
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto 48px;
  padding: 34px 0;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 22px;
}

h2 {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
}

.feature-card span {
  color: var(--gold);
  font-weight: 900;
}

h3 {
  margin: 38px 0 12px;
  color: #ffffff;
  font-size: 1.35rem;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.info-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
}

.server-facts {
  display: grid;
  gap: 10px;
  margin: 0;
}

.server-facts div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

dt {
  color: var(--muted);
}

dd {
  margin: 0;
  color: #ffffff;
  font-weight: 900;
}

.rules-section {
  padding-top: 10px;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.rules-card,
.warning-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
}

.rules-card {
  min-height: 260px;
  padding: 24px;
}

.rules-card h3,
.warning-card h3 {
  margin-top: 0;
}

ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.75;
}

li + li {
  margin-top: 8px;
}

.warning-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding: 26px;
  border-color: rgba(214, 178, 94, 0.56);
}

.copy-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.72);
}

.copy-modal[hidden] {
  display: none;
}

.copy-dialog {
  width: min(420px, 100%);
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel-solid);
  text-align: center;
}

.copy-dialog h2 {
  font-size: 2rem;
}

.copy-dialog small {
  color: var(--muted);
}

.footer {
  padding: 24px;
  color: var(--muted);
  text-align: center;
  font-size: 0.9rem;
}

@media (max-width: 780px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 16px 18px;
  }

  .nav {
    gap: 4px;
  }

  .hero {
    min-height: auto;
    padding-top: 64px;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 4.2rem);
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .feature-grid,
  .info-band,
  .rules-grid,
  .warning-card {
    grid-template-columns: 1fr;
  }

  .info-band {
    padding: 24px 18px;
  }
}
