:root {
  --bg: #050505;
  --bg-2: #0c0d0f;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --panel-soft: rgba(255, 255, 255, 0.055);
  --line: rgba(255, 255, 255, 0.16);
  --line-strong: rgba(255, 255, 255, 0.28);
  --text: #f7f7f1;
  --muted: rgba(247, 247, 241, 0.72);
  --soft: rgba(247, 247, 241, 0.54);
  --gold: #f8d765;
  --orange: #ff7a1a;
  --red: #ef3f25;
  --green: #5df08d;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.52);
  --shadow-soft: 0 18px 48px rgba(0, 0, 0, 0.34);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --radius-xl: 46px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: hidden;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 520px at 12% 0%, rgba(255, 122, 26, 0.22), transparent 62%),
    radial-gradient(920px 520px at 90% 12%, rgba(239, 63, 37, 0.18), transparent 64%),
    linear-gradient(180deg, #090908 0%, #050505 34%, #060606 100%);
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 920px;
  font-size: clamp(3.7rem, 11vw, 8.8rem);
  font-weight: 700;
  overflow-wrap: break-word;
}

h2 {
  font-size: clamp(2.3rem, 5.8vw, 5.3rem);
  font-weight: 700;
  overflow-wrap: break-word;
}

h3 {
  font-size: clamp(1.16rem, 2.2vw, 1.8rem);
  font-weight: 700;
  line-height: 1.1;
}

button,
input,
textarea,
select {
  font: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  color: #080806;
  background: var(--gold);
}

:where(a, button):focus-visible {
  outline: 3px solid rgba(248, 215, 101, 0.72);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.site-logo img {
  width: 92px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1 1 auto;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(247, 247, 241, 0.72);
  font-size: 0.88rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.nav-toggle-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-icon {
  position: relative;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-icon::before {
  top: -6px;
}

.nav-toggle-icon::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
  transform: translateY(6px) rotate(90deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
  opacity: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #130a02;
  background: linear-gradient(135deg, #ffe27a 0%, #ff9e2c 48%, #ff5429 100%);
  box-shadow: 0 18px 44px rgba(255, 122, 26, 0.3);
}

.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.3);
}

.header-cta {
  min-height: 42px;
  padding: 11px 17px;
  font-size: 0.86rem;
  white-space: nowrap;
}

.mobile-nav-cta,
.site-nav .mobile-nav-cta {
  display: none;
}

.chicken-landing {
  padding-top: 76px;
  background:
    radial-gradient(860px 460px at 4% 34%, rgba(248, 215, 101, 0.08), transparent 68%),
    radial-gradient(860px 460px at 100% 58%, rgba(255, 122, 26, 0.09), transparent 68%),
    var(--bg);
}

.chicken-hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 76px);
  padding: 28px 0 64px;
  overflow: hidden;
  background: #080705;
}

.chicken-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.58) 42%, rgba(5, 5, 5, 0.78) 100%),
    radial-gradient(560px 360px at 72% 28%, rgba(248, 215, 101, 0.28), transparent 60%),
    radial-gradient(840px 480px at 10% 78%, rgba(239, 63, 37, 0.28), transparent 68%);
}

.chicken-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 220px;
  background: linear-gradient(180deg, transparent, var(--bg));
}

.chicken-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.76;
}

.chicken-hero-inner {
  position: relative;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: clamp(38px, 6vw, 76px);
  color: rgba(247, 247, 241, 0.56);
  font-size: 0.9rem;
  font-weight: 700;
}

.breadcrumbs a {
  color: var(--text);
}

.chicken-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.62fr);
  grid-template-areas: "copy promo";
  align-items: center;
  gap: clamp(28px, 6vw, 76px);
}

.chicken-hero-grid > *,
.chicken-two-col > *,
.chicken-card-pair > *,
.chicken-slot-grid > *,
.chicken-small-slot-grid > * {
  min-width: 0;
}

.chicken-hero-copy {
  grid-area: copy;
  max-width: 780px;
}

.chicken-hero-copy h1 span,
.chicken-promo-panel h2 span {
  display: block;
}

.chicken-kicker,
.chicken-panel-label {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.lead {
  max-width: 690px;
  margin-top: 26px;
  color: rgba(247, 247, 241, 0.86);
  font-size: clamp(1.18rem, 2.3vw, 1.75rem);
  line-height: 1.45;
}

.chicken-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.chicken-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.chicken-stat-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(247, 247, 241, 0.78);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
}

