:root {
  --lime: #ccff00;
  --lime-deep: #a6cc00;
  --ink: #000000;
  --bg-1: #141414;
  --bg-2: #000000;
  --white: #f4f6ee;
  --radius: 18px;
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
  --shadow-sm: 0 6px 18px rgba(0, 0, 0, 0.5);
  --display: "Anton", "Arial Narrow", system-ui, sans-serif;
  --body: "Inter", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--white);
  background:
    radial-gradient(1000px 700px at 50% -10%, rgba(204, 255, 0, 0.18), transparent 60%),
    linear-gradient(160deg, var(--bg-1), var(--bg-2));
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

/* radiating sunburst behind everything */
body::before {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  width: 300vmax;
  height: 300vmax;
  transform: translate(-50%, -50%) rotate(0deg);
  transform-origin: center center;
  z-index: -2;
  background: repeating-conic-gradient(
    from 0deg at 50% 50%,
    rgba(204, 255, 0, 0.10) 0deg 8deg,
    rgba(204, 255, 0, 0) 8deg 16deg
  );
  animation: spin 90s linear infinite;
  pointer-events: none;
}
@keyframes spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* FLOATING CHICKENS */
.floating-chickens { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.fchicken {
  position: absolute;
  width: 90px; height: auto;
  opacity: 0.55;
  filter: drop-shadow(0 14px 20px rgba(120, 80, 0, 0.3));
  will-change: transform;
  cursor: pointer;
  pointer-events: auto;
}
.fchicken-1 { top: 14%; left: -140px; width: 100px; animation: drift-lr 28s linear infinite; }
.fchicken-2 { top: 66%; right: -140px; width: 120px; animation: drift-rl 34s linear infinite; animation-delay: -6s; }
.fchicken-3 { top: 40%; left: -140px; width: 75px;  opacity: 0.4; animation: drift-lr 42s linear infinite; animation-delay: -14s; }
.fchicken-4 { top: 82%; left: -140px; width: 90px;  animation: drift-lr 32s linear infinite; animation-delay: -22s; }
.fchicken-5 { top: 24%; right: -140px; width: 68px;  opacity: 0.38; animation: drift-rl 46s linear infinite; animation-delay: -30s; }

@keyframes drift-lr {
  0%   { transform: translateX(0) translateY(0) rotate(-6deg); }
  50%  { transform: translateX(60vw) translateY(-26px) rotate(8deg); }
  100% { transform: translateX(130vw) translateY(0) rotate(-6deg); }
}
@keyframes drift-rl {
  0%   { transform: translateX(0) translateY(0) rotate(6deg) scaleX(-1); }
  50%  { transform: translateX(-60vw) translateY(28px) rotate(-8deg) scaleX(-1); }
  100% { transform: translateX(-130vw) translateY(0) rotate(6deg) scaleX(-1); }
}

.fchicken.is-screaming { animation: squawk-float 0.4s ease-out; }
@keyframes squawk-float {
  0%   { transform: scale(1) rotate(0deg); }
  30%  { transform: scale(1.25, 0.78) rotate(-8deg); }
  60%  { transform: scale(0.82, 1.2) rotate(7deg); }
  100% { transform: scale(1) rotate(0deg); }
}

@media (prefers-reduced-motion: reduce) {
  .fchicken, body::before { animation: none; }
  .fchicken { display: none; }
}

h1, h2, h3, .brand-text, .tap-hint, .title, .counter-num {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

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

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 22px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid rgba(204, 255, 0, 0.35);
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { width: 34px; height: 34px; object-fit: contain; filter: drop-shadow(0 3px 4px rgba(0,0,0,0.55)); }
.brand-text { font-size: 28px; color: var(--lime); text-shadow: 2px 2px 0 rgba(0,0,0,0.6); }

.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-link {
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: 0.06em;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background .15s;
}
.nav-link { color: var(--white); }
.nav-link:hover { background: rgba(204, 255, 0, 0.15); color: var(--lime); }

/* social icons */
.social {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--lime);
  box-shadow: var(--shadow-sm);
  transition: transform .12s ease, background .2s;
}
.social:hover { transform: translateY(-2px) scale(1.05); background: #000; }

/* ARENA */
.arena {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 60px;
}
.tagline-top {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--lime);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.title {
  font-size: clamp(34px, 6vw, 68px);
  color: var(--lime);
  text-shadow: 3px 3px 0 rgba(0,0,0,0.75);
  line-height: 1.05;
  margin: 0 auto 10px;
}

/* CLICK COUNTER */
.counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin: 6px auto 4px;
}
.counter-num {
  font-size: clamp(44px, 8vw, 84px);
  line-height: 1;
  color: var(--lime);
  text-shadow: 3px 3px 0 #000, 0 0 22px rgba(204, 255, 0, 0.45);
  transition: transform .08s ease;
}
.counter-num.bump { transform: scale(1.14); }
.counter-label {
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.75;
}

/* CHICKEN STAGE */
.chicken-stage {
  position: relative;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
}
.chicken-glow {
  position: absolute;
  width: 120%; height: 120%;
  left: -10%; top: -6%;
  background: radial-gradient(circle at 50% 50%, rgba(204,255,0,0.55), rgba(204,255,0,0) 62%);
  filter: blur(30px);
  z-index: -1;
  animation: pulse-glow 4s ease-in-out infinite;
}
@keyframes pulse-glow { 0%,100% { opacity: .7; transform: scale(1);} 50% { opacity: 1; transform: scale(1.06);} }

.hero-chicken {
  display: block;
  width: clamp(290px, 52vw, 520px);
  height: auto;
  margin: 0 auto;
  cursor: pointer;
  filter: drop-shadow(0 26px 34px rgba(0, 0, 0, 0.45));
  animation: idle-bob 3.4s ease-in-out infinite;
  transform-origin: center center;
  will-change: transform;
}
@keyframes idle-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
.hero-chicken.is-screaming { animation: squawk 0.4s cubic-bezier(.36,.07,.19,.97); }
@keyframes squawk {
  0%   { transform: scale(1) rotate(-1deg); }
  15%  { transform: scale(1.22, 0.8) rotate(-6deg); }
  35%  { transform: scale(0.82, 1.2) rotate(6deg); }
  55%  { transform: scale(1.12, 0.9) rotate(-4deg); }
  75%  { transform: scale(0.96, 1.05) rotate(2deg); }
  100% { transform: scale(1) rotate(-1deg); }
}

.tap-hint {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--lime);
  font-size: 20px;
  padding: 8px 20px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  animation: hint-bounce 1.3s ease-in-out infinite;
  pointer-events: none;
  white-space: nowrap;
}
@keyframes hint-bounce { 0%,100% { transform: translateX(-50%) translateY(0);} 50% { transform: translateX(-50%) translateY(-6px);} }
.tap-hint.hidden { opacity: 0; transition: opacity .4s; }

