/* Shared base styles for Play Horses stub pages */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --black: #f5f5f0; --dark: #eaeae5; --dark-surface: #ffffff; --border: #d8d8d2;
  --text: #1a1a1a; --text-muted: #555; --text-dim: #888;
  --green: #3B6D11; --red: #A32D2D;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--black); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: var(--green); }
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(245,245,240,0.95); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border); padding: 0 2rem;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.nav-logo img { height: 28px; width: auto; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 0.875rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-links .btn-nav {
  background: #1a1a1a; color: #fff; padding: 0.5rem 1.25rem; border-radius: 6px;
  font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.04em; text-transform: uppercase; transition: background 0.2s;
}
.nav-links .btn-nav:hover { background: #333; color: #fff; }
.page {
  min-height: calc(100vh - 64px); padding: 7rem 2rem 5rem;
  max-width: 780px; margin: 0 auto;
}
.page .section-label {
  font-family: 'Oswald', sans-serif; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--green); margin-bottom: 1rem;
}
.page h1 {
  font-family: 'Oswald', sans-serif; font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em;
  line-height: 1.1; margin-bottom: 1.5rem;
}
.page h2 {
  font-family: 'Oswald', sans-serif; font-size: 1.4rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.03em; margin: 2.5rem 0 1rem;
}
.page p { color: var(--text-muted); margin-bottom: 1.25rem; font-size: 1.02rem; }
.page ul { color: var(--text-muted); margin: 0 0 1.25rem 1.5rem; }
.page ul li { margin-bottom: 0.5rem; }
.btn {
  display: inline-block; padding: 1rem 2.5rem; border-radius: 8px;
  font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 1rem;
  letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none;
  transition: all 0.2s; cursor: pointer; border: none;
}
.btn-primary { background: #1a1a1a; color: #fff; }
.btn-primary:hover { background: #333; }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-outline:hover { border-color: #555; }
.email-form {
  display: flex; gap: 0; max-width: 460px; margin: 1.5rem 0;
  border-radius: 8px; overflow: hidden; border: 1px solid var(--border);
}
.email-form:focus-within { border-color: var(--green); }
.email-form input {
  flex: 1; padding: 0.9rem 1.1rem; background: #fff; border: none;
  color: var(--text); font-size: 0.95rem; font-family: 'Inter', sans-serif; outline: none;
}
.email-form button {
  padding: 0.9rem 1.5rem; background: #1a1a1a; color: #fff; border: none;
  font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer;
}
.form-note { font-size: 0.8rem; color: var(--text-dim); }
.form-success { display:none; padding:0.85rem 1.25rem; background:var(--green); color:white; border-radius:8px; font-weight:600; max-width:460px; margin:1rem 0; }
footer { border-top: 1px solid var(--border); padding: 2.5rem 2rem; }
.footer-inner { max-width: 1080px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.footer-logo img { height: 22px; }
.footer-links { display: flex; gap: 1.75rem; flex-wrap: wrap; }
.footer-links a { color: var(--text-dim); text-decoration: none; font-size: 0.8rem; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 0.75rem; color: var(--text-dim); width: 100%; text-align: center; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
@media (max-width: 640px) {
  nav { padding: 0 1rem; }
  .nav-links { gap: 1rem; }
  .nav-links a:not(.btn-nav) { display: none; }
  .page { padding: 6rem 1.25rem 3rem; }
  .email-form { flex-direction: column; }
  .footer-inner { justify-content: center; text-align: center; }
}
