/* Design: Grass (lime/green), simple and fast. */

:root {
  --bg0: #061307;
  --bg1: #071b09;
  --card: rgba(10, 25, 12, 0.72);
  --stroke: rgba(158, 255, 141, 0.22);
  --text: rgba(234, 255, 232, 0.92);
  --muted: rgba(234, 255, 232, 0.68);
  --lime: #67ff4a;
  --lime2: #b7ff45;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
  --radius: 20px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 700px at 25% 20%, rgba(103, 255, 74, 0.16), transparent 55%),
    radial-gradient(900px 540px at 80% 30%, rgba(183, 255, 69, 0.12), transparent 50%),
    linear-gradient(180deg, var(--bg1), var(--bg0));
  overflow-x: hidden;
}

.bg {
  position: fixed;
  inset: -40vmax;
  background:
    radial-gradient(900px 620px at 30% 25%, rgba(103, 255, 74, 0.22), transparent 55%),
    radial-gradient(760px 520px at 70% 28%, rgba(183, 255, 69, 0.14), transparent 52%),
    url("./grass-bg.png");
  background-size: cover;
  background-position: center;
  filter: blur(34px) saturate(1.12) brightness(0.72);
  opacity: 0.9;
  pointer-events: none;
  transform: scale(1.08);
}

.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      180deg,
      rgba(6, 19, 7, 0.74),
      rgba(6, 19, 7, 0.88)
    ),
    radial-gradient(800px 520px at 50% 15%, rgba(103, 255, 74, 0.14), transparent 60%);
}

.wrap {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: start;
  max-width: 980px;
  margin: 0 auto;
  padding: 32px 18px;
  gap: 22px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(6, 19, 7, 0.32);
  border: 1px solid rgba(158, 255, 141, 0.14);
  backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logoImg {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.55);
  object-fit: cover;
  background: rgba(0, 0, 0, 0.25);
}

.brand__name {
  font-weight: 800;
  letter-spacing: 0.2px;
  font-size: 18px;
  line-height: 1.1;
  color: rgba(234, 255, 232, 0.98);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.65);
}

.brand__meta {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.2;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.65);
}

.card {
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  padding: 26px;
  backdrop-filter: blur(10px);
}

.title {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.4px;
}

.subtitle {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 70ch;
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono",
    monospace;
  font-size: 0.95em;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.1px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  user-select: none;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease,
    box-shadow 120ms ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn__iconImg {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.btn--primary .btn__iconImg {
  background: rgba(0, 0, 0, 0.18);
  border-color: rgba(0, 0, 0, 0.18);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
}

.btn--primary {
  color: rgba(6, 19, 7, 0.92);
  background: linear-gradient(90deg, var(--lime), var(--lime2));
  box-shadow: 0 14px 34px rgba(103, 255, 74, 0.18);
}

.btn--primary:hover {
  box-shadow: 0 18px 46px rgba(103, 255, 74, 0.24);
}

.btn--ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

.btn--ghost:hover {
  border-color: rgba(158, 255, 141, 0.25);
  background: rgba(255, 255, 255, 0.05);
}

.info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.pill {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.pill__k {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.pill__v {
  font-weight: 700;
}

.note {
  margin-top: 14px;
  min-height: 22px;
  color: rgba(183, 255, 69, 0.9);
  font-size: 13px;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  color: rgba(234, 255, 232, 0.78);
  font-size: 13px;
  padding: 10px 12px;
  flex-wrap: wrap;
  border-radius: 16px;
  background: rgba(6, 19, 7, 0.36);
  border: 1px solid rgba(158, 255, 141, 0.14);
  backdrop-filter: blur(10px);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.65);
}

.link {
  color: rgba(183, 255, 69, 0.88);
  text-decoration: none;
  border-bottom: 1px dashed rgba(183, 255, 69, 0.35);
}
.link:hover {
  border-bottom-color: rgba(183, 255, 69, 0.7);
}

.dot {
  opacity: 0.55;
  padding: 0 6px;
}

.muted {
  opacity: 0.85;
}

.muteBtn {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(158, 255, 141, 0.18);
  background: rgba(6, 19, 7, 0.55);
  color: rgba(234, 255, 232, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
  display: grid;
  place-items: center;
  cursor: pointer;
  user-select: none;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}

.muteBtn:hover {
  background: rgba(6, 19, 7, 0.66);
  border-color: rgba(158, 255, 141, 0.28);
}

.muteBtn:active {
  transform: translateY(1px);
}

.muteBtn__icon {
  font-size: 18px;
  line-height: 1;
}

.muteBtn[hidden] {
  display: none;
}

@media (max-width: 560px) {
  .card {
    padding: 20px;
  }
  .info {
    grid-template-columns: 1fr;
  }
}