/* ABOUT */
.about {
  position: relative;
  z-index: 2;
  background: #050505;
  color: var(--white);
  padding: 80px 20px 90px;
  border-top: 6px solid var(--lime);
}
.about-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.about h2 {
  font-size: clamp(38px, 6vw, 64px);
  color: var(--lime);
  text-shadow: 3px 3px 0 rgba(0,0,0,0.4);
  margin-bottom: 18px;
}
.about-lead {
  font-size: 18px;
  line-height: 1.7;
  color: #e8ecdd;
  max-width: 720px;
  margin: 0 auto 44px;
}
.about-lead strong { color: var(--lime); }

/* LORE (minimal) */
.lore { margin: 0 auto 44px; max-width: 760px; }
.lore-line {
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1.5;
  color: var(--white);
  margin: 0 auto 14px;
  font-weight: 600;
}
.lore-line:last-child { margin-bottom: 0; }
.lore-pop {
  color: var(--lime);
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.6), 0 0 18px rgba(204, 255, 0, 0.4);
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.about-card {
  background: #131313;
  border: 2px solid rgba(204, 255, 0, 0.22);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: transform .18s ease, border-color .2s;
}
.about-card:hover { transform: translateY(-5px); border-color: var(--lime); }
.about-card h3 { font-size: 24px; color: var(--lime); margin-bottom: 8px; }
.about-card p { font-size: 15px; color: #c9cdbe; line-height: 1.55; }

.disclaimer {
  max-width: 720px;
  margin: 0 auto;
  font-size: 13px;
  color: #7f8571;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 760px) {
  .nav { flex-wrap: wrap; gap: 10px; padding: 12px 16px; }
  .nav-right { gap: 10px; }
  .about-cards { grid-template-columns: 1fr; }
}