.chicken-stat-row strong {
  color: var(--gold);
  font-family: "Sora", "Segoe UI", sans-serif;
}

.chicken-promo-panel {
  grid-area: promo;
  align-self: start;
  justify-self: end;
  width: min(100%, 510px);
  padding: clamp(22px, 3.4vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
    rgba(15, 12, 9, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.chicken-promo-panel h2 {
  max-width: 390px;
  font-size: clamp(2rem, 3.6vw, 3.55rem);
}

.chicken-promo-panel p:not(.chicken-panel-label) {
  margin-top: 18px;
  max-width: 480px;
}

.promo-unlock-card {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding: 18px;
  border: 1px dashed rgba(248, 215, 101, 0.42);
  border-radius: 22px;
  background:
    radial-gradient(180px 90px at 100% 0%, rgba(248, 215, 101, 0.18), transparent 68%),
    rgba(0, 0, 0, 0.32);
}

.promo-lock-label {
  color: rgba(247, 247, 241, 0.58);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.promo-unlock-card strong {
  color: var(--gold);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  letter-spacing: 0.08em;
  line-height: 1;
  overflow-wrap: anywhere;
}

.promo-unlock-card p {
  font-size: 0.92rem;
  line-height: 1.52;
}

.promo-unlock-card.is-unlocked {
  border-style: solid;
  border-color: rgba(93, 240, 141, 0.62);
  box-shadow: 0 0 0 1px rgba(93, 240, 141, 0.14), 0 24px 60px rgba(93, 240, 141, 0.08);
}

.share-button-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.share-button-grid .btn {
  position: relative;
  justify-content: flex-start;
  gap: 12px;
  min-height: 56px;
  padding: 12px 16px;
  border-color: rgba(255, 255, 255, 0.2);
  font-size: 0.92rem;
  font-weight: 900;
}

.share-button-grid .btn:first-child {
  grid-column: 1 / -1;
}

.share-button-grid img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex: 0 0 30px;
  border-radius: 999px;
}

.share-button-grid .btn span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.share-button-grid .btn-ghost {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.055);
}

.share-button-grid .btn-ghost:hover {
  border-color: rgba(248, 215, 101, 0.36);
  background:
    linear-gradient(135deg, rgba(248, 215, 101, 0.12), rgba(255, 122, 26, 0.08)),
    rgba(255, 255, 255, 0.08);
}

.chicken-section {
  padding: clamp(56px, 8vw, 116px) 0;
}

.chicken-showcase {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: transparent;
}

.chicken-showcase .container {
  position: relative;
  z-index: 1;
}

.chicken-two-col,
.chicken-card-pair {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
}

.chicken-community .chicken-two-col {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
}

.chicken-text-zone {
  max-width: 650px;
}

.chicken-text-zone h2,
.chicken-section-head h2 {
  max-width: 900px;
}

.chicken-text-zone p + p {
  margin-top: 18px;
}

.chicken-text-zone h2 + p,
.chicken-section-head h2 + p {
  margin-top: 26px;
}

.chicken-text-zone a,
.chicken-slot-card a,
.chicken-related-grid a {
  color: var(--gold);
  font-weight: 800;
}

.chicken-image-zone {
  position: relative;
  margin: 0;
  min-height: clamp(360px, 52vw, 620px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(360px 280px at 50% 24%, rgba(255, 122, 26, 0.24), transparent 62%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
  box-shadow: var(--shadow-soft);
}

.chicken-image-zone img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.chicken-mascot-zone {
  display: grid;
  place-items: end center;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.chicken-mascot-zone img {
  width: min(100%, 560px);
  height: auto;
  min-height: 0;
  object-fit: contain;
  align-self: end;
  filter: drop-shadow(0 32px 68px rgba(0, 0, 0, 0.66));
}

.chicken-image-zone figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(247, 247, 241, 0.74);
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(12px);
  font-size: 0.82rem;
  font-weight: 800;
}

.chicken-wide-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: clamp(20px, 3.5vw, 34px);
  border: 1px solid rgba(248, 215, 101, 0.28);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(248, 215, 101, 0.16), rgba(239, 63, 37, 0.1)),
    rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
}

.chicken-wide-cta span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chicken-wide-cta strong {
  color: var(--text);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.3rem, 2.4vw, 2.1rem);
  line-height: 1.12;
}

.chicken-section-head {
  max-width: 900px;
  margin-bottom: clamp(24px, 4vw, 46px);
}

.chicken-step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.chicken-step-card,
.chicken-large-card,
.chicken-mini-board article,
.chicken-small-slot-grid article {
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow-soft);
}

