:root {
  --bg: #070a13;
  --surface: #0f1527;
  --surface-soft: #111a31;
  --text: #f3f5ff;
  --muted: #a9b2cf;
  --line: #263052;
  --accent: #9d87ff;
  --accent-2: #20d8d2;
  --accent-text: #05070f;
  --ok: #61d69a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.45;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 16%, rgba(157, 135, 255, 0.28), transparent 38%),
    radial-gradient(circle at 22% 82%, rgba(32, 216, 210, 0.12), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(
    90deg,
    transparent 0,
    transparent calc(50% - 0.5px),
    rgba(157, 135, 255, 0.08) calc(50% - 0.5px),
    rgba(157, 135, 255, 0.08) calc(50% + 0.5px),
    transparent calc(50% + 0.5px),
    transparent 100%
  );
  opacity: 0.35;
  z-index: -1;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.container {
  width: min(1080px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(157, 135, 255, 0.16);
  background:
    linear-gradient(90deg, rgba(9, 13, 25, 0.9), rgba(14, 20, 38, 0.84)),
    rgba(10, 14, 26, 0.72);
  backdrop-filter: blur(10px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}

.logo {
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
  letter-spacing: 0.4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.logo::before {
  content: "✦";
  font-size: 14px;
  color: var(--accent-2);
  text-shadow: 0 0 12px rgba(32, 216, 210, 0.5);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nav a {
  padding: 8px 14px;
  border: 1px solid rgba(157, 135, 255, 0.3);
  border-radius: 999px;
  color: var(--text);
  background: linear-gradient(180deg, rgba(21, 31, 57, 0.78), rgba(13, 20, 38, 0.86));
  font-size: 13px;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nav a:hover {
  border-color: rgba(32, 216, 210, 0.65);
  background: rgba(17, 26, 49, 0.92);
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(6, 11, 24, 0.36);
}

.page {
  padding: 28px 0 40px;
}

.block {
  background: linear-gradient(180deg, rgba(17, 26, 49, 0.92), rgba(12, 19, 35, 0.96));
  border: 1px solid rgba(157, 135, 255, 0.2);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 16px;
  position: relative;
}

.block::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.block h1,
.block h2,
.block h3 {
  margin: 0 0 10px;
  letter-spacing: 0.2px;
}

.block p {
  margin: 0 0 10px;
  color: var(--muted);
}

.grid-2 {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  border: 1px solid rgba(32, 216, 210, 0.24);
  border-radius: 14px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(19, 30, 56, 0.8), rgba(14, 23, 43, 0.92));
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.card:hover {
  border-color: rgba(157, 135, 255, 0.7);
  transform: translateY(-2px);
}

.card p {
  margin: 4px 0 0;
}

.btn {
  display: inline-block;
  border: 1px solid transparent;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: var(--accent-text);
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.btn--ghost {
  background: rgba(16, 25, 46, 0.65);
  color: var(--accent-2);
  border-color: rgba(32, 216, 210, 0.45);
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.list li {
  margin: 5px 0;
}

.form {
  display: grid;
  gap: 10px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(157, 135, 255, 0.26);
  border-radius: 12px;
  padding: 10px;
  background: rgba(10, 16, 31, 0.8);
  color: var(--text);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(32, 216, 210, 0.75);
}

.note {
  font-size: 13px;
  color: var(--muted);
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
}

.ok {
  color: var(--ok);
}

.site-footer {
  border-top: 1px solid rgba(157, 135, 255, 0.2);
  padding: 18px 0 26px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 880px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.hero {
  padding: 36px 16px;
}

.landing-page {
  background: #0a1330;
}

.landing-page .container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 1%;
}

.landing-page .site-header__inner {
  padding: 14px 1%;
}

.landing-page .page {
  padding: 0 0 34px;
}

.landing-page::before {
  background:
    linear-gradient(180deg, rgba(10, 19, 48, 0.98), rgba(8, 15, 38, 0.98)),
    radial-gradient(circle at 14% 42%, rgba(255, 255, 255, 0.12) 0 1px, transparent 2px),
    radial-gradient(circle at 36% 64%, rgba(255, 255, 255, 0.1) 0 1px, transparent 2px),
    radial-gradient(circle at 58% 36%, rgba(255, 255, 255, 0.09) 0 1px, transparent 2px),
    radial-gradient(circle at 76% 52%, rgba(255, 255, 255, 0.1) 0 1px, transparent 2px),
    radial-gradient(circle at 90% 70%, rgba(255, 255, 255, 0.08) 0 1px, transparent 2px);
  animation: sparkleDrift 14s linear infinite;
}

.landing-page .block {
  margin-bottom: 12px;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  animation: landingReveal 0.8s ease both;
}

.landing-page #hero {
  animation-delay: 0.05s;
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
}

.landing-page #hero .hero-layout {
  width: 100%;
}

.landing-page #category-strip {
  animation-delay: 0.15s;
}

.landing-page #popular-spreads {
  animation-delay: 0.25s;
}

.landing-page #how-it-works {
  animation-delay: 0.35s;
}

@keyframes landingReveal {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sparkleDrift {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: center;
}

.kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.04;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero h1 .glow {
  color: var(--accent);
  text-shadow: 0 0 18px rgba(157, 135, 255, 0.5);
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.hero-actions .btn {
  padding: 16px 34px;
  font-size: 24px;
  line-height: 1;
}

.showcase-card {
  border: 1px solid rgba(157, 135, 255, 0.3);
  border-radius: 18px;
  padding: 12px;
  background: linear-gradient(180deg, rgba(15, 22, 40, 0.88), rgba(10, 15, 29, 0.95));
}

.showcase-image {
  width: 100%;
  height: 372px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 72% 18%, rgba(157, 135, 255, 0.68), transparent 40%),
    radial-gradient(circle at 32% 78%, rgba(32, 216, 210, 0.36), transparent 43%),
    linear-gradient(180deg, #141d34, #0b1222);
  position: relative;
  overflow: hidden;
  filter: saturate(1.18) brightness(1.1);
}

.showcase-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, transparent 0, transparent 49.5%, rgba(157, 135, 255, 0.08) 50%, transparent 50.5%, transparent 100%),
    linear-gradient(0deg, transparent 0, transparent 68%, rgba(32, 216, 210, 0.08) 69%, transparent 70%, transparent 100%);
  opacity: 0.9;
}

.showcase-image::after {
  content: "";
  position: absolute;
  inset: -30% -20% auto -20%;
  height: 56%;
  background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, 0.16) 48%, transparent 78%);
  transform: rotate(-8deg);
  animation: shineSweep 7s ease-in-out infinite;
  pointer-events: none;
}

.showcase-card--generated {
  box-shadow: 0 0 0 1px rgba(157, 135, 255, 0.1), 0 22px 38px rgba(3, 7, 18, 0.5);
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
}

.orb--a {
  width: 180px;
  height: 180px;
  right: 4%;
  top: 8%;
  background: radial-gradient(circle, rgba(157, 135, 255, 0.55), rgba(157, 135, 255, 0.1));
  animation: orbMoveA 7s ease-in-out infinite;
}

.orb--b {
  width: 120px;
  height: 120px;
  left: 10%;
  bottom: 6%;
  background: radial-gradient(circle, rgba(32, 216, 210, 0.42), rgba(32, 216, 210, 0.05));
  animation: orbMoveB 8s ease-in-out infinite;
}

.showcard {
  position: absolute;
  width: 156px;
  height: 240px;
  border-radius: 14px;
  border: 1px solid rgba(157, 135, 255, 0.44);
  background:
    linear-gradient(145deg, rgba(157, 135, 255, 0.34), rgba(32, 216, 210, 0.2)),
    linear-gradient(180deg, rgba(14, 23, 43, 0.95), rgba(8, 14, 28, 0.98));
  box-shadow: 0 20px 34px rgba(7, 13, 28, 0.58), 0 0 28px rgba(157, 135, 255, 0.22);
}

.showcard::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.showcard::after {
  content: "ARCANA";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 2.2px;
  color: rgba(227, 235, 255, 0.82);
  text-shadow: 0 0 14px rgba(157, 135, 255, 0.45);
}

.showcard--one::after {
  content: "ЛУНА";
}

.showcard--two::after {
  content: "ЗВЕЗДА";
}

.showcard--three::after {
  content: "СОЛНЦЕ";
}

.showcard--one {
  left: 9%;
  top: 23%;
  transform: rotate(-18deg);
  animation: floatA 4.8s ease-in-out infinite;
}

.showcard--two {
  left: 35%;
  top: 10%;
  z-index: 2;
  transform: rotate(-1deg);
  animation: floatB 5.4s ease-in-out infinite;
}

.showcard--three {
  right: 10%;
  top: 24%;
  transform: rotate(16deg);
  animation: floatC 5s ease-in-out infinite;
}

@keyframes floatA {
  0%, 100% { transform: rotate(-18deg) translateY(0); }
  50% { transform: rotate(-14deg) translateY(-14px); }
}

@keyframes floatB {
  0%, 100% { transform: rotate(-1deg) translateY(0); }
  50% { transform: rotate(2deg) translateY(-17px); }
}

@keyframes floatC {
  0%, 100% { transform: rotate(16deg) translateY(0); }
  50% { transform: rotate(11deg) translateY(-13px); }
}

@keyframes shineSweep {
  0%, 100% {
    transform: translateX(-40%) rotate(-8deg);
    opacity: 0;
  }
  35% {
    opacity: 0.7;
  }
  55% {
    transform: translateX(65%) rotate(-8deg);
    opacity: 0;
  }
}

@keyframes orbMoveA {
  0%, 100% { transform: translate(0, 0); opacity: 0.9; }
  50% { transform: translate(-14px, 10px); opacity: 1; }
}

@keyframes orbMoveB {
  0%, 100% { transform: translate(0, 0); opacity: 0.75; }
  50% { transform: translate(12px, -8px); opacity: 1; }
}

.tarot-stack {
  position: absolute;
  width: 140px;
  height: 220px;
  border-radius: 12px;
  border: 1px solid rgba(157, 135, 255, 0.45);
  background:
    linear-gradient(145deg, rgba(157, 135, 255, 0.45), rgba(32, 216, 210, 0.25)),
    rgba(10, 15, 28, 0.85);
}

.tarot-stack::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.tarot-stack::after {
  content: "";
  position: absolute;
  inset: 35% 18%;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.tarot-stack--a {
  transform: rotate(-12deg) translateX(-66px) translateY(10px);
}

.tarot-stack--b {
  z-index: 2;
  transform: translateY(-6px);
}

.tarot-stack--c {
  transform: rotate(11deg) translateX(66px) translateY(12px);
}

.showcase-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
}

.showcase-meta strong {
  color: var(--text);
}

.chip-strip {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  padding-bottom: 2px;
}

.chip {
  white-space: nowrap;
  text-align: center;
  border: 1px solid rgba(32, 216, 210, 0.32);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 13px;
  color: var(--text);
  background: rgba(15, 22, 40, 0.8);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.chip:hover {
  transform: translateY(-2px);
  border-color: rgba(157, 135, 255, 0.68);
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.section-title h2 {
  margin: 0;
  text-transform: uppercase;
  font-size: 30px;
}

.auction-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.auction-card {
  border: 1px solid rgba(157, 135, 255, 0.32);
  border-radius: 16px;
  padding: 12px;
  background: linear-gradient(180deg, rgba(21, 33, 62, 0.74), rgba(11, 18, 33, 0.95));
  animation: cardPulse 4.2s ease-in-out infinite;
  overflow: hidden;
  position: relative;
}

.auction-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 22%, rgba(255, 255, 255, 0.26) 0 1px, transparent 2px),
    radial-gradient(circle at 78% 34%, rgba(157, 135, 255, 0.28) 0 1px, transparent 2px),
    radial-gradient(circle at 44% 68%, rgba(32, 216, 210, 0.26) 0 1px, transparent 2px),
    radial-gradient(circle at 64% 18%, rgba(255, 255, 255, 0.2) 0 1px, transparent 2px),
    radial-gradient(circle at 22% 80%, rgba(157, 135, 255, 0.2) 0 1px, transparent 2px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
  animation: starTwinkle 4.6s ease-in-out infinite;
}

.auction-card::after {
  content: "";
  position: absolute;
  inset: -30% -40%;
  background: conic-gradient(
    from 180deg at 50% 50%,
    transparent 0deg,
    rgba(157, 135, 255, 0.18) 80deg,
    rgba(32, 216, 210, 0.14) 160deg,
    transparent 260deg
  );
  filter: blur(24px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
  animation: auraRotate 11s linear infinite;
}

.auction-card:nth-child(2) {
  animation-delay: 0.6s;
}

.auction-card:nth-child(3) {
  animation-delay: 1.1s;
}

.auction-card > * {
  position: relative;
  z-index: 1;
}

@keyframes cardPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(157, 135, 255, 0.05);
  }
  50% {
    box-shadow: 0 0 26px 0 rgba(32, 216, 210, 0.13);
  }
}

@keyframes starTwinkle {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.72; }
}

@keyframes auraRotate {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.06); }
  100% { transform: rotate(360deg) scale(1); }
}

