/* ============================================================
   Gimme Giveaways — Responsible Play page styles
   Extends styles.css + site-pages.css.
   ============================================================ */

/* ===== Account tools ===== */
.tools {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: var(--rule);
  border-left: var(--rule);
}
.tools .tool {
  border-right: var(--rule);
  border-bottom: var(--rule);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--bg);
  transition: background .2s ease;
}
.tools .tool:hover { background: rgba(248,191,61,0.04); }
.tools .tool-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.tools .tool-label {
  font-family: var(--f-serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.05;
}
.tools .tool-state {
  font-family: var(--f-mono);
  font-weight: 600;
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
  border: 1px solid var(--hairline-strong);
  padding: 5px 9px;
  white-space: nowrap;
  flex-shrink: 0;
}
.tools .tool-state.on {
  color: var(--on-gold);
  background: var(--gold);
  border-color: var(--gold-ink);
}
.tools .tool-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-dim);
  flex: 1;
}
.tools .tool-action {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-ink);
  align-self: flex-start;
  border-bottom: 1px solid var(--gold-line);
  padding-bottom: 4px;
  transition: color .2s ease, gap .2s ease;
}
.tools .tool-action:hover { color: var(--gold-deep); gap: 16px; }
.tools .tool-action .arrow {
  width: 18px; height: 1px;
  background: currentColor;
  position: relative;
}
.tools .tool-action .arrow::after {
  content: "";
  position: absolute;
  right: 0; top: -2.5px;
  width: 6px; height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

/* ===== Private self-check ===== */
.check {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.check .check-intro {
  position: sticky;
  top: 200px;
}
.check .check-intro .marker {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-ink);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.check .check-intro .marker::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold);
}
.check .check-intro h2 {
  font-family: var(--f-serif);
  font-weight: 500;
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.check .check-intro h2 em { font-style: italic; font-weight: 400; color: var(--gold); display: block; }
.check .check-intro p {
  margin-top: 22px;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 360px;
}
.check .check-tally {
  margin-top: 28px;
  padding-top: 22px;
  border-top: var(--rule);
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.check .check-tally .big {
  font-family: var(--f-serif);
  font-size: 52px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--gold-ink);
  font-variant-numeric: tabular-nums;
}
.check .check-tally .of {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.check .check-list {
  display: flex;
  flex-direction: column;
  border-top: var(--rule);
}
.check .sign {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 18px;
  align-items: start;
  text-align: left;
  padding: 22px 4px;
  border-bottom: var(--rule);
  cursor: pointer;
  transition: padding-left .2s ease;
}
.check .sign:hover { padding-left: 10px; }
.check .sign .box {
  width: 22px; height: 22px;
  border: 1px solid var(--hairline-strong);
  position: relative;
  margin-top: 2px;
  transition: border-color .2s ease, background .2s ease;
}
.check .sign.on .box {
  background: var(--gold);
  border-color: var(--gold-ink);
}
.check .sign.on .box::after {
  content: "";
  position: absolute;
  left: 7px; top: 3px;
  width: 6px; height: 11px;
  border-right: 2px solid var(--on-gold);
  border-bottom: 2px solid var(--on-gold);
  transform: rotate(42deg);
}
.check .sign .txt {
  font-family: var(--f-serif);
  font-size: 18px;
  line-height: 1.4;
  color: var(--ink-2);
  letter-spacing: -0.005em;
}
.check .sign.on .txt { color: var(--ink); }

.check .verdict {
  margin-top: 26px;
  padding: 26px 28px;
  border: 1px solid var(--hairline-strong);
  border-left: 3px solid var(--gold);
  background: var(--bg);
}
.check .verdict.watch { border-left-color: #E07333; }
.check .verdict.act {
  border-left-color: #C8410E;
  background: rgba(200,65,14,0.04);
}
.check .verdict h4 {
  font-family: var(--f-serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 10px;
}
.check .verdict p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
}
.check .verdict-cta {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-mono);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C8410E;
  border-bottom: 1px solid rgba(200,65,14,0.4);
  padding-bottom: 4px;
}
.check .verdict-cta .arrow {
  width: 18px; height: 1px;
  background: currentColor;
  position: relative;
}
.check .verdict-cta .arrow::after {
  content: "";
  position: absolute;
  right: 0; top: -2.5px;
  width: 6px; height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

/* ===== Help resources ===== */
.help-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: var(--rule);
  border-left: var(--rule);
}
.help-card {
  border-right: var(--rule);
  border-bottom: var(--rule);
  padding: 32px 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--bg);
}
.help-card .hc-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.help-card .hc-name {
  font-family: var(--f-serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.05;
}
.help-card .hc-by {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.help-card .hc-detail {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-dim);
  flex: 1;
}
.help-card .hc-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 18px;
  border-top: var(--rule);
}
.help-card .hc-num {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--gold-ink);
}
.help-card .hc-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color .2s ease, gap .2s ease;
}
.help-card .hc-contact:hover .hc-cta { color: var(--gold-ink); gap: 14px; }
.help-card .hc-cta .arrow {
  width: 16px; height: 1px;
  background: currentColor;
  position: relative;
}
.help-card .hc-cta .arrow::after {
  content: "";
  position: absolute;
  right: 0; top: -2.5px;
  width: 6px; height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .tools { grid-template-columns: 1fr; }
  .check { grid-template-columns: 1fr; gap: 36px; }
  .check .check-intro { position: static; }
  .help-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .tools .tool { padding: 26px 0; border-right: 0; }
  .tools .tool-label { font-size: 21px; }
  .check .sign .txt { font-size: 16px; }
  .help-grid { grid-template-columns: 1fr; }
  .help-card { padding: 26px 0; border-right: 0; }
}
