@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --playhousegames-bg: #f6f4f0;
  --playhousegames-panel: #ffffff;
  --playhousegames-ink: #1f2933;
  --playhousegames-muted: #4b5563;
  --playhousegames-accent: #e76f51;
  --playhousegames-accent-soft: #f6d2c8;
  --playhousegames-mint: #2f9da3;
  --playhousegames-mint-soft: #c7ecec;
  --playhousegames-border: #e2e6ea;
  --playhousegames-shadow: 0 12px 40px rgba(31, 41, 51, 0.08);
  --playhousegames-radius: 18px;
  --playhousegames-transition: all 0.2s ease;
}

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

body.playhousegames-body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 10% 20%, rgba(231,111,81,0.08), transparent 30%),
              radial-gradient(circle at 80% 0%, rgba(47,157,163,0.12), transparent 35%),
              var(--playhousegames-bg);
  color: var(--playhousegames-ink);
  line-height: 1.7;
}

a { color: var(--playhousegames-accent); text-decoration: none; transition: var(--playhousegames-transition); }
a:hover { color: var(--playhousegames-mint); }

.playhousegames-shell {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 100vh;
}

.playhousegames-sidebar {
  position: sticky;
  top: 0;
  align-self: start;
  height: 100vh;
  padding: 2rem 1.5rem;
  background: #ffffff;
  border-right: 1px solid var(--playhousegames-border);
  box-shadow: inset -1px 0 0 var(--playhousegames-border);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.playhousegames-brand { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; }
.playhousegames-logo { display: inline-flex; align-items: center; gap: 0.75rem; color: var(--playhousegames-ink); font-weight: 700; }
.playhousegames-logo img { width: 46px; height: 46px; border-radius: 12px; box-shadow: var(--playhousegames-shadow); }
.playhousegames-logo-title { display: block; font-size: 1.05rem; }
.playhousegames-logo-tagline { display: block; font-size: 0.9rem; color: var(--playhousegames-muted); }

.playhousegames-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--playhousegames-border);
  background: #fef3eb;
  padding: 0.5rem 0.6rem;
  border-radius: 12px;
  cursor: pointer;
}
.playhousegames-burger span { width: 22px; height: 2px; background: var(--playhousegames-accent); transition: var(--playhousegames-transition); }

.playhousegames-nav { display: flex; flex-direction: column; gap: 1rem; }
.playhousegames-nav-list { list-style: none; display: grid; gap: 0.35rem; }
.playhousegames-nav-link {
  display: block;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  color: var(--playhousegames-muted);
  font-weight: 600;
}
.playhousegames-nav-link.active,
.playhousegames-nav-link:hover { background: #fef3eb; color: var(--playhousegames-ink); }

.playhousegames-cta {
  display: inline-block;
  background: linear-gradient(120deg, var(--playhousegames-accent), #f29f8c);
  color: #fff;
  padding: 0.75rem 1.1rem;
  border-radius: 12px;
  font-weight: 700;
  text-align: center;
  box-shadow: var(--playhousegames-shadow);
}
.playhousegames-cta:hover { transform: translateY(-1px); box-shadow: 0 16px 40px rgba(231,111,81,0.25); }

.playhousegames-side-note {
  font-size: 0.95rem;
  color: var(--playhousegames-muted);
  background: #f9fafb;
  border: 1px solid var(--playhousegames-border);
  border-radius: 14px;
  padding: 1rem;
}

.playhousegames-main { background: transparent; }
.playhousegames-content { padding: 2.5rem 6vw 3rem; display: block; }

.playhousegames-hero,
.playhousegames-page-hero { margin-bottom: 2.5rem; }
.playhousegames-hero-grid,
.playhousegames-page-hero-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.75rem; align-items: center; background: var(--playhousegames-panel); border: 1px solid var(--playhousegames-border); border-radius: var(--playhousegames-radius); padding: 1.75rem; box-shadow: var(--playhousegames-shadow); }
.playhousegames-hero-copy h1,
.playhousegames-page-hero h1,
.playhousegames-page-hero-inner h1 { font-size: clamp(2.1rem, 3vw, 2.7rem); margin: 0.5rem 0 1rem; word-break: break-word; }
.playhousegames-kicker { letter-spacing: 0.8px; text-transform: uppercase; color: var(--playhousegames-accent); font-weight: 700; }
.playhousegames-lede { color: var(--playhousegames-muted); max-width: 820px; }
.playhousegames-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.25rem; }