.auction-img {
  width: 100%;
  height: 210px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(157, 135, 255, 0.28);
}

.auction-art {
  width: 100%;
  height: 210px;
  border-radius: 12px;
  display: block;
  border: 1px solid rgba(157, 135, 255, 0.28);
  background:
    radial-gradient(circle at 72% 24%, rgba(157, 135, 255, 0.5), transparent 45%),
    linear-gradient(180deg, #1a2544, #0c1326);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.auction-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(130deg, rgba(255, 255, 255, 0.06), transparent 46%),
    repeating-linear-gradient(
      90deg,
      rgba(32, 216, 210, 0.04) 0,
      rgba(32, 216, 210, 0.04) 1px,
      transparent 1px,
      transparent 40px
    );
  animation: artDrift 8s ease-in-out infinite;
  z-index: 1;
}

.auction-art::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 190px;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%) rotate(-6deg);
  border-radius: 12px;
  border: 1px solid rgba(226, 236, 255, 0.26);
  background:
    radial-gradient(circle at 48% 30%, rgba(157, 135, 255, 0.3), transparent 50%),
    linear-gradient(180deg, rgba(20, 33, 63, 0.88), rgba(9, 15, 30, 0.95));
  box-shadow: 0 14px 24px rgba(5, 10, 22, 0.45);
  z-index: 2;
  animation: cardFloatOne 5.4s ease-in-out infinite;
}

