@import url('https://fonts.googleapis.com/css2?family=Audiowide&display=swap');


:root { color-scheme: dark; }
* { box-sizing: border-box; }
body {
  margin: 0; min-height: 100vh; display: grid; place-items: center;
  background: #0b0b0c; color: #e5e7eb; font-family: system-ui, sans-serif;
}
.wrap { width: 100%; max-width: 720px; padding: 32px; text-align: center; }
.brand { font-family: 'Audiowide', sans-serif; font-size: 48px; margin: 0 0 4px; }
.tag { margin: 0 0 28px; font-weight: 400; color: #9aa0a6; font-size: 18px; }
.pw {
  width: 100%; background: #151517; color: #e5e7eb; border: 1px solid #2a2a2e;
  padding: 10px 12px; border-radius: 8px; text-align: center; margin-bottom: 12px;
}
.btn {
  width: 100%; background: #2b2f36; color: #e5e7eb; border: none;
  padding: 10px 12px; border-radius: 8px; cursor: pointer;
}
.btn:hover { background: #3a3f48; }
.msg { height: 22px; margin-top: 10px; color: #ff9aa2; font-size: 14px; }

.table-wrap {
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid #444; /* outer border */
  border-radius: 6px;
  overflow: hidden;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #111; /* enforce table background */
}

th, td {
  border: 1px solid #444; /* stronger cell borders */
  padding: 10px 12px;
  vertical-align: top;
  background: #0b0b0c; /* match body background */
  color: #e5e7eb;
}

thead th {
  background: #1a1a1d;
  font-weight: 600;
}

ul {
  margin-top: 12px;
  padding-left: 18px;
  list-style-type: disc;
}

.tag {
  line-height: 1.6;
  font-size: 18px;
  color: #9aa0a6;
}

.btn-peeq {
  font-family: 'Audiowide', sans-serif;
  font-size: 22px;
  text-transform: lowercase;
  margin-top: 32px;
  display: inline-block;
  padding: 14px 20px;
  background: #2b2f36;
  color: #e5e7eb;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
}

.btn-peeq:hover {
  background: #3a3f48;
}