:root {
  --background: #0d1017;
  --foreground: #f7f4ec;
  --muted-foreground: #a9b0bd;
  --border: #2a3040;
  --primary: #edb63c;
  --primary-foreground: #2b2004;
  --destructive: #e01e28;
  --destructive-foreground: #fff;
}

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

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--background);
  color: var(--foreground);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px;
}

.thumb {
  position: relative;
  width: 100%;
  max-width: 448px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: none;
  cursor: pointer;
  display: block;
}

.thumb img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 30%;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 16, 23, 0.15) 0%, rgba(13, 16, 23, 0.65) 100%);
}

.badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72%;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px;
  border-radius: 6px;
  background: var(--destructive);
  color: var(--destructive-foreground);
  box-shadow: 0 0 40px rgba(237, 182, 60, 0.28);
}

.badge-text {
  font-size: 14px;
  font-weight: 700;
}

.icon {
  width: 36px;
  height: 36px;
  fill: currentColor;
}

.cta {
  margin-top: 20px;
  width: 100%;
  max-width: 448px;
  padding: 16px 24px;
  border: 0;
  border-radius: 10px;
  background: var(--primary);
  color: var(--primary-foreground);
  font: inherit;
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  animation: pulse-cta 2s ease-in-out infinite;
  transition: transform 0.2s ease;
}

.cta:hover {
  transform: scale(1.02);
}

@keyframes pulse-cta {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(237, 182, 60, 0.55);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(237, 182, 60, 0);
  }
}

.footer {
  border-top: 1px solid var(--border);
  padding: 24px 20px;
}

.footer-inner {
  max-width: 448px;
  margin: 0 auto;
  text-align: center;
  font-size: 11px;
  line-height: 1.6;
  color: var(--muted-foreground);
}

.footer-inner p + p {
  margin-top: 12px;
}

.footer-inner strong {
  color: var(--foreground);
}
