:root {
  --bg: #0b0e12;
  --panel: #0f1720;
  --muted: #9aa6b2;
  --amber: #f2a900;
  --amber-2: #f5bf4a;
  --glass: rgba(255, 255, 255, 0.03);
  --radius: 14px;
  --maxw: 980px;
  --shadow: 0 10px 30px rgba(2, 6, 23, 0.6);
  --sans: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial;
}
html,
body {
  height: 100%;
  margin: 0;
  background: radial-gradient(
      1200px 600px at 10% 10%,
      rgba(242, 169, 0, 0.04),
      transparent 8%
    ),
    linear-gradient(180deg, var(--bg), #061017);
  color: #eaf2f8;
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
.wrap {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px;
  box-sizing: border-box;
}
.card {
  width: 100%;
  max-width: var(--maxw);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.01)
  );
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.03);
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 20px;
  align-items: center;
}
@media (max-width: 900px) {
  .card {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}
.logo {
  width: 76px;
  height: 76px;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--amber), var(--amber-2));
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 76px;
}
.logo svg {
  width: 40px;
  height: 40px;
  fill: #071218;
}
.title {
  font-size: 20px;
  font-weight: 800;
}
.headline {
  font-size: 28px;
  margin: 8px 0 8px 0;
  color: #fff;
  line-height: 1.02;
}
.blurb {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 18px;
  max-width: 60ch;
}
.photo {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  margin-bottom: 12px;
}
.cta-panel {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.012),
    rgba(255, 255, 255, 0.008)
  );
  padding: 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.02);
}
.gofundme {
  display: block;
  width: 100%;
  text-decoration: none;
  padding: 14px 16px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--amber), var(--amber-2));
  color: #071218;
  font-weight: 800;
  text-align: center;
  font-size: 15px;
  box-shadow: 0 8px 30px rgba(242, 169, 0, 0.12);
}
.meta {
  color: var(--muted);
  font-size: 13px;
  margin-top: 8px;
}
.local-box {
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.02);
  padding: 12px;
  border-radius: 10px;
  text-align: center;
}
.timer {
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  margin: 6px 0;
  display: inline-block;
  min-width: 28px;
  text-align: center;
}
.local-btn {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 10px;
  background: linear-gradient(90deg, #06b6d4, #10b981);
  color: #042024;
  text-decoration: none;
  font-weight: 800;
  margin-top: 8px;
  border: none;
  cursor: pointer;
  font-size: 14px;
}
.local-btn[disabled],
.local-btn.disabled {
  opacity: 0.45;
  cursor: not-allowed;
  background: linear-gradient(
    90deg,
    rgba(6, 182, 212, 0.12),
    rgba(16, 185, 129, 0.12)
  );
  color: var(--muted);
}
.status {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}
footer {
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}
#main-photo {
  background-image: url('https://d2g8igdw686xgo.cloudfront.net/97017023_1763857619818541_r.png');
}