.playhousegames-btn {
  border: none;
  cursor: pointer;
  font-weight: 700;
  border-radius: 12px;
  padding: 0.9rem 1.3rem;
  transition: var(--playhousegames-transition);
}
.playhousegames-btn-primary { background: linear-gradient(120deg, var(--playhousegames-mint), #3fb7c0); color: #0f2a2d; }
.playhousegames-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 16px 40px rgba(47,157,163,0.25); }
.playhousegames-btn-ghost { background: transparent; border: 1px solid var(--playhousegames-border); color: var(--playhousegames-ink); }
.playhousegames-btn-ghost:hover { border-color: var(--playhousegames-accent); color: var(--playhousegames-accent); }
.playhousegames-btn-secondary { background: #f6f4f0; border: 1px solid var(--playhousegames-border); color: var(--playhousegames-ink); }
.playhousegames-btn-secondary:hover { border-color: var(--playhousegames-mint); color: var(--playhousegames-mint); }

.playhousegames-metrics { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; margin-top: 1.25rem; }
.playhousegames-metric-number { font-weight: 800; color: var(--playhousegames-accent); display: block; }
.playhousegames-metric-label { color: var(--playhousegames-muted); }

.playhousegames-hero-panel { display: flex; justify-content: flex-end; }
.playhousegames-panel-card { background: #fefefe; border: 1px solid var(--playhousegames-border); border-radius: var(--playhousegames-radius); padding: 1.5rem; box-shadow: var(--playhousegames-shadow); width: 100%; }
.playhousegames-list { list-style: none; display: grid; gap: 0.45rem; color: var(--playhousegames-muted); }
.playhousegames-list i { color: var(--playhousegames-accent); margin-right: 0.45rem; }
.playhousegames-inline-link { display: inline-block; margin-top: 0.75rem; font-weight: 700; color: var(--playhousegames-mint); }

.playhousegames-section { padding: 2.25rem 0; }
.playhousegames-section-soft { background: #ffffff; border: 1px solid var(--playhousegames-border); border-radius: var(--playhousegames-radius); padding: 2.25rem 2rem; margin-bottom: 2rem; box-shadow: var(--playhousegames-shadow); }
.playhousegames-section-contrast { background: linear-gradient(135deg, #0f8b8d, #f18f70); color: #fff; border-radius: var(--playhousegames-radius); padding: 2.25rem; }
.playhousegames-section-contrast h2,
.playhousegames-section-contrast p,
.playhousegames-section-contrast li { color: #fff; }
.playhousegames-section-head { text-align: center; max-width: 860px; margin: 0 auto 2rem; }
.playhousegames-section-head h2 { font-size: 2rem; margin-bottom: 0.5rem; }
.playhousegames-section-head p { color: var(--playhousegames-muted); }

.playhousegames-grid { display: grid; gap: 1.4rem; }
.playhousegames-grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.playhousegames-grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.playhousegames-card {
  background: #ffffff;
  border: 1px solid var(--playhousegames-border);
  border-radius: var(--playhousegames-radius);
  padding: 1.5rem;
  box-shadow: var(--playhousegames-shadow);
}
.playhousegames-card-grid .playhousegames-card { display: flex; flex-direction: column; height: 100%; }
.playhousegames-card-image { border-radius: 14px; overflow: hidden; border: 1px solid var(--playhousegames-border); }
.playhousegames-card-image img { width: 100%; height: 180px; object-fit: cover; display: block; }
.playhousegames-card-body { display: flex; flex-direction: column; gap: 0.75rem; padding-top: 1rem; }
.playhousegames-card-compact { padding: 1.1rem; }
.playhousegames-card-plain { background: transparent; border-style: dashed; }

.playhousegames-pill {
  display: inline-block;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--playhousegames-border);
  color: var(--playhousegames-muted);
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
}
.playhousegames-badge {
  display: inline-block;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: var(--playhousegames-accent-soft);
  color: var(--playhousegames-accent);
  font-weight: 700;
  font-size: 0.9rem;
}
.playhousegames-badge-amber { background: #fde9d7; color: #e68635; }
.playhousegames-badge-mint { background: var(--playhousegames-mint-soft); color: var(--playhousegames-mint); }

.playhousegames-tile { background: #ffffff; border: 1px solid var(--playhousegames-border); border-radius: var(--playhousegames-radius); padding: 1.4rem; box-shadow: var(--playhousegames-shadow); }

.playhousegames-split { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; align-items: start; }
.playhousegames-quote { background: #0f2a2d; color: #e3f3f4; border-radius: var(--playhousegames-radius); padding: 1.4rem; box-shadow: var(--playhousegames-shadow); }
.playhousegames-quote span { display: block; margin-top: 0.6rem; color: #fff; }
.playhousegames-steps { list-style: decimal; padding-left: 1.5rem; color: inherit; }
.playhousegames-steps li { margin-bottom: 0.5rem; }

.playhousegames-cta-panel { background: #ffffff; border: 1px solid var(--playhousegames-border); border-radius: var(--playhousegames-radius); padding: 1.6rem; box-shadow: var(--playhousegames-shadow); }
.playhousegames-cta-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1rem; }
.playhousegames-center { text-align: center; margin-top: 1.25rem; }

.playhousegames-page-hero-inner { background: #ffffff; }
.playhousegames-hero-bubble {
  background: #fef3eb;
  border: 1px solid #f8d8c8;
  border-radius: var(--playhousegames-radius);
  padding: 1rem 1.25rem;
  color: var(--playhousegames-ink);
}
.playhousegames-meta { color: var(--playhousegames-muted); font-size: 0.95rem; margin-top: 0.35rem; }

.playhousegames-contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.playhousegames-contact-info,
.playhousegames-contact-form { background: #ffffff; border: 1px solid var(--playhousegames-border); border-radius: var(--playhousegames-radius); padding: 1.5rem; box-shadow: var(--playhousegames-shadow); }
.playhousegames-form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.playhousegames-form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.playhousegames-form-group input,
.playhousegames-form-group textarea {
  background: #f9fafb;
  border: 1px solid var(--playhousegames-border);
  color: var(--playhousegames-ink);
  padding: 0.9rem 0.95rem;
  border-radius: 10px;
  font: inherit;
}
.playhousegames-form-group input:focus,
.playhousegames-form-group textarea:focus { border-color: var(--playhousegames-accent); outline: none; }
.playhousegames-form-note { color: var(--playhousegames-muted); }
.playhousegames-form-group .error { border-color: #e63946; }

.playhousegames-cookie-panel {
  display: grid;
  gap: 1rem;
  margin: 1.25rem 0;
  background: #ffffff;
  border: 1px solid var(--playhousegames-border);
  border-radius: var(--playhousegames-radius);
  padding: 1.25rem;
  box-shadow: var(--playhousegames-shadow);
}
.playhousegames-cookie-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--playhousegames-border);
  padding-bottom: 0.75rem;
}
.playhousegames-cookie-row:last-child { border-bottom: none; padding-bottom: 0; }
.playhousegames-toggle { display: flex; align-items: center; gap: 0.45rem; color: var(--playhousegames-muted); }
.playhousegames-toggle input { accent-color: var(--playhousegames-accent); width: 18px; height: 18px; }

.playhousegames-legal { display: grid; gap: 1rem; color: var(--playhousegames-muted); }
.playhousegames-legal h2 { color: var(--playhousegames-ink); font-size: 1.5rem; margin-top: 0.5rem; }

.playhousegames-footer {
  background: #0f2a2d;
  color: #d6e7e8;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 2.5rem 6vw 2.25rem;
  margin-top: 2rem;
}
.playhousegames-footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.playhousegames-footer h3 { color: #fff; margin-bottom: 0.6rem; }
.playhousegames-sponsor,
.playhousegames-disclaimer {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--playhousegames-radius);
  padding: 1rem 1.25rem;
  color: #d6e7e8;
}
.playhousegames-footer-bottom { text-align: center; color: #c1d9da; font-size: 0.95rem; margin-top: 1rem; }

.playhousegames-message { margin-top: 1rem; padding: 0.9rem 1rem; border-radius: 12px; }
.playhousegames-alert-success { background: #e7f6f2; color: #0f6e69; border: 1px solid #bce3db; }
.playhousegames-alert-error { background: #fdecef; color: #a52834; border: 1px solid #f5c6cb; }

.playhousegames-cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  z-index: 90;
  max-width: 820px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--playhousegames-border);
  border-radius: var(--playhousegames-radius);
  padding: 1.2rem 1.4rem;
  box-shadow: var(--playhousegames-shadow);
  display: grid;
  gap: 0.8rem;
}
.playhousegames-cookie-banner p { color: var(--playhousegames-muted); }

@media (max-width: 1080px) {
  .playhousegames-shell { grid-template-columns: 1fr; }
  .playhousegames-sidebar {
    position: fixed;
    inset: 0;
    height: 100vh;
    transform: translateX(-100%);
    transition: var(--playhousegames-transition);
    z-index: 80;
  }
  .playhousegames-sidebar.open { transform: translateX(0); }
  .playhousegames-burger { display: flex; }
  .playhousegames-content { padding: 1.6rem 1.25rem 3rem; }
}

@media (max-width: 640px) {
  body.playhousegames-body { line-height: 1.6; }
  .playhousegames-card-image img { height: 150px; }
  h1, h2, h3 { word-break: break-word; }
  .playhousegames-cookie-row { flex-direction: column; align-items: flex-start; }
}

