:root {
  --pink: #ff27c7;
  --pink-soft: #ff72db;
  --gold: #ffd229;
  --gold-dark: #8e6100;
  --panel: #100013;
  --text: #fff8ff;
}

* { box-sizing: border-box; }

html, body {
  min-width: 0;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(36px, 9vh, 130px) 16px;
  color: var(--text);
  background-color: #080009;
  background-image:
    radial-gradient(circle at 15% 12%, rgba(255, 0, 196, .2), transparent 28%),
    radial-gradient(circle at 84% 86%, rgba(255, 210, 41, .13), transparent 25%),
    linear-gradient(135deg, transparent 46%, rgba(255,255,255,.045) 47%, rgba(255,255,255,.045) 49%, transparent 50%),
    linear-gradient(45deg, transparent 46%, rgba(255,255,255,.045) 47%, rgba(255,255,255,.045) 49%, transparent 50%);
  background-size: auto, auto, 250px 250px, 250px 250px;
}

.app-card {
  width: 100%;
  max-width: 430px;
  overflow: hidden;
  padding: 9px;
  border: 1px solid #8c236f;
  border-radius: 18px;
  background: linear-gradient(180deg, #120013, #1b0019 68%, #0a000b);
  box-shadow: 0 22px 60px #000, 0 0 32px rgba(255, 39, 199, .12);
}

.brand-header {
  height: 56px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #6e1b58;
}

.brand-header img {
  width: 176px;
  max-height: 46px;
  object-fit: contain;
}

.online-dot {
  position: absolute;
  top: 15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 9px var(--gold);
}

.hero {
  margin-top: 9px;
  overflow: hidden;
  border: 1px solid #72205f;
  border-radius: 8px;
  background: #24001d;
}

.hero img { display: block; width: 100%; height: auto; }

.support {
  margin: 12px 8px;
  color: var(--gold);
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .75px;
  line-height: 1.5;
}

.actions { display: grid; gap: 9px; }

.button {
  min-height: 51px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1px;
  transition: transform .16s ease, filter .16s ease;
}

.button:hover { transform: translateY(-2px); filter: brightness(1.08); }
.button:active { transform: translateY(0); }
.button-primary { border: 2px solid #ff9ce8; background: linear-gradient(180deg, #ff3fcb, #c70093); box-shadow: inset 0 0 0 2px #7d005d; }
.button-secondary { border: 2px solid var(--gold); color: var(--gold); background: #090008; }

.metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 17px;
}

.metrics div {
  min-width: 0;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid #4e163e;
  border-radius: 7px;
  background: #090008;
}

.metrics span { color: #ad94aa; font-size: 9px; }
.metrics strong { color: var(--gold); font-size: 12px; }

.site-info {
  margin: 17px 0 0;
  padding: 8px 13px;
  border: 1px solid #8c236f;
  border-radius: 9px;
  background: #0b000b;
}

.site-info div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #35102d;
}

.site-info div:last-child { border-bottom: 0; }
.site-info dt { color: var(--pink-soft); font-size: 10px; font-weight: 900; }
.site-info dd { margin: 0; font-size: 11px; font-weight: 800; }
.notice { min-height: 16px; margin: 12px 8px 0; color: var(--gold); text-align: center; font-size: 11px; }
footer { margin-top: 5px; padding: 18px 8px 10px; border-top: 1px solid #4e163e; color: #b46a9e; text-align: center; font-size: 10px; font-weight: 800; letter-spacing: .7px; }

@media (max-width: 480px) {
  body { display: block; padding: 10px; background-size: auto, auto, 180px 180px, 180px 180px; }
  .app-card { width: calc(100vw - 20px); max-width: calc(100vw - 20px); margin: 0 auto; border-radius: 13px; }
  .brand-header { height: 48px; }
  .site-info div { grid-template-columns: 112px minmax(0, 1fr); }
  .site-info dd { min-width: 0; overflow-wrap: anywhere; }
}

@media (max-width: 350px) {
  .metrics { grid-template-columns: 1fr; }
  .site-info div { grid-template-columns: 1fr; gap: 4px; }
}
