@font-face {
  font-family: "Monocraft";
  src: url("/fonts/Monocraft-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

html,
body {
  margin: 0;
  background: transparent;
  -webkit-user-select: none;
  user-select: none;
}

html {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.38);
}

.bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  background: #000;
}

.nav {
  position: fixed;
  z-index: 2;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 18px;
  width: max-content;
  max-width: calc(100% - 32px);
  padding: 12px 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  animation: nav-in 0.55s ease both;
}

.nav a {
  position: relative;
  color: #fff;
  font-family: "Monocraft", monospace;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  -webkit-font-smoothing: none;
}

h1:not(.logo),
.nav a:hover,
.nav a[aria-current="page"] {
  background-image: linear-gradient(
    90deg,
    #aa0000 0%,
    #aa0000 42%,
    #ffaaaa 50%,
    #aa0000 58%,
    #aa0000 100%
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: heart-slide 2.8s linear infinite;
}

h1 {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 0;
  font-family: "Monocraft", monospace;
  font-size: 64px;
  font-weight: 700;
  -webkit-font-smoothing: none;
}

.logo {
  font-size: 88px;
  line-height: 1;
  transform-origin: center;
  animation: heartbeat 1.25s ease-in-out infinite;
}

.face {
  position: relative;
  z-index: 1;
  color: #aa0000;
  -webkit-text-fill-color: #aa0000;
  text-shadow:
    1px 1px 0 #7a0000,
    2px 2px 0 #6e0000,
    3px 3px 0 #620000,
    4px 4px 0 #560000,
    5px 5px 0 #4a0000,
    6px 6px 0 #3e0000,
    7px 7px 0 #320000,
    8px 8px 0 #260000;
}

.rim {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  transform: scale(1.04);
  transform-origin: center;
  text-shadow: none;
  opacity: 0.45;
  background: conic-gradient(from var(--run), transparent 0 78%, #ffdddd 88%, #ffaaaa 93%, transparent 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: run-around 2.6s linear infinite;
  pointer-events: none;
}

@property --run {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@keyframes run-around {
  to {
    --run: 360deg;
  }
}

.nav a:hover,
.nav a[aria-current="page"] {
  animation-duration: 1.1s;
}

main,
.page {
  position: relative;
  z-index: 1;
  flex: 1 0 auto;
  animation: rise-in 0.7s ease 0.08s both;
}

body.home {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

body.home main {
  flex: 1;
  min-height: 0;
  height: auto;
  overflow: hidden;
}

.legal {
  position: relative;
  z-index: 1;
  margin: auto 0 16px;
  text-align: center;
  font-family: "Monocraft", monospace;
  font-size: 11px;
  -webkit-font-smoothing: none;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.38);
  pointer-events: none;
  animation: rise-in 0.7s ease 0.2s both;
}

@keyframes nav-in {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

body.home .legal {
  flex: none;
  margin: 0 0 12px;
}

.hero {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 88px 20px 24px;
  box-sizing: border-box;
}

body.discord .hero {
  padding-top: 24px;
}

.lede,
.card p,
.step p,
.faq p,
.rank li,
.note,
td,
th {
  font-family: "Segoe UI", sans-serif;
  color: #f3f3f3;
}

.tagline {
  margin: 18px 0 0;
  font-family: "Monocraft", monospace;
  font-size: 16px;
  color: #f3f3f3;
  -webkit-font-smoothing: none;
}

.ip {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 10px 12px 10px 16px;
  background: rgba(0, 0, 0, 0.62);
  border: 2px solid #aa0000;
}

.ip code {
  font-family: "Monocraft", monospace;
  font-size: 18px;
  color: #fff;
  -webkit-font-smoothing: none;
}

.copy-menu {
  position: relative;
}

.menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 3;
  display: grid;
  min-width: 190px;
  background: rgba(0, 0, 0, 0.92);
  border: 2px solid #aa0000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transform-origin: top right;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

.menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

#copy-ip {
  font-size: 14px;
  padding: 8px 12px;
  transition: transform 0.12s ease;
}

#copy-ip:active {
  transform: scale(0.94);
}

.menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: #fff;
  font-family: "Monocraft", monospace;
  font-size: 15px;
  padding: 8px 10px;
  text-align: left;
  cursor: pointer;
  -webkit-font-smoothing: none;
}

.menu button:hover {
  background: rgba(170, 0, 0, 0.45);
}

.block {
  width: 36px;
  height: 36px;
  flex: none;
  image-rendering: pixelated;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  box-shadow: 2px 2px 0 #000;
}

.block.grass {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' shape-rendering='crispEdges'%3E%3Cpath fill='%235d9a32' d='M0 0h16v4H0z'/%3E%3Cpath fill='%237cba3d' d='M0 0h16v1H0zM2 2h3v1H2zM8 1h4v1H8zM12 3h3v1h-3z'/%3E%3Cpath fill='%23488a28' d='M0 4h16v1H0z'/%3E%3Cpath fill='%238a5a32' d='M0 5h16v11H0z'/%3E%3Cpath fill='%236b4324' d='M1 6h2v2H1zM6 8h3v2H6zM11 6h2v3h-2zM3 11h2v2H3zM9 12h3v2H9zM13 10h2v3h-2z'/%3E%3Cpath fill='%23a56b3c' d='M4 7h2v1H4zM8 6h2v1H8zM2 13h2v1H2zM12 13h2v1h-2z'/%3E%3C/svg%3E");
}

.block.bedrock {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' shape-rendering='crispEdges'%3E%3Cpath fill='%23333333' d='M0 0h16v16H0z'/%3E%3Cpath fill='%23111111' d='M0 0h4v3H0zM7 1h3v2H7zM12 0h4v4h-4zM1 6h3v3H1zM6 5h4v4H6zM12 7h3v3h-3zM0 12h5v4H0zM8 11h3v4H8zM13 12h3v4h-3z'/%3E%3Cpath fill='%23555555' d='M4 0h2v2H4zM10 3h2v2h-2zM4 4h2v2H4zM10 6h2v2h-2zM2 10h2v2H2zM11 9h2v2h-2zM5 13h2v2H5zM12 14h2v2h-2z'/%3E%3C/svg%3E");
}

.ip button,
.btn {
  border: 2px solid #aa0000;
  background: #aa0000;
  color: #fff;
  font-family: "Monocraft", monospace;
  font-size: 14px;
  padding: 8px 12px;
  cursor: pointer;
  text-decoration: none;
  -webkit-font-smoothing: none;
}

.ip button:hover,
.btn:hover {
  background: #ff5555;
  border-color: #ff5555;
}

.meta {
  margin: 14px 0 0;
  font-family: "Monocraft", monospace;
  color: #ddd;
  font-size: 13px;
  -webkit-font-smoothing: none;
}

.section {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto 72px;
}

.section h2,
.page h1 {
  font-family: "Monocraft", monospace;
  text-align: center;
  -webkit-font-smoothing: none;
}

.section h2 {
  margin: 0 0 22px;
  color: #fff;
  font-size: 28px;
}

.grid,
.ranks,
.steps {
  display: grid;
  gap: 16px;
}

.grid {
  grid-template-columns: repeat(3, 1fr);
}

.ranks {
  grid-template-columns: repeat(3, 1fr);
}

body.store::after {
  background: rgba(0, 0, 0, 0.72);
}

body.store .page {
  width: min(1080px, calc(100% - 32px));
}

body.store h2 {
  margin: 8px 0 22px;
  font-family: "Monocraft", monospace;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  -webkit-font-smoothing: none;
}

body.store .ranks + h2 {
  margin-top: 56px;
}

body.store h2 + .shards {
  margin-top: 8px;
}

body.store .rank {
  gap: 0;
  padding: 22px 18px 16px;
  border-radius: 18px;
  background: rgba(18, 18, 20, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

body.store .rank h3 {
  margin: 0 0 16px;
  font-size: 22px;
  text-align: center;
  background-image: linear-gradient(90deg, #aa0000 0%, #aa0000 42%, #ffaaaa 50%, #aa0000 58%, #aa0000 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: heart-slide 2.8s linear infinite;
}

body.store .rank .plus {
  background-image: linear-gradient(90deg, #6e0000 0%, #6e0000 42%, #aa0000 50%, #6e0000 58%, #6e0000 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: heart-slide 2.8s linear infinite;
}

body.store .rank ul {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

body.store .rank li {
  padding: 10px 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #d7d7d7;
  font-family: "Segoe UI", sans-serif;
  font-size: 14px;
  text-align: center;
}

body.store .rank li::before {
  content: "• ";
  color: #9a9a9a;
}

.price-btn {
  display: block;
  margin-top: auto;
  padding: 10px 12px;
  border: 2px solid #aa0000;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-family: "Segoe UI", sans-serif;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.price-btn span {
  color: #9aa4b2;
  font-size: 13px;
  font-weight: 400;
}

.price-btn:hover {
  background: rgba(170, 0, 0, 0.55);
  border-color: #ff5555;
  box-shadow: 0 0 14px rgba(255, 85, 85, 0.55);
  animation: buy-pop 0.45s ease forwards;
}

.price-btn:active {
  transform: scale(0.96);
}

@keyframes buy-pop {
  0% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.06);
  }
  100% {
    transform: scale(1.03);
  }
}

.shards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.shard {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 16px 16px;
  border-radius: 18px;
  background: rgba(18, 18, 20, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.shard img {
  width: 168px;
  height: 168px;
  max-width: 100%;
  object-fit: contain;
  image-rendering: pixelated;
  filter: drop-shadow(0 0 0 rgba(160, 60, 220, 0));
  transition: filter 0.2s ease;
}

.shard img.wide,
.shard img.wide.tall {
  width: 230px;
  height: 230px;
  object-fit: contain;
  object-position: center;
}

.shard:hover img {
  animation: shard-glow 1.6s ease-in-out infinite;
}

@keyframes shard-glow {
  0%,
  100% {
    filter: drop-shadow(0 0 2px rgba(160, 60, 220, 0.25));
  }
  50% {
    filter: drop-shadow(0 0 6px rgba(176, 80, 235, 0.7));
  }
}

.shard-name {
  margin: 8px 0 14px;
  font-family: "Monocraft", monospace;
  font-size: 16px;
  color: #d070ff;
  text-align: center;
  -webkit-font-smoothing: none;
}

.shard-name s {
  margin-right: 6px;
  color: #8a8a8a;
  font-size: 12px;
}

.deal-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 8px;
  background: #aa0000;
  color: #fff;
  font-family: "Monocraft", monospace;
  font-size: 18px;
  line-height: 1;
  white-space: nowrap;
  -webkit-font-smoothing: none;
}

.bonus {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 3px 7px;
  border-radius: 6px;
  background: #1f8a32;
  color: #fff;
  font-family: "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.shard .price-btn,
.rank .price-btn {
  width: 100%;
  box-sizing: border-box;
}

button.price-btn {
  cursor: pointer;
  font-family: "Segoe UI", sans-serif;
}

button.price-btn:disabled {
  opacity: 0.55;
  cursor: default;
  animation: none;
}

.store-note {
  margin: 0 auto 18px;
  max-width: 640px;
  color: #fff;
  font-family: "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.45;
  text-align: center;
}

.store-message {
  margin: 0 auto;
  max-width: 640px;
  color: #fff;
  font-family: "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
}

.store-message a {
  color: #ffaaaa;
}

.player-menu {
  position: fixed;
  z-index: 3;
  top: 18px;
  right: 18px;
}

.player-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 8px;
  border-radius: 14px;
  background: rgba(18, 18, 20, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-family: "Segoe UI", sans-serif;
  font-size: 15px;
  cursor: pointer;
}

.player-drop {
  margin-top: 8px;
  padding: 6px;
  border-radius: 12px;
  background: rgba(18, 18, 20, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.player-drop[hidden] {
  display: none !important;
}

.player-drop.is-in {
  animation: drop-in 0.28s ease;
}

@keyframes drop-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.player-logout {
  display: block;
  width: 100%;
  padding: 8px 14px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font-family: "Segoe UI", sans-serif;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
}

.player-logout:hover {
  background: rgba(170, 0, 0, 0.55);
}

.player-chip img {
  width: 40px;
  height: 40px;
  image-rendering: pixelated;
  border-radius: 6px;
}

.name-modal {
  position: fixed;
  z-index: 4;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.55);
}

.name-modal[hidden] {
  display: none !important;
}

.name-modal.is-in {
  animation: modal-fade 0.28s ease;
}

.name-modal.is-in .name-dialog {
  animation: panel-in 0.4s ease;
}

@keyframes modal-fade {
  from {
    background: rgba(0, 0, 0, 0);
  }
  to {
    background: rgba(0, 0, 0, 0.55);
  }
}

.name-dialog {
  display: flex;
  flex-direction: column;
  width: min(420px, 100%);
  padding: 28px 24px 24px;
  border-radius: 18px;
  background: rgba(18, 18, 20, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.name-dialog h2 {
  margin: 0 0 18px;
  font-size: 22px;
  line-height: 1.35;
}

.name-input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin: 0 0 16px;
  padding: 12px 14px;
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-family: "Segoe UI", sans-serif;
  font-size: 16px;
}

.name-input:focus {
  outline: none;
  border-color: #aa0000;
}

.name-dialog .price-btn {
  width: 100%;
  margin-top: 36px;
  box-sizing: border-box;
}

.steps {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.rank,
.step,
.faq details,
.board {
  background: rgba(0, 0, 0, 0.62);
  border: 2px solid rgba(170, 0, 0, 0.85);
  padding: 18px;
}

.card h3,
.rank h3,
.step h3,
.faq summary {
  margin: 0 0 8px;
  font-family: "Monocraft", monospace;
  color: #fff;
  font-size: 16px;
  -webkit-font-smoothing: none;
}

.card p,
.step p,
.rank li,
.faq p {
  margin: 0;
  line-height: 1.45;
}

.rank {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rank .price {
  margin: 0;
  font-family: "Monocraft", monospace;
  color: #ffaaaa;
  font-size: 22px;
  -webkit-font-smoothing: none;
}

.rank ul {
  margin: 0;
  padding-left: 18px;
  flex: 1;
}

.rank .btn,
.discord-box .btn {
  align-self: flex-start;
}

.page {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 120px 0 80px;
}

.page h1 {
  margin: 0 0 12px;
}

.lede {
  margin: 0 auto 28px;
  max-width: 640px;
  text-align: center;
  line-height: 1.5;
}

.board {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  text-align: left;
  padding: 10px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

th {
  font-family: "Monocraft", monospace;
  color: #ffaaaa;
  font-weight: 700;
  -webkit-font-smoothing: none;
}

.note {
  margin: 14px 0 0;
  text-align: center;
}

.legal-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 18px;
  margin-bottom: 22px;
}

.legal-head h1 {
  margin: 0;
  text-align: left;
}

.legal-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.legal-tab {
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(18, 18, 20, 0.72);
  color: #fff;
  font-family: "Monocraft", monospace;
  font-size: 13px;
  line-height: 1.2;
  padding: 10px 14px;
  cursor: pointer;
  -webkit-font-smoothing: none;
}

.legal-tab[aria-selected="true"] {
  border-color: #aa0000;
  background: rgba(18, 18, 20, 0.92);
}

.legal-embed {
  min-height: 320px;
  max-height: min(640px, calc(100vh - 220px));
  overflow: auto;
  padding: 28px 32px;
  border-radius: 18px;
  background: rgba(18, 18, 20, 0.92);
  border: 2px solid rgba(170, 0, 0, 0.85);
  box-sizing: border-box;
}

.legal-panel h2 {
  margin: 0 0 14px;
  font-family: "Monocraft", monospace;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-align: left;
  -webkit-font-smoothing: none;
}

.legal-panel[hidden] {
  display: none !important;
}

.legal-panel.is-in {
  animation: panel-in 0.35s ease;
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.legal-embed:has(#support:not([hidden])) {
  display: flex;
}

#support {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

#support h2 {
  text-align: center;
}

.legal-panel h3 {
  margin: 22px 0 8px;
  font-family: "Monocraft", monospace;
  font-size: 16px;
  font-weight: 700;
  color: #ffaaaa;
  text-align: left;
  -webkit-font-smoothing: none;
}

.legal-panel p,
.legal-panel li {
  margin: 0 0 12px;
  font-family: "Segoe UI", sans-serif;
  color: #f3f3f3;
  line-height: 1.5;
}

.legal-panel ul,
.legal-panel ol {
  margin: 0 0 12px;
  padding-left: 22px;
}

.legal-panel li {
  margin: 0 0 8px;
}

.legal-index {
  columns: 2;
  column-gap: 28px;
}

.legal-panel table {
  width: 100%;
  margin: 0 0 16px;
  border-collapse: collapse;
}

.legal-panel th,
.legal-panel td {
  text-align: left;
  vertical-align: top;
  padding: 10px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.faq {
  display: grid;
  gap: 12px;
}

.faq summary {
  cursor: pointer;
}

.faq p {
  margin-top: 10px;
}

.discord-box {
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
}

@media (max-width: 800px) {
  h1,
  .logo {
    font-size: 48px;
  }

  .tagline {
    font-size: 18px;
  }

  .ip code {
    font-size: 20px;
  }

  .grid,
  .ranks,
  .steps,
  .shards {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav,
  main,
  .page,
  .legal,
  .legal-panel.is-in,
  .name-modal.is-in,
  .name-modal.is-in .name-dialog,
  .player-drop.is-in {
    animation: none;
  }
}

@keyframes heartbeat {
  0%,
  100% {
    transform: perspective(600px) rotateX(18deg) scale(1);
  }
  14% {
    transform: perspective(600px) rotateX(18deg) scale(1.03);
  }
  28% {
    transform: perspective(600px) rotateX(18deg) scale(1);
  }
  42% {
    transform: perspective(600px) rotateX(18deg) scale(1.05);
  }
  70% {
    transform: perspective(600px) rotateX(18deg) scale(1);
  }
}

@keyframes heart-slide {
  from {
    background-position: 100% 50%;
  }
  to {
    background-position: 0% 50%;
  }
}

