:root {
  --bg: #050411;
  --panel: rgba(18, 13, 35, 0.82);
  --panel-soft: rgba(28, 20, 48, 0.62);
  --gold: #f1d59b;
  --gold-deep: #b98b55;
  --text: #f6e6c8;
  --muted: #a79a90;
  --line: rgba(241, 213, 155, 0.42);
  --glow: rgba(226, 171, 91, 0.44);
  --purple: #3c225f;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Songti SC", "STSong", "SimSun", "Microsoft YaHei", serif;
  background:
    radial-gradient(circle at 50% 72%, rgba(91, 45, 141, 0.36), transparent 30%),
    radial-gradient(circle at 10% 20%, rgba(143, 105, 54, 0.12), transparent 22%),
    linear-gradient(180deg, #06030f 0%, #090719 48%, #050411 100%);
}

button,
textarea {
  font: inherit;
}

button {
  -webkit-tap-highlight-color: transparent;
}

#starfield,
.aurora {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

#starfield {
  z-index: 0;
}

.aurora {
  z-index: 1;
  opacity: 0.72;
  background:
    linear-gradient(118deg, transparent 0 24%, rgba(243, 213, 153, 0.08) 25%, transparent 27% 100%),
    linear-gradient(138deg, transparent 0 68%, rgba(243, 213, 153, 0.07) 69%, transparent 71% 100%);
  mask-image: radial-gradient(circle at 50% 45%, #000 0 60%, transparent 82%);
}

.app-shell {
  position: relative;
  z-index: 2;
  width: min(100%, 1024px);
  min-height: 100vh;
  margin: 0 auto;
}

.view {
  display: none;
  min-height: 100vh;
  padding: 34px clamp(16px, 4vw, 50px) 28px;
}

.view.active {
  display: block;
}

.language-switch {
  position: absolute;
  top: 34px;
  right: clamp(18px, 4vw, 52px);
  display: flex;
  gap: 12px;
  z-index: 5;
}

.lang-btn {
  min-width: 86px;
  height: 52px;
  border: 1px solid rgba(241, 213, 155, 0.2);
  border-radius: 999px;
  color: rgba(246, 230, 200, 0.72);
  background: rgba(10, 8, 23, 0.7);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.lang-btn.active {
  color: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 22px rgba(241, 213, 155, 0.17), inset 0 0 18px rgba(241, 213, 155, 0.06);
}

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

.hero {
  text-align: center;
  padding-top: 42px;
}

.title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  height: 34px;
  margin-bottom: 8px;
}

.title-row span,
.spread-card::before,
.deck-card::before,
.reading-panel::before {
  content: "";
  width: 24px;
  height: 24px;
  background: radial-gradient(circle, #fff7da 0 13%, #f0c56f 14% 32%, transparent 33%);
  filter: drop-shadow(0 0 16px rgba(241, 213, 155, 0.78));
  transform: rotate(45deg);
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  font-size: clamp(48px, 8vw, 76px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  color: var(--gold);
  text-shadow: 0 0 26px rgba(241, 213, 155, 0.28), 0 2px 0 rgba(80, 45, 22, 0.65);
}

.subtitle {
  margin-top: 20px;
  color: rgba(217, 176, 131, 0.72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(14px, 2vw, 22px);
  letter-spacing: 0.44em;
}

.tagline {
  margin-top: 28px;
  color: rgba(246, 230, 200, 0.82);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 500;
}

.spread-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 42px;
}

.spread-card {
  position: relative;
  min-height: 438px;
  padding: 34px 24px 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(20, 15, 38, 0.88), rgba(14, 10, 29, 0.86)),
    radial-gradient(circle at 50% 52%, rgba(78, 43, 113, 0.45), transparent 42%);
  box-shadow: inset 0 0 0 1px rgba(241, 213, 155, 0.18), 0 20px 50px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.spread-card::before {
  position: absolute;
  left: 16px;
  top: 16px;
  width: 10px;
  height: 10px;
}

.spread-card.active,
.spread-card:hover {
  transform: translateY(-4px);
  border-color: rgba(241, 213, 155, 0.82);
  box-shadow: inset 0 0 0 1px rgba(241, 213, 155, 0.34), 0 0 34px rgba(241, 213, 155, 0.14), 0 24px 60px rgba(0, 0, 0, 0.34);
}

.spread-title,
.spread-subtitle,
.spread-badge {
  display: block;
  text-align: center;
}

.spread-title {
  color: var(--gold);
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 600;
}

.spread-subtitle {
  margin-top: 12px;
  color: rgba(246, 230, 200, 0.76);
  font-size: clamp(17px, 2.2vw, 22px);
}

.spread-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 210px;
  margin-top: 26px;
}

.spread-visual::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(241, 213, 155, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 42%, rgba(241, 213, 155, 0.06) 43% 44%, transparent 45%),
    conic-gradient(from 8deg, transparent, rgba(241, 213, 155, 0.18), transparent 34%, rgba(241, 213, 155, 0.16), transparent 70%);
}

.spread-visual i,
.mini-back {
  position: relative;
  display: block;
  width: 70px;
  height: 112px;
  border: 1px solid rgba(241, 213, 155, 0.76);
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(241, 213, 155, 0.18), transparent 18% 82%, rgba(241, 213, 155, 0.12)),
    radial-gradient(circle at 50% 50%, rgba(241, 213, 155, 0.26), transparent 18%),
    linear-gradient(180deg, #2c1c4b, #140f28);
  box-shadow: 0 0 18px rgba(241, 213, 155, 0.18);
}

.spread-visual i::after,
.mini-back::after,
.card-back-art::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(241, 213, 155, 0.4);
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold) 0 8%, transparent 9%);
}