.chicken-step-card {
  min-height: 300px;
  padding: 24px;
  border-radius: var(--radius-md);
}

.chicken-step-card span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--gold);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(2.3rem, 4vw, 4.1rem);
  font-weight: 700;
  line-height: 1;
}

.chicken-step-card p {
  margin-top: 14px;
  line-height: 1.58;
}

.chicken-large-card {
  min-height: 560px;
  padding: clamp(26px, 4vw, 46px);
  border-radius: var(--radius-xl);
}

.chicken-large-card h2 {
  font-size: clamp(2.1rem, 4.4vw, 4.4rem);
}

.chicken-large-card p {
  margin-top: 20px;
}

.chicken-card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  object-fit: contain;
}

.promo-code-summary {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding: 20px;
  border: 1px dashed rgba(248, 215, 101, 0.4);
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.26);
}

.promo-code-summary span {
  color: var(--soft);
  font-size: 0.9rem;
  font-weight: 800;
}

.promo-code-summary strong {
  color: var(--gold);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0.08em;
  overflow-wrap: anywhere;
}

.chicken-claim-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  list-style: none;
  counter-reset: claim;
}

.chicken-claim-list li {
  position: relative;
  min-height: 62px;
  padding: 0 0 0 58px;
  color: var(--muted);
  line-height: 1.58;
  counter-increment: claim;
}

.chicken-claim-list li::before {
  content: counter(claim);
  position: absolute;
  left: 0;
  top: 2px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: #130a02;
  background: var(--gold);
  font-weight: 900;
}

.chicken-claim-list strong {
  color: var(--text);
}

.chicken-slot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.chicken-slot-card {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #15120f;
  box-shadow: var(--shadow-soft);
}

.chicken-slot-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.82));
  pointer-events: none;
}

.chicken-slot-card img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.chicken-slot-card > div {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 24px;
}

.chicken-slot-card h2 {
  font-size: clamp(2rem, 3.7vw, 3.6rem);
}

.chicken-slot-card p {
  margin-top: 14px;
}

.chicken-slot-card a {
  display: inline-flex;
  margin-top: 18px;
}

.chicken-mini-board {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.chicken-mini-board article {
  padding: 18px;
  border-radius: 22px;
}

.chicken-mini-board p {
  margin-top: 10px;
}

.multiplier-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  list-style: none;
}

.multiplier-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.multiplier-list span {
  color: var(--gold);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-weight: 700;
}

.multiplier-list small {
  color: var(--soft);
}

.chicken-small-slot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.chicken-small-slot-grid article {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.chicken-small-slot-grid img {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.06);
}

.chicken-small-slot-grid h2,
.chicken-small-slot-grid p {
  padding-inline: 20px;
}

.chicken-small-slot-grid h2 {
  padding-top: 22px;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.chicken-small-slot-grid p {
  padding-top: 12px;
  padding-bottom: 22px;
}

.review-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.review-metrics span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(247, 247, 241, 0.72);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.84rem;
  font-weight: 800;
}

.chicken-narrow {
  max-width: 920px;
}

.faq-section {
  display: grid;
  gap: 10px;
  margin-top: 32px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
}

.accordion-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  min-height: 72px;
  padding: 20px 22px;
  border: 0;
  color: var(--text);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 1.8vw, 1.22rem);
}

.accordion-button::after {
  content: "+";
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: #130a02;
  background: var(--gold);
}

.accordion-button[aria-expanded="true"]::after {
  content: "-";
}

.accordion-panel {
  padding: 0 22px 22px;
}

.link-list {
  display: grid;
  gap: 10px;
}

.chicken-related-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
}

.link-list a {
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  font-weight: 800;
}

.link-list a:hover {
  border-color: rgba(248, 215, 101, 0.34);
  background: rgba(248, 215, 101, 0.08);
}

.chicken-final-panel {
  display: grid;
  justify-items: center;
  text-align: center;
  padding: clamp(34px, 7vw, 76px);
  border: 1px solid rgba(248, 215, 101, 0.26);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(540px 260px at 50% 0%, rgba(248, 215, 101, 0.18), transparent 68%),
    rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
}

