* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  min-height: 100dvh;

  display: flex;
  justify-content: center;
  align-items: center;

  font-family: Arial, Helvetica, sans-serif;
  overflow: hidden;
  position: relative;
}

/* BACKGROUND */
body::before {
  content: "";
  position: fixed;
  inset: 0;

  background: url("resources/images/pauselock.webp") center/cover no-repeat;
  z-index: -3;
}

/* OVERLAY */
.bg-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: -2;
  pointer-events: none;
}

/* BOARD */
.faq-board {
  width: min(90vw, 900px);

  padding: 2vw;

  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.35));

  backdrop-filter: blur(8px);
  border-radius: 12px;

  z-index: 10;

  transform: translateY(-30vh);
}

/* PSA */
.psa-wrap {
  text-align: center;
  margin-bottom: 18px;
}

.psa {
  display: inline-block;

  font-size: clamp(1.1rem, 1.6vw, 1.6rem);
  font-weight: 600;

  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  letter-spacing: 0.3px;
}

.psa-link {
  color: #7db4ff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* DIVIDER */
.psa-divider {
  height: 1px;
  width: 100%;
  margin: 12px 0 18px 0;

  background: linear-gradient(
    to right,
    transparent,
    rgba(125, 180, 255, 0.35),
    rgba(255, 255, 255, 0.15),
    rgba(125, 180, 255, 0.35),
    transparent
  );
}

/* FAQ */
.faq-item {
  display: flex;
  gap: 10px;
  align-items: baseline;

  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-q {
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.faq-a {
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  font-weight: 700;

  color: #7db4ff;
  text-decoration: none;
  cursor: pointer;

  transition:
    color 0.2s ease,
    text-shadow 0.2s ease;
}

.faq-a:hover {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(125, 180, 255, 0.6);
}

/* CREDITS (RESTORED STYLE) */
.credits {
  margin-top: 18px;
  padding-top: 12px;

  border-top: 1px solid rgba(255, 255, 255, 0.15);

  font-size: clamp(0.75rem, 1vw, 0.95rem);
  color: rgba(255, 255, 255, 0.65);

  position: relative;
}

.credits-title {
  font-weight: 600;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
}

.credits-item {
  margin: 6px 0;
  line-height: 1.4;
}

.credits a {
  color: #7db4ff;
  text-decoration: none;

  border-bottom: 1px dotted rgba(125, 180, 255, 0.6);

  transition:
    color 0.2s ease,
    text-shadow 0.2s ease,
    border-color 0.2s ease;
}

.credits a:hover {
  color: #ffffff;
  border-color: #ffffff;
  text-shadow: 0 0 8px rgba(125, 180, 255, 0.6);
}

/* SCORE */
.score {
  position: absolute;
  right: 12px;
  bottom: 10px;

  font-size: clamp(0.8rem, 1vw, 1rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);

  min-height: 1em;
}

/* FLOATING IMAGE */
.floating-image {
  position: fixed;
  top: 0;
  left: 0;

  width: 160px;

  display: block;

  z-index: 8;
  pointer-events: auto;
}