.three-visual i:first-child {
  transform: rotate(-12deg) translateX(18px);
}

.three-visual i:nth-child(2) {
  z-index: 2;
  transform: translateY(-10px);
}

.three-visual i:nth-child(3) {
  transform: rotate(12deg) translateX(-18px);
}

.pentagram-visual {
  min-height: 210px;
}

.pentagram-visual::after,
.result-stage.pentagram::before {
  content: "";
  position: absolute;
  width: 176px;
  height: 176px;
  background: url("./images/pentagram-aura.png") center / contain no-repeat;
  filter: drop-shadow(0 0 18px rgba(241, 213, 155, 0.36));
}

.pentagram-visual i {
  position: absolute;
  width: 42px;
  height: 66px;
  z-index: 1;
}

.pentagram-visual i:nth-child(1) { top: 10px; left: calc(50% - 21px); }
.pentagram-visual i:nth-child(2) { top: 72px; left: 28px; }
.pentagram-visual i:nth-child(3) { top: 72px; right: 28px; }
.pentagram-visual i:nth-child(4) { bottom: 12px; left: 58px; }
.pentagram-visual i:nth-child(5) { bottom: 12px; right: 58px; }

.spread-badge {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 18px;
  min-height: 58px;
  padding: 15px 12px;
  border-top: 1px solid rgba(241, 213, 155, 0.2);
  color: var(--gold);
  font-size: 22px;
  background: linear-gradient(90deg, transparent, rgba(241, 213, 155, 0.07), transparent);
}

.ritual-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(220px, 320px) minmax(120px, 1fr);
  align-items: center;
  min-height: 560px;
  margin-top: 20px;
}