.chicken-final-panel p {
  max-width: 680px;
  margin-top: 20px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.site-footer {
  padding: 56px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #030303;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.footer-grid section {
  display: grid;
  gap: 10px;
}

.footer-grid h3 {
  margin-bottom: 6px;
  color: rgba(247, 247, 241, 0.9);
  font-size: 1rem;
}

.footer-grid a {
  color: var(--muted);
  font-weight: 700;
}

.footer-bottom {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-top: 42px;
  text-align: center;
}

.footer-bottom p {
  max-width: 760px;
  font-size: 0.92rem;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.badge {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: var(--soft);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 1040px) {
  .site-nav {
    justify-content: flex-end;
  }

  .site-nav a {
    padding-inline: 9px;
  }

  .chicken-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "copy"
      "promo";
  }

  .chicken-promo-panel {
    justify-self: stretch;
    width: 100%;
    margin-top: 26px;
  }

  .chicken-two-col,
  .chicken-card-pair,
  .chicken-community .chicken-two-col {
    grid-template-columns: 1fr;
  }

  .chicken-step-grid,
  .chicken-slot-grid,
  .chicken-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .chicken-wide-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 90px;
  }

  .chicken-landing {
    padding-top: 72px;
  }

  .header-inner {
    min-height: 72px;
  }

  .nav-toggle {
    display: inline-flex;
    order: 2;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 24px;
    background: rgba(5, 5, 5, 0.94);
    box-shadow: var(--shadow-soft);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    justify-content: flex-start;
    min-height: 44px;
    padding: 10px 12px;
  }

  .mobile-nav-cta,
  .site-nav .mobile-nav-cta {
    display: inline-flex;
    width: 100%;
    margin-top: 8px;
  }

  h1 {
    font-size: clamp(3rem, 12.5vw, 5.1rem);
  }

  .chicken-hero {
    min-height: auto;
  }

  .chicken-section {
    padding: 58px 0;
  }

  .chicken-small-slot-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  h1 {
    max-width: 8.4ch;
    font-size: clamp(2.7rem, 13vw, 3.55rem);
    line-height: 1.02;
  }

  h2,
  .chicken-large-card h2,
  .chicken-slot-card h2 {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 2.65rem);
    line-height: 1.04;
  }

  .chicken-promo-panel h2 {
    max-width: 100%;
    font-size: clamp(1.85rem, 8.4vw, 2.2rem);
    line-height: 1.06;
  }

  .chicken-kicker,
  .chicken-panel-label {
    font-size: 0.68rem;
    letter-spacing: 0.11em;
  }

  .chicken-hero {
    padding-top: 20px;
  }

  .breadcrumbs {
    margin-bottom: 26px;
  }

  .lead {
    margin-top: 20px;
    max-width: 28ch;
    font-size: 1.06rem;
    line-height: 1.5;
  }

  .chicken-hero-actions,
  .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    min-height: 50px;
    padding-inline: 16px;
  }

  .chicken-stat-row {
    gap: 8px;
    margin-top: 24px;
  }

  .chicken-stat-row span {
    min-height: 38px;
    padding: 7px 10px;
    font-size: 0.88rem;
  }

  .chicken-promo-panel,
  .chicken-large-card,
  .chicken-final-panel {
    border-radius: 28px;
  }

  .chicken-promo-panel p:not(.chicken-panel-label),
  .promo-unlock-card p {
    max-width: 27ch;
    font-size: 0.94rem;
    line-height: 1.56;
  }

  .chicken-promo-panel h2 span {
    display: block;
    margin-right: 0;
  }

  .chicken-promo-panel h2 span::after {
    content: "";
  }

  .nav-toggle {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.26);
  }

  .chicken-mascot-zone {
    min-height: 360px;
  }

  .chicken-mascot-zone img {
    width: min(100%, 360px);
  }

  .share-button-grid,
  .chicken-step-grid,
  .chicken-slot-grid,
  .chicken-related-grid {
    grid-template-columns: 1fr;
  }

  .share-button-grid .btn:first-child,
  .share-button-grid .btn:last-child {
    grid-column: auto;
  }

  .chicken-image-zone {
    min-height: 360px;
    border-radius: 30px;
  }

  .chicken-step-card {
    min-height: 240px;
  }

  .chicken-large-card {
    min-height: auto;
  }

  .chicken-slot-card,
  .chicken-slot-card img {
    min-height: 480px;
  }

  .accordion-button {
    min-height: 64px;
    padding: 18px;
  }

  .accordion-panel {
    padding-inline: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
