:root {
  --bg-1: #061023;
  --bg-2: #12315f;
  --card: rgba(6, 14, 30, 0.76);
  --ink: #f6f8ff;
  --muted: #c0c9df;
  --accent: #ffb703;
  --accent-2: #fb8500;
  --line: rgba(255, 255, 255, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--ink);
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 20%, rgba(251, 133, 0, 0.16), transparent 45%),
    radial-gradient(circle at 85% 10%, rgba(255, 183, 3, 0.2), transparent 40%),
    linear-gradient(130deg, var(--bg-1), var(--bg-2));
  overflow-x: hidden;
}

.bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.16;
  z-index: -3;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.04;
  z-index: -2;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.2) 0,
    rgba(255, 255, 255, 0.2) 1px,
    transparent 1px,
    transparent 6px
  );
}

.layout {
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: 48px 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.support-layout {
  grid-template-columns: 1fr;
  max-width: 780px;
}

.hero {
  animation: rise 900ms ease both;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 14px;
}

h1 {
  margin: 0;
  font-family: 'Abril Fatface', serif;
  font-size: clamp(40px, 6.8vw, 72px);
  line-height: 1.05;
}

h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.subtitle {
  color: var(--muted);
  max-width: 52ch;
  margin-top: 14px;
  margin-bottom: 12px;
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.5;
}

.icon-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.icon-note svg {
  width: 16px;
  height: 16px;
  fill: #ffcf70;
}

.card {
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.35);
  padding: 18px;
  margin-bottom: 14px;
}

.countdown {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #ffe1a7;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 183, 3, 0.65);
  padding: 11px 17px;
  text-decoration: none;
  color: #ffdd9b;
  font-weight: 700;
  background: linear-gradient(90deg, rgba(255, 183, 3, 0.25), rgba(251, 133, 0, 0.25));
  box-shadow: 0 0 0 rgba(255, 183, 3, 0.2);
  transition: transform 150ms ease;
}

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

.pill.ghost {
  border-color: rgba(129, 196, 255, 0.5);
  color: #d5ecff;
  background: rgba(85, 153, 255, 0.16);
}

.pill.moving {
  animation: drift 2.8s ease-in-out infinite;
}

.pill.radiant {
  border-color: rgba(255, 213, 138, 0.95);
  background: linear-gradient(90deg, rgba(255, 183, 3, 0.42), rgba(251, 133, 0, 0.45));
  box-shadow:
    0 0 14px rgba(255, 183, 3, 0.55),
    0 0 26px rgba(251, 133, 0, 0.35),
    inset 0 0 10px rgba(255, 255, 255, 0.15);
}

.pill.radiant:hover {
  transform: translateY(-2px) scale(1.04);
}

@keyframes drift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(6px, -3px); }
  50% { transform: translate(-2px, -6px); }
  75% { transform: translate(-7px, 2px); }
  100% { transform: translate(0, 0); }
}

.poll-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 10px;
}

.vote-btn {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--ink);
  padding: 10px;
  cursor: pointer;
  font-weight: 700;
}

.vote-btn:hover {
  border-color: rgba(255, 183, 3, 0.8);
  background: rgba(255, 183, 3, 0.18);
}

.status {
  min-height: 24px;
  color: var(--muted);
  margin: 12px 2px 0;
  font-size: 14px;
}

.results {
  display: grid;
  gap: 10px;
}

.result-top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  overflow: hidden;
}

.bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.quiz {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
}

.hidden {
  display: none;
}

.quiz-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quiz-btn {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
  padding: 8px 12px;
  cursor: pointer;
}

.tabs {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 14px;
}

.tab {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 700;
}

.tab.active {
  background: rgba(255, 183, 3, 0.18);
  color: #ffd58b;
}

.pay-form {
  display: none;
  gap: 10px;
}

.pay-form.active {
  display: grid;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

input[type='email'],
input[type='number'],
input[type='text'] {
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  padding: 11px 12px;
  outline: none;
}

input[type='email']:focus,
input[type='number']:focus,
input[type='text']:focus {
  border-color: var(--accent);
}

.action {
  border: 0;
  border-radius: 10px;
  padding: 12px;
  margin-top: 6px;
  cursor: pointer;
  font-weight: 700;
  color: #351800;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.stage-wrap {
  min-height: 620px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.1), transparent 50%),
    rgba(0, 0, 0, 0.25);
  animation: rise 900ms ease 120ms both;
  padding: 14px;
}

.penguin-stage {
  position: relative;
  width: 100%;
  min-height: 590px;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.28);
  border: 1px dashed rgba(255, 255, 255, 0.22);
}

#penguin-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: min(250px, 40vw);
  max-width: 260px;
  border-radius: 18px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.4);
  will-change: transform;
}

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

.simple-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
}

.simple-toggle {
  width: 100%;
  text-align: left;
  border: 0;
  border-radius: 8px;
  padding: 10px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
}

.simple-detail {
  margin-top: 8px;
  display: grid;
  gap: 8px;
}

.simple-detail p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  word-break: break-all;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .poll-buttons {
    grid-template-columns: 1fr;
  }

  .stage-wrap,
  .penguin-stage {
    min-height: 430px;
  }

  #penguin-photo {
    width: 46vw;
  }
}