.magic-rings {
  position: absolute;
  left: 50%;
  bottom: 42px;
  width: min(680px, 80vw);
  aspect-ratio: 2.6 / 1;
  transform: translateX(-50%);
  border: 1px solid rgba(241, 213, 155, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(141, 80, 188, 0.22), inset 0 0 40px rgba(241, 213, 155, 0.08);
}

.magic-rings::before,
.magic-rings::after {
  content: "";
  position: absolute;
  inset: 14% 9%;
  border: 1px solid rgba(241, 213, 155, 0.15);
  border-radius: 50%;
}

.magic-rings::after {
  inset: 29% 20%;
  box-shadow: 0 0 30px rgba(241, 213, 155, 0.22);
}

.prompt {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  color: rgba(246, 230, 200, 0.9);
  font-size: clamp(18px, 2.5vw, 28px);
}

.prompt strong {
  color: var(--gold);
  font-weight: 600;
}

.prompt.left {
  justify-items: start;
  padding-left: 4vw;
}

.prompt.right {
  justify-items: end;
  padding-right: 4vw;
  text-align: right;
}

.deck-card {
  position: relative;
  z-index: 2;
  width: min(280px, 55vw);
  aspect-ratio: 0.62;
  justify-self: center;
  border: 2px solid rgba(241, 213, 155, 0.78);
  border-radius: 22px;
  background: linear-gradient(180deg, #3b235f, #151027);
  box-shadow: 0 0 28px rgba(241, 213, 155, 0.5), 0 0 80px rgba(116, 57, 174, 0.45);
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.deck-card::before {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 102px;
  height: 102px;
  transform: translate(-50%, -50%) rotate(45deg);
}

.deck-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 0 34px rgba(241, 213, 155, 0.68), 0 0 120px rgba(116, 57, 174, 0.54);
}

.deck-card.drawing {
  animation: deckPulse 900ms ease-in-out infinite alternate;
}

.card-back-art {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(241, 213, 155, 0.52);
  border-radius: 14px;
}

.card-back-art::before {
  content: "";
  position: absolute;
  inset: 38px;
  border: 1px solid rgba(241, 213, 155, 0.48);
  border-radius: 50%;
}

.question-panel {
  width: min(620px, 100%);
  margin: 0 auto 22px;
  display: grid;
  gap: 10px;
}

.question-panel label {
  color: var(--gold);
  font-size: 16px;
  text-align: center;
}

.question-panel textarea {
  width: 100%;
  resize: vertical;
  min-height: 72px;
  border: 1px solid rgba(241, 213, 155, 0.26);
  border-radius: 18px;
  padding: 16px 20px;
  color: var(--text);
  background: rgba(10, 8, 22, 0.68);
  outline: none;
  box-shadow: inset 0 0 28px rgba(241, 213, 155, 0.04);
}

.question-panel textarea:focus {
  border-color: rgba(241, 213, 155, 0.78);
  box-shadow: 0 0 26px rgba(241, 213, 155, 0.12), inset 0 0 28px rgba(241, 213, 155, 0.06);
}

.question-panel textarea::placeholder {
  color: rgba(246, 230, 200, 0.42);
}

.action-row {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-top: 28px;
}

.action-btn {
  min-width: 360px;
  min-height: 84px;
  padding: 18px 38px;
  border: 1px solid rgba(241, 213, 155, 0.38);
  border-radius: 999px;
  color: var(--text);
  background: rgba(12, 10, 28, 0.82);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: clamp(22px, 3vw, 32px);
  cursor: pointer;
  box-shadow: inset 0 0 28px rgba(241, 213, 155, 0.04), 0 18px 42px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.action-btn:hover {
  transform: translateY(-3px);
  border-color: rgba(241, 213, 155, 0.72);
  box-shadow: 0 0 28px rgba(241, 213, 155, 0.13), 0 20px 48px rgba(0, 0, 0, 0.28);
}

.action-btn.primary {
  color: var(--gold);
}

.orb-icon,
.scroll-icon,
.ribbon-icon {
  width: 40px;
  height: 40px;
  display: inline-block;
  flex: none;
}

.orb-icon {
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, #fff0ff 0 8%, #b76cdb 18%, #612580 48%, #261238 74%);
  box-shadow: inset -8px -8px 18px rgba(0, 0, 0, 0.28), 0 0 18px rgba(191, 103, 229, 0.6);
}

.scroll-icon {
  border-radius: 5px;
  background: linear-gradient(90deg, #9d653c 0 15%, #eac18a 16% 84%, #9d653c 85%);
  box-shadow: inset 0 0 0 2px rgba(60, 34, 20, 0.22);
}

.ribbon-icon {
  clip-path: polygon(12% 0, 88% 0, 78% 45%, 88% 100%, 50% 72%, 12% 100%, 22% 45%);
  background: linear-gradient(135deg, #e4bd81, #9d653c);
}

.result-view {
  width: min(100%, 540px);
  margin: 0 auto;
}

.result-header {
  display: grid;
  grid-template-columns: 54px 1fr 54px;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
  text-align: center;
}

.result-header h2 {
  color: var(--gold);
  font-size: 34px;
  font-weight: 600;
}

.result-header p {
  margin-top: 7px;
  color: rgba(217, 176, 131, 0.55);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  letter-spacing: 0.34em;
}

.icon-btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(241, 213, 155, 0.16);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(6, 5, 17, 0.65);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
}

.question-chip {
  display: none;
  max-width: 100%;
  margin: 0 auto 20px;
  padding: 10px 16px;
  border: 1px solid rgba(241, 213, 155, 0.18);
  border-radius: 999px;
  color: rgba(246, 230, 200, 0.74);
  background: rgba(12, 10, 28, 0.64);
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.result-stage {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: 12px auto 22px;
}

.result-stage::after {
  content: "";
  position: absolute;
  inset: 4% 2%;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(241, 213, 155, 0.08), transparent 46%),
    conic-gradient(from 12deg, transparent, rgba(241, 213, 155, 0.2), transparent 22%, rgba(121, 72, 178, 0.2), transparent 58%);
  opacity: 0.82;
}

.drawn-card {
  position: relative;
  width: 138px;
  display: grid;
  justify-items: center;
  gap: 11px;
  opacity: 0;
  transform: translateY(28px) scale(0.92);
  animation: cardIn 520ms ease forwards;
}

.drawn-card.single {
  width: 186px;
}

.drawn-card.single .card-frame {
  width: 174px;
  height: 294px;
}

.card-position-label {
  color: var(--gold);
  font-size: 18px;
  text-align: center;
}

.card-position-label small {
  display: block;
  margin-top: 2px;
  color: rgba(217, 176, 131, 0.56);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  letter-spacing: 0.18em;
}

.card-frame {
  width: 124px;
  height: 214px;
  padding: 7px;
  overflow: hidden;
  border: 2px solid rgba(241, 213, 155, 0.72);
  border-radius: 10px;
  background: #24172e;
  box-shadow: 0 0 20px rgba(241, 213, 155, 0.36), 0 16px 34px rgba(0, 0, 0, 0.35);
}

.card-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 5px;
}

.card-name {
  color: var(--gold);
  font-size: 19px;
  line-height: 1.2;
  text-align: center;
}

.card-name small {
  display: block;
  color: rgba(246, 230, 200, 0.68);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  margin-top: 3px;
}

.result-stage.three {
  align-items: end;
}

.result-stage.three .drawn-card:nth-child(2) {
  transform: translateY(-16px) scale(0.92);
}

.result-stage.pentagram {
  min-height: 620px;
}

.result-stage.pentagram .drawn-card {
  position: absolute;
  width: 120px;
}

.result-stage.pentagram .card-frame {
  width: 106px;
  height: 180px;
}

.result-stage.pentagram .drawn-card:nth-child(1) { top: 0; left: calc(50% - 60px); }
.result-stage.pentagram .drawn-card:nth-child(2) { top: 140px; left: 4px; }
.result-stage.pentagram .drawn-card:nth-child(3) { top: 140px; right: 4px; }
.result-stage.pentagram .drawn-card:nth-child(4) { bottom: 10px; left: 92px; }
.result-stage.pentagram .drawn-card:nth-child(5) { bottom: 10px; right: 92px; }

.result-stage.pentagram::before {
  z-index: 0;
  opacity: 0.74;
}

.result-stage.pentagram .drawn-card {
  z-index: 1;
}

.result-stage.pentagram .keywords {
  display: none;
}

.result-stage.pentagram .card-name {
  font-size: 16px;
}

.result-stage.pentagram .card-name small {
  font-size: 10px;
}

.reading-panel {
  position: relative;
  margin-top: 22px;
  padding: 28px 24px;
  border: 1px solid rgba(241, 213, 155, 0.22);
  border-radius: 10px;
  background: rgba(7, 6, 19, 0.72);
  box-shadow: inset 0 0 36px rgba(241, 213, 155, 0.03);
}

.reading-panel::before {
  position: absolute;
  left: 50%;
  top: -8px;
  width: 11px;
  height: 11px;
  transform: translateX(-50%) rotate(45deg);
}

.reading-panel h3 {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 22px;
  text-align: center;
  font-weight: 500;
}

.reading-item {
  display: grid;
  gap: 8px;
  padding: 16px 0;
  border-top: 1px solid rgba(241, 213, 155, 0.12);
}

.reading-item:first-of-type {
  border-top: 0;
}

.reading-item h4 {
  margin: 0;
  color: var(--gold);
  font-size: 18px;
}

.reading-item p {
  color: rgba(246, 230, 200, 0.76);
  font-size: 15px;
  line-height: 1.8;
}

.keywords {
  color: rgba(241, 213, 155, 0.82);
  font-size: 14px;
}

.result-actions {
  gap: 22px;
  margin-bottom: 16px;
}

.result-actions .action-btn {
  min-width: 0;
  width: 220px;
  min-height: 58px;
  font-size: 20px;
  padding: 12px 20px;
}

.result-actions .orb-icon,
.result-actions .ribbon-icon {
  width: 30px;
  height: 30px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 10;
  max-width: min(90vw, 420px);
  padding: 12px 18px;
  border: 1px solid rgba(241, 213, 155, 0.3);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(8, 6, 18, 0.9);
  box-shadow: 0 0 26px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translate(-50%, 18px);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

@keyframes deckPulse {
  from { transform: translateY(0) rotate(-0.5deg); }
  to { transform: translateY(-10px) rotate(0.5deg); }
}

@keyframes cardIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 900px) {
  .spread-grid {
    gap: 18px;
  }

  .spread-card {
    min-height: 360px;
    padding-inline: 16px;
  }

  .spread-visual {
    min-height: 170px;
  }

  .action-row {
    gap: 24px;
  }

  .action-btn {
    min-width: 280px;
  }
}

@media (max-width: 720px) {
  .view {
    padding: 24px 18px 22px;
  }

  .language-switch {
    top: 18px;
    right: 18px;
    gap: 8px;
  }

  .lang-btn {
    min-width: 68px;
    height: 42px;
  }

  .hero {
    padding-top: 64px;
  }

  .subtitle {
    letter-spacing: 0.3em;
  }

  .spread-grid {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .spread-card {
    min-height: 260px;
  }

  .spread-visual {
    display: none;
  }

  .spread-badge {
    position: static;
    margin-top: 24px;
    min-height: 0;
  }

  .ritual-stage {
    grid-template-columns: 1fr;
    min-height: 440px;
    margin-top: 22px;
  }

  .prompt {
    position: absolute;
    top: 38%;
    font-size: 18px;
    width: 96px;
  }

  .prompt.left {
    left: 0;
    padding-left: 0;
  }

  .prompt.right {
    right: 0;
    padding-right: 0;
  }

  .deck-card {
    width: min(230px, 58vw);
  }

  .magic-rings {
    width: 92vw;
    bottom: 80px;
  }

  .action-row {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .action-btn {
    width: 100%;
    min-width: 0;
    min-height: 68px;
    font-size: 23px;
  }

  .result-stage.three {
    flex-wrap: nowrap;
    gap: 8px;
  }

  .result-stage.three .drawn-card {
    width: 31%;
  }

  .result-stage.three .card-frame {
    width: 100%;
    height: auto;
    aspect-ratio: 0.58;
  }

  .result-stage.pentagram .drawn-card:nth-child(4) { left: 54px; }
  .result-stage.pentagram .drawn-card:nth-child(5) { right: 54px; }

  .result-stage.pentagram .card-name small {
    display: none;
  }

  .result-actions {
    flex-direction: row;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 44px;
  }

  .tagline {
    font-size: 20px;
  }

  .prompt {
    display: none;
  }

  .magic-rings {
    bottom: 58px;
  }

  .question-panel {
    margin-top: -16px;
  }

  .result-stage {
    min-height: 380px;
  }

  .drawn-card.single .card-frame {
    width: 152px;
    height: 258px;
  }

  .result-stage.pentagram {
    min-height: 560px;
  }

  .result-stage.pentagram .drawn-card {
    width: 96px;
  }

  .result-stage.pentagram .card-frame {
    width: 84px;
    height: 144px;
  }

  .result-stage.pentagram::before {
    width: 146px;
    height: 146px;
  }

  .result-stage.pentagram .drawn-card:nth-child(1) { left: calc(50% - 48px); }
  .result-stage.pentagram .drawn-card:nth-child(2) { top: 132px; }
  .result-stage.pentagram .drawn-card:nth-child(3) { top: 132px; }
  .result-stage.pentagram .drawn-card:nth-child(4) { left: 38px; bottom: 34px; }
  .result-stage.pentagram .drawn-card:nth-child(5) { right: 38px; bottom: 34px; }

  .card-position-label {
    font-size: 15px;
  }

  .result-stage.pentagram .card-position-label {
    font-size: 13px;
  }

  .card-name {
    font-size: 15px;
  }

  .result-stage.pentagram .card-name {
    font-size: 13px;
  }

  .reading-panel {
    padding: 24px 18px;
  }
}