.auction-art--one {
  background:
    radial-gradient(circle at 30% 30%, rgba(32, 216, 210, 0.35), transparent 40%),
    radial-gradient(circle at 76% 70%, rgba(157, 135, 255, 0.38), transparent 43%),
    linear-gradient(180deg, #16233f, #0d152b);
  position: relative;
}

.auction-art--one::after {
  content: "";
  width: 120px;
  height: 176px;
  left: 31%;
  top: 57%;
  transform: translate(-50%, -50%) rotate(-16deg);
  border-radius: 11px;
  border: 1px solid rgba(228, 236, 255, 0.28);
  background:
    radial-gradient(circle at 35% 28%, rgba(32, 216, 210, 0.35), transparent 52%),
    linear-gradient(180deg, rgba(20, 34, 61, 0.86), rgba(8, 13, 27, 0.96));
  box-shadow:
    0 14px 22px rgba(7, 12, 26, 0.4),
    124px 10px 0 -6px rgba(13, 22, 43, 0.82),
    124px 10px 0 -5px rgba(225, 236, 255, 0.2);
  animation: cardFloatPair 6.2s ease-in-out infinite;
}

.auction-art--two {
  background:
    linear-gradient(130deg, rgba(157, 135, 255, 0.4), transparent 52%),
    radial-gradient(circle at 76% 26%, rgba(32, 216, 210, 0.25), transparent 46%),
    linear-gradient(180deg, #172443, #0b1325);
  position: relative;
}

.auction-art--two::after {
  content: "";
  width: 92px;
  height: 144px;
  left: 50%;
  top: 56%;
  transform: translate(-50%, -50%) rotate(-8deg);
  border-radius: 10px;
  border: 1px solid rgba(223, 234, 255, 0.26);
  background:
    radial-gradient(circle at 58% 36%, rgba(157, 135, 255, 0.38), transparent 50%),
    linear-gradient(180deg, rgba(21, 35, 66, 0.84), rgba(8, 13, 28, 0.96));
  box-shadow: 0 14px 24px rgba(8, 13, 28, 0.45);
  animation: cardSpinPulse 6.4s ease-in-out infinite;
}

.auction-art--three {
  background:
    radial-gradient(circle at 60% 35%, rgba(157, 135, 255, 0.45), transparent 48%),
    radial-gradient(circle at 35% 70%, rgba(32, 216, 210, 0.22), transparent 40%),
    linear-gradient(180deg, #13203c, #0c1326);
  position: relative;
}

.auction-art--three::after {
  content: "";
  width: 136px;
  height: 192px;
  left: 52%;
  top: 53%;
  transform: translate(-50%, -50%) rotate(10deg);
  border-radius: 12px;
  border: 1px solid rgba(228, 236, 255, 0.3);
  background:
    radial-gradient(circle at 52% 26%, rgba(157, 135, 255, 0.42), transparent 50%),
    radial-gradient(circle at 30% 78%, rgba(32, 216, 210, 0.24), transparent 52%),
    linear-gradient(180deg, rgba(20, 32, 58, 0.85), rgba(8, 12, 24, 0.97));
  box-shadow: 0 18px 28px rgba(6, 11, 24, 0.52);
  animation: cardFloatTwo 5.8s ease-in-out infinite;
}

@keyframes artDrift {
  0%, 100% { transform: translateX(0); opacity: 0.9; }
  50% { transform: translateX(10px); opacity: 1; }
}

@keyframes cardFloatOne {
  0%, 100% { transform: translate(-50%, -50%) rotate(-6deg) translateY(0); }
  50% { transform: translate(-50%, -50%) rotate(-3deg) translateY(-10px); }
}

@keyframes cardFloatPair {
  0%, 100% { transform: translate(-50%, -50%) rotate(-16deg) translateY(0); }
  50% { transform: translate(-50%, -50%) rotate(-12deg) translateY(-12px); }
}

@keyframes cardSpinPulse {
  0%, 100% { transform: translate(-50%, -50%) rotate(-8deg) scale(1); }
  50% { transform: translate(-50%, -50%) rotate(-2deg) scale(1.03); }
}

@keyframes cardFloatTwo {
  0%, 100% { transform: translate(-50%, -50%) rotate(10deg) translateY(0); }
  50% { transform: translate(-50%, -50%) rotate(6deg) translateY(-12px); }
}

.auction-img {
  display: none;
}

.auction-card h3 {
  margin: 10px 0 4px;
}

.auction-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
}

.auction-row strong {
  color: var(--text);
}

@media (max-width: 980px) {
  .chip-strip {
    display: flex;
    overflow-x: auto;
  }
  .hero-actions .btn {
    padding: 14px 28px;
    font-size: 20px;
  }
  .landing-page #hero {
    min-height: calc(100vh - 58px);
    align-items: flex-start;
  }
  .hero-layout {
    grid-template-columns: 1fr;
  }
  .showcase-image {
    height: 250px;
  }
  .auction-grid {
    grid-template-columns: 1fr;
  }
}

.deck-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.deck-card {
  height: 140px;
  border-radius: 12px;
  border: 1px solid rgba(157, 135, 255, 0.45);
  background:
    radial-gradient(circle at 70% 20%, rgba(157, 135, 255, 0.4), transparent 45%),
    linear-gradient(180deg, #182544, #0a1224);
  color: var(--text);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.6px;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.deck-card:hover {
  transform: translateY(-2px);
  border-color: rgba(32, 216, 210, 0.75);
}

.deck-card:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.drawn-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.drawn-slot {
  border: 1px solid rgba(32, 216, 210, 0.35);
  border-radius: 14px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(18, 28, 54, 0.85), rgba(12, 19, 37, 0.95));
  min-height: 190px;
}

.drawn-slot h3 {
  margin: 0 0 8px;
}

.drawn-card-name {
  font-weight: 700;
  color: var(--accent-2);
  margin: 0 0 8px;
}

.drawn-card-text {
  color: var(--muted);
  margin: 0;
}

.drawn-card-locked {
  margin-top: 8px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgba(157, 135, 255, 0.25);
  background: rgba(11, 17, 32, 0.75);
  color: rgba(230, 234, 247, 0.75);
  filter: blur(3px);
  user-select: none;
}

.deck-area {
  display: grid;
  gap: 12px;
}

.deck-fan {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.deck-back {
  width: 82px;
  height: 126px;
  border-radius: 10px;
  border: 1px solid rgba(157, 135, 255, 0.48);
  background:
    radial-gradient(circle at 50% 26%, rgba(32, 216, 210, 0.22), transparent 38%),
    linear-gradient(180deg, #17274a, #0c152c);
  position: relative;
}

.deck-back::before,
.deck-back::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.deck-back::after {
  inset: 30% 28%;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.deck-controls {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.paywall-box {
  border: 1px solid rgba(157, 135, 255, 0.28);
  border-radius: 14px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(16, 26, 49, 0.8), rgba(11, 17, 33, 0.94));
}

.paywall-blur {
  margin-top: 10px;
  border: 1px solid rgba(32, 216, 210, 0.26);
  border-radius: 10px;
  padding: 12px;
  color: rgba(233, 238, 252, 0.72);
  filter: blur(3.8px);
  user-select: none;
}

@media (max-width: 980px) {
  .deck-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .drawn-grid {
    grid-template-columns: 1fr;
  }
}
