

:root {
  color-scheme: dark;
  font-family: Arial, Helvetica, sans-serif;
  background: #000;
  color: #e8e8e8;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: #000;
  color: #e8e8e8;
  -webkit-font-smoothing: antialiased;
}

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

header,
footer {
  width: calc(100% - 48px);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}

header {
  height: 64px;
}

header a,
footer a:hover { color: #e8e8e8; }

.screen {
  min-height: calc(100vh - 128px);
  width: min(940px, calc(100% - 48px));
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(50px, 12vw, 160px);
}

.case {
  text-align: center;
}

.ruling {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.timer {
  margin: 6px 0 0;
  font-size: clamp(70px, 10vw, 112px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.06em;
}

.note {
  margin: 24px 0 0;
  color: #666;
  font-size: 13px;
}

.appeal {
  padding-left: clamp(24px, 5vw, 72px);
  border-left: 1px solid #292929;
}

.appeal span {
  color: #777;
  font-size: 12px;
}

.appeal p {
  max-width: 310px;
  margin: 13px 0 28px;
  font-size: clamp(25px, 3.2vw, 38px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.appeal a {
  display: inline-block;
  padding: 13px 16px;
  border: 1px solid #555;
  border-radius: 7px;
  font-size: 13px;
}

.appeal a:hover {
  background: #fff;
  color: #000;
}

footer {
  height: 64px;
  color: #555;
}

.contact-page {
  width: calc(100% - 48px);
  margin: 0 auto;
  padding-top: 48px;
}

.contact-page h1 {
  margin: 0 0 40px;
  font-size: 18px;
  font-weight: 600;
}

.contact-list {
  width: min(440px, 100%);
  margin: 0;
}

.contact-list div {
  display: grid;
  grid-template-columns: 100px 1fr;
  padding: 15px 0;
  border-top: 1px solid #292929;
}

.contact-list dt,
.contact-list dd {
  margin: 0;
  font-size: 13px;
}

.contact-list dt { color: #666; }
.contact-list a:hover { text-decoration: underline; }

.privacy-page {
  width: min(620px, calc(100% - 48px));
  margin: 0 0 80px 24px;
  padding-top: 48px;
}

.privacy-page h1 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.updated {
  margin: 8px 0 48px;
  color: #555;
  font-size: 12px;
}

.privacy-page section {
  padding: 24px 0;
  border-top: 1px solid #292929;
}

.privacy-page h2 {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 600;
}

.privacy-page section p {
  margin: 0;
  color: #888;
  font-size: 13px;
  line-height: 1.6;
}

.privacy-page section a { color: #e8e8e8; }

@media (max-width: 650px) {
  header,
  footer,
  .screen,
  .contact-page { width: calc(100% - 32px); }

  .privacy-page {
    width: calc(100% - 32px);
    margin-left: 16px;
  }

  .screen {
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: center;
    gap: 70px;
  }

  .appeal {
    width: 100%;
    padding: 26px 0 0;
    border-left: 0;
    border-top: 1px solid #292929;
    text-align: center;
  }

  .appeal p { margin-left: auto; margin-right: auto; }
}
