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

body {
  background: #f6f7f8;
  color: #111;
  font-family: "Roboto", sans-serif;
}

/* ================= HEADER ================= */
header {
  max-width: 1200px;
  margin: 24px auto 0;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 30px;
}

header img {
  width: 44px;
  height: 44px;
}

header ul {
  list-style: none;
  display: flex;
  gap: 32px;
}

header a {
  text-decoration: none;
  color: #111;
  font-size: 14px;
  font-weight: 500;
}

.mainbutton button {
  background: #eaff3a;
  border: none;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

/* ================= TICKER ================= */
.ticker {
  max-width: 1200px;
  margin: 14px auto 0;
  background: #b6cd06;
  border-radius: 30px;
  overflow: hidden;
}

.ticker-track {
  display: inline-flex;
  white-space: nowrap;
  animation: ticker 22s linear infinite;
}

.ticker-track span {
  padding: 12px 32px;
  font-size: 13px;
  font-weight: 700;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ================= HERO ================= */
.main {
  text-align: center;
  margin-top: 64px;
  padding: 0 20px;
}

.main p:first-child {
  display: inline-block;
  background: #f1ff96;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 18px;
}

.main h1 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 12px;
}

.main p {
  max-width: 520px;
  margin: 0 auto;
  color: #666;
  line-height: 1.6;
}

/* ================= CLAIM SECTION ================= */
.claim-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 56px 0 96px;
  padding: 0 20px;
}

/* Background images */
.bg-image {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 240px;
  max-width: 35vw;
  z-index: 1;
  pointer-events: none;
}

.bg-image.left {
  left: 70%;
  height: 700px;
  width: auto;
  transform: translate(-140%, -50%);
}

.bg-image.right {
  left: 35%;
  height: 600px;
  width: auto;
  transform: translate(40%, -50%);
}

/* ================= CARD ================= */
.claim-card {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.card-header {
  background: #ef2b2b;
  color: #fff;
  padding: 14px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}

.card-body {
  padding: 22px;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.stat {
  background: #f4f4f4;
  border-radius: 14px;
  padding: 14px;
}

.label {
  font-size: 12px;
  color: #777;
}

.value {
  font-size: 18px;
  font-weight: 800;
}

.change {
  font-size: 12px;
  color: #22c55e;
}

/* Progress */
.progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin: 18px 0 6px;
  color: #666;
}

.progress-bar {
  height: 8px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar span {
  display: block;
  width: 100%;
  height: 100%;
  background: #8df000;
}

/* Buttons */
.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 22px 0;
}

.claim-btn {
  padding: 14px;
  background: #ecff74;
  border: none;
  border-radius: 14px;
  font-weight: 800;
  cursor: pointer;
}

/* Audit */
.audit {
  display: flex;
  gap: 8px;
  font-size: 13px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.shield {
  color: #22c55e;
}

.pill {
  background: #f1f5f9;
  padding: 4px 10px;
  border-radius: 999px;
}

/* Link */
.contract-link {
  display: block;
  text-align: center;
  font-size: 13px;
  color: #6b7280;
  text-decoration: none;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .bg-image {
    width: 190px;
    opacity: 0.75;
  }

  .bg-image.left {
    transform: translate(-130%, -50%);
  }

  .bg-image.right {
    transform: translate(30%, -50%);
  }
}

@media (max-width: 768px) {
  header ul {
    display: none;
  }

  .bg-image {
    display: none;
  }

  .claim-wrapper {
    margin: 40px 0 72px;
  }

  .two {
    grid-template-columns: 1fr;
  }
}
