:root {
  --yellow: #ffde2e;
  --red: #ee1b2e;
  --blue: #2417d6;
  --cream: #fff8e6;
  --ink: #2b2118;
  --ink-soft: #7a6b57;
  --card: #ffffff;
  --shadow: 0 1px 2px rgba(60, 40, 10, 0.06), 0 18px 40px -12px rgba(60, 40, 10, 0.22);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  background: var(--cream);
  background-image: radial-gradient(circle at 12% 18%, rgba(255, 222, 46, 0.55), transparent 42%),
    radial-gradient(circle at 88% 82%, rgba(238, 27, 46, 0.12), transparent 45%);
  font-family: "Mulish", Arial, Helvetica, sans-serif;
  color: var(--ink);
  overflow-x: hidden;
}

.stars {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.star {
  position: absolute;
  fill: var(--blue);
  opacity: 0.16;
}

.star-1 { width: 46px; top: 10%; left: 9%; transform: rotate(-12deg); }
.star-2 { width: 30px; top: 78%; left: 14%; fill: var(--red); transform: rotate(18deg); }
.star-3 { width: 60px; top: 16%; right: 10%; fill: var(--red); transform: rotate(8deg); }
.star-4 { width: 34px; top: 74%; right: 13%; transform: rotate(-20deg); }

.card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  background: var(--card);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 76px 36px 32px;
  text-align: center;
}

.sticker {
  position: absolute;
  top: -56px;
  left: 50%;
  width: 132px;
  height: 132px;
  transform: translateX(-50%) rotate(-6deg);
  border-radius: 20px;
  border: 5px solid #fff;
  box-shadow: 0 10px 24px -8px rgba(60, 40, 10, 0.35);
  object-fit: cover;
}

h1 {
  font-family: "Baloo 2", "Mulish", sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: var(--red);
  margin: 4px 0 10px;
  text-wrap: balance;
}

.dek {
  margin: 0 0 26px;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 30ch;
  margin-left: auto;
  margin-right: auto;
}

.social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 4px 10px -4px rgba(60, 40, 10, 0.35);
}

.icon-btn svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

.icon-btn.x { background: #000000; }
.icon-btn.youtube { background: #ff0000; }
.icon-btn.facebook { background: #1877f2; }

.icon-btn:hover,
.icon-btn:focus-visible {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 18px -6px rgba(60, 40, 10, 0.4);
}

.icon-btn:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}

.footer {
  margin: 0;
  font-size: 12.5px;
  color: var(--ink-soft);
  border-top: 1px solid #f0e6d2;
  padding-top: 18px;
}

@media (prefers-reduced-motion: reduce) {
  .icon-btn { transition: none; }
}
