/* Basic, clean, responsive styles for the Chicken Road landing */
:root {
  --bg: #0b0f14;
  --fg: #e7edf3;
  --muted: #a8b3bf;
  --primary: #ffcc00;
  --primary-ink: #1a1a1a;
  --accent: #ff7a00;
  --link: #2aa1ff;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--fg); font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica Neue, Arial, "Apple Color Emoji", "Segoe UI Emoji"; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 16px; }

.site-header { border-bottom: 1px solid #1b2530; position: sticky; top: 0; background: rgba(11,15,20,0.9); backdrop-filter: blur(8px); z-index: 50; }
.site-header .container { display: flex; align-items: center; gap: 16px; padding: 10px 16px; }
.brand { display: inline-flex; align-items: center; }

.lang-menu ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.lang-menu a { color: var(--muted); text-decoration: none; padding: 4px 8px; border-radius: 6px; border: 1px solid #1b2530; }
.lang-menu a[aria-current="page"] { color: var(--fg); border-color: var(--accent); }

section { padding: 40px 0; border-bottom: 1px solid #1b2530; }
section:last-of-type { border-bottom: none; }

h1, h2, h3 { line-height: 1.2; margin: 0 0 12px 0; }
p { color: var(--muted); line-height: 1.6; }
ul { color: var(--muted); }

.subtitle { color: var(--fg); font-size: 1.05rem; }
.cta { display: flex; gap: 12px; margin: 16px 0; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 16px; border-radius: 8px; text-decoration: none; font-weight: 600; }
.btn.primary { background: var(--primary); color: var(--primary-ink); }
.btn.secondary, .btn.tertiary { border: 1px solid #2b3a48; color: var(--fg); }
.btn.secondary:hover, .btn.tertiary:hover { border-color: var(--accent); }

figure { margin: 16px 0; }
figcaption { color: var(--muted); font-size: 0.9rem; }

.facts, .compare { width: 100%; border-collapse: collapse; background: #0f141a; border-radius: 12px; overflow: hidden; }
.facts th, .facts td, .compare th, .compare td { text-align: left; padding: 10px 12px; border-bottom: 1px solid #1b2530; }
.facts th { width: 180px; color: var(--fg); }
.facts tr:last-child td, .compare tr:last-child td { border-bottom: none; }

.columns { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 768px) { .columns { grid-template-columns: 1fr 1fr; } }

details { background: #0f141a; border: 1px solid #1b2530; border-radius: 10px; padding: 8px 12px; margin: 10px 0; }
details summary { cursor: pointer; color: var(--fg); }

.site-footer { padding: 20px 0; color: var(--muted); }
.site-footer nav ul { list-style: none; padding: 0; margin: 0 0 8px; display: flex; gap: 10px; flex-wrap: wrap; }
.site-footer a { color: var(--link); text-decoration: none; }

/* Accessibility improvements */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 6px; }