/* Shared style for BALLRUN policy pages */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: #fafbfc;
  color: #1a1a1a;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: #ef5a00; text-decoration: underline; }
a:hover { color: #d24d00; }
.policy-top {
  position: sticky; top: 0; z-index: 10;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 14px clamp(16px, 3vw, 40px);
  display: flex; align-items: center; justify-content: space-between;
}
.policy-top .brand {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: #1a1a1a;
  text-decoration: none;
}
.policy-top .brand em { font-style: normal; color: #ef5a00; }
.policy-top .back {
  font-size: 13px;
  font-weight: 600;
  color: #4b5563;
  text-decoration: none;
}
.policy-top .back:hover { color: #ef5a00; }
.policy-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 48px) clamp(20px, 4vw, 40px) 80px;
}
.policy-wrap h1 {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.policy-wrap .updated {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
  background: #f3f4f6;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.policy-wrap h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 28px 0 8px;
  color: #1a1a1a;
}
.policy-wrap p,
.policy-wrap li {
  font-size: 15px;
  color: #374151;
  margin: 0 0 12px;
}
.policy-wrap ul { padding-left: 22px; margin-bottom: 12px; }
.policy-wrap li { margin: 0 0 6px; }
.policy-wrap strong { color: #1a1a1a; font-weight: 700; }
.policy-foot {
  border-top: 1px solid #e5e7eb;
  margin-top: 36px;
  padding-top: 16px;
  font-size: 12px;
  color: #6b7280;
  text-align: center;
}
.contact-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 22px 24px;
  margin: 20px 0;
  box-shadow: 0 1px 3px rgba(16,24,40,0.06);
}
.contact-card strong { display: block; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: #6b7280; margin-bottom: 4px; font-weight: 600; }
.contact-card a { font-size: 18px; font-weight: 700; color: #1a1a1a; text-decoration: none; }
.contact-card a:hover { color: #ef5a00; }
