:root {
  --bg: #06050c;
  --surface: #12101c;
  --navy-deep: #081428;
  --gold: #d4af5a;
  --gold-light: #f0ddb0;
  --gold-glow: rgba(212, 175, 90, 0.6);
  --purple: #3d2463;
  --purple-glow: rgba(123, 94, 167, 0.5);
  --text: #f8f4ec;
  --text-muted: #a89cb8;
  --yes: #4ecda0;
  --yes-glow: rgba(78, 205, 160, 0.55);
  --no: #d4737a;
  --no-glow: rgba(212, 115, 122, 0.5);
  --radius: 18px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-brand: "Cinzel", serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --header-height: 72px;
}

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

[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  min-height: 100%;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Čitelné odstavce — Outfit pro dlouhé texty (nadpisy zůstávají u display/brand) */
p {
  font-family: var(--font-body);
  line-height: 1.65;
}

.body--landing { overflow: hidden; }
.body--reading-zoom { overflow: hidden; }
.body--pricing-plan-zoom { overflow: hidden; }
.body--daily-ritual-zoom,
.body--cosmic-ritual-card { overflow: hidden; }
.body--dream-modal { overflow: hidden; }
.body--profile-modal { overflow: hidden; }

.stars {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    radial-gradient(1px 1px at 12% 18%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 78% 12%, rgba(255,255,255,0.35), transparent),
    radial-gradient(1.5px 1.5px at 45% 55%, rgba(255,255,255,0.25), transparent),
    radial-gradient(1px 1px at 88% 72%, rgba(255,255,255,0.4), transparent);
  opacity: 0.7;
}

.nebula {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 0%, rgba(61,36,99,0.35), transparent 60%),
    radial-gradient(ellipse 60% 40% at 85% 90%, rgba(212,175,90,0.08), transparent 55%),
    radial-gradient(ellipse 50% 30% at 50% 50%, rgba(13,27,58,0.4), transparent 70%);
}

/* ── LANDING ── */
.landing {
  position: fixed; inset: 0; z-index: 200;
  overflow-y: auto; overflow-x: hidden;
  scroll-behavior: smooth;
  transition: opacity 0.85s ease;
}
.landing--leaving { opacity: 0; pointer-events: none; }
.landing--hidden { display: none !important; }

.landing__bg {
  position: fixed; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 120% 80% at 50% 20%, rgba(40, 60, 120, 0.45), transparent 55%),
    radial-gradient(ellipse 90% 70% at 80% 80%, rgba(61, 36, 99, 0.35), transparent 50%),
    linear-gradient(180deg, #050818 0%, #0a1028 45%, #030510 100%);
}
.landing__overlay {
  position: fixed; inset: 0; z-index: 1;
  background: rgba(0,0,0,0.7); pointer-events: none;
}
.landing-stars {
  position: fixed; inset: 0; z-index: 2;
  pointer-events: none; overflow: hidden;
}
.landing-star {
  position: absolute;
  width: 2px; height: 2px; border-radius: 50%;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 0 4px rgba(255,255,255,0.7);
  animation: starTwinkle var(--twinkle-dur, 4s) ease-in-out infinite;
  animation-delay: var(--twinkle-delay, 0s);
  opacity: 0;
}
.landing-star--gold {
  width: 3px; height: 3px;
  background: var(--gold-light);
  box-shadow: 0 0 6px var(--gold-glow);
}
.landing-star--fall {
  animation: starFall var(--fall-dur, 14s) linear infinite, starTwinkleOpacity var(--twinkle-dur, 3.5s) ease-in-out infinite;
  animation-delay: var(--fall-delay, 0s), var(--twinkle-delay, 0s);
}
@keyframes starTwinkle {
  0%, 100% { opacity: 0.15; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.15); }
}
@keyframes starTwinkleOpacity {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 1; }
}
@keyframes starFall {
  0% { transform: translateY(-10vh); opacity: 0; }
  8% { opacity: 0.9; }
  92% { opacity: 0.7; }
  100% { transform: translateY(110vh) translateX(var(--drift, 12px)); opacity: 0; }
}
.landing__scroll-fade {
  position: fixed; inset: 0; z-index: 3; pointer-events: none;
  background: linear-gradient(180deg, transparent 38%, rgba(3,2,4,0.88) 68%, #010001 100%);
}

.landing-hero {
  position: relative; z-index: 4;
  min-height: 100dvh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: calc(4.5rem + var(--safe-top)) 1.5rem 4rem;
}
.landing-hero__symbol { display: none !important; }
.landing-hero__title {
  font-family: var(--font-brand);
  font-size: clamp(2.4rem, 10vw, 4.5rem);
  font-weight: 600; letter-spacing: 0.22em;
  color: var(--gold-light);
  text-shadow: 0 0 60px rgba(212,175,90,0.35);
  margin-bottom: 1rem;
}
.landing-hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 4.5vw, 1.75rem);
  font-style: italic; color: rgba(248,244,236,0.9);
}
.landing-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.65rem;
  text-decoration: none; color: var(--gold);
}
.landing-scroll__line {
  width: 2px; height: 72px;
  background: linear-gradient(180deg, transparent, var(--gold-light), var(--gold), transparent);
}
.landing-scroll__arrow {
  display: none !important;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(16px); }
}
@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.06); opacity: 1; }
}

.landing-features {
  position: relative; z-index: 4;
  padding: 5rem 1.5rem 4rem;
  max-width: 960px; margin: 0 auto; text-align: center;
}
.landing-features__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--gold-light); margin-bottom: 0.75rem;
}
.landing-features__subtitle {
  font-size: 1rem; color: var(--text-muted);
  margin-bottom: 3rem; max-width: 52ch; margin-inline: auto;
}
.landing-features__grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 700px) {
  .landing-features__grid { grid-template-columns: repeat(3, 1fr); }
}
.feature-card {
  padding: 2rem 1.5rem;
  background: rgba(14,12,22,0.82);
  border: 1px solid rgba(212,175,90,0.28);
  border-radius: 20px;
}
.feature-card__icon { display: none !important; }
.feature-card__title {
  font-family: var(--font-brand); font-size: 1rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 0.75rem;
}
.feature-card__desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.landing-cta {
  position: relative; z-index: 4;
  padding: 3rem 1.5rem 1.5rem;
  max-width: 520px; margin: 0 auto;
}
.landing-cta__box {
  padding: 2.5rem 2rem;
  background: rgba(8,6,14,0.75);
  border: 1px solid rgba(212,175,90,0.25);
  border-radius: 24px;
}
.landing-cta__consent {
  display: flex; gap: 0.85rem; text-align: left;
  font-size: 0.88rem; color: var(--text-muted);
  margin-bottom: 2rem; cursor: pointer;
}
.landing-cta__consent input { accent-color: var(--gold); width: 18px; height: 18px; margin-top: 3px; flex-shrink: 0; }
.landing-cta__consent-body {
  text-align: left;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: -1rem 0 2rem;
  padding-left: calc(18px + 0.85rem);
}

.btn--enter {
  width: 100%;
  font-family: var(--font-brand);
  font-size: 1.05rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 1.35rem 2rem;
  background: linear-gradient(135deg, #f0ddb0, #d4af5a, #9a7a30);
  color: #1a1008; border: none; border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 8px 40px rgba(212,175,90,0.35);
}
.btn--enter:disabled { opacity: 0.4; cursor: not-allowed; }

.link-btn {
  background: none; border: none; color: var(--gold);
  text-decoration: underline; cursor: pointer; font: inherit; padding: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── LANDING FOOTER ── */
/* ── LANDING — O projektu ── */
.landing-about {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  padding: 0 0.5rem;
}
.landing-about__details {
  background: rgba(8, 6, 14, 0.75);
  border: 1px solid rgba(212, 175, 90, 0.28);
  border-radius: 20px;
  overflow: hidden;
}
.landing-about__summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.15rem, 3.5vw, 1.5rem);
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.25), 0 2px 12px rgba(0, 0, 0, 0.45);
  transition: color 0.25s ease, text-shadow 0.25s ease;
}
.landing-about__summary::-webkit-details-marker { display: none; }
.landing-about__summary::marker { content: ''; }
.landing-about__summary:hover,
.landing-about__summary:focus-visible {
  color: rgba(240, 221, 176, 0.98);
  text-shadow: 0 0 20px rgba(212, 175, 90, 0.35), 0 2px 12px rgba(0, 0, 0, 0.45);
  outline: none;
}
.landing-about__chevron {
  flex-shrink: 0;
  font-size: 0.85em;
  color: rgba(212, 175, 90, 0.85);
  text-shadow: 0 0 12px rgba(212, 175, 90, 0.35);
  transition: transform 0.3s ease;
}
.landing-about__details[open] .landing-about__chevron { transform: rotate(180deg); }
.landing-about__details[open] .landing-about__summary {
  border-bottom: 1px solid rgba(212, 175, 90, 0.18);
}
.landing-about__body {
  padding: 1.25rem 1.5rem 1.5rem;
}
.landing-about__body p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1.05rem, 2.5vw, 1.1rem);
  line-height: 1.65;
  color: rgba(230, 225, 240, 0.88);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
  max-width: 62ch;
  margin: 0 auto 1.25rem;
}
.landing-about__body p:last-child { margin-bottom: 0; }
.landing-about__close-wrap {
  margin-top: 1.5rem;
  padding-top: 1rem;
  text-align: center;
}
.landing-about__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(8, 6, 14, 0.55);
  border: 1px solid rgba(212, 175, 90, 0.45);
  border-radius: 999px;
  padding: 0.55rem 1.35rem;
  cursor: pointer;
  font-family: var(--font-brand);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(212, 175, 90, 0.9);
  text-shadow: 0 0 10px rgba(212, 175, 90, 0.25);
  transition: color 0.25s ease, border-color 0.25s ease, text-shadow 0.25s ease, box-shadow 0.25s ease;
}
.landing-about__close:hover,
.landing-about__close:focus-visible {
  color: rgba(240, 221, 176, 0.98);
  border-color: rgba(212, 175, 90, 0.75);
  text-shadow: 0 0 14px rgba(212, 175, 90, 0.4);
  box-shadow: 0 0 18px rgba(212, 175, 90, 0.22);
  outline: none;
}
.landing-about__close-x {
  font-size: 1.15rem;
  line-height: 1;
  color: rgba(212, 175, 90, 0.95);
  text-shadow: 0 0 12px rgba(212, 175, 90, 0.35);
}

.landing-footer {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 3rem 1.5rem calc(2.5rem + var(--safe-bottom));
  margin-top: 1rem;
  border-top: 1px solid rgba(212, 175, 90, 0.18);
  background: linear-gradient(180deg, transparent, rgba(4, 6, 16, 0.55));
}
.landing-footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  margin-bottom: 1rem;
}
.landing-footer__link {
  background: none;
  border: none;
  padding: 0.35rem 0.5rem;
  font-family: var(--font-brand);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(212, 175, 90, 0.85);
  cursor: pointer;
  text-decoration: none;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}
.landing-footer__link:hover,
.landing-footer__link:focus-visible {
  color: var(--gold-light);
  text-shadow: 0 0 16px rgba(212, 175, 90, 0.35);
  outline: none;
}
.landing-footer__link--anchor { display: inline-block; }
.landing-footer__sep {
  color: rgba(212, 175, 90, 0.35);
  font-size: 0.75rem;
  user-select: none;
}
.landing-footer__social {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 0.85rem;
  margin-bottom: 1rem;
}
.landing-footer__social-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-brand);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(212, 175, 90, 0.85);
  user-select: none;
  text-decoration: none;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}
.landing-footer__social-item:hover,
.landing-footer__social-item:focus-visible {
  color: var(--gold-light);
  text-shadow: 0 0 16px rgba(212, 175, 90, 0.35);
  outline: none;
}
.landing-footer__social-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: rgba(212, 175, 90, 0.85);
}
.landing-footer__social-label {
  line-height: 1;
}
.landing-footer__tagline {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(168, 156, 184, 0.75);
}

/* ── TOP BAR (Ceník + Jazyk) ── */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 0.45rem;
  padding: calc(0.55rem + var(--safe-top)) 0.85rem 0.55rem;
  background: linear-gradient(180deg, rgba(6, 5, 12, 0.92) 0%, rgba(6, 5, 12, 0.72) 70%, transparent 100%);
  pointer-events: none;
}
.top-bar > * {
  pointer-events: auto;
  flex-shrink: 0;
}
.top-bar__pricing {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.55rem;
  background: transparent;
  border: none;
  border-radius: 0;
  font-family: var(--font-brand);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  cursor: pointer;
  box-shadow: none;
  transition: color 0.25s ease;
  white-space: nowrap;
  min-width: auto;
}
.top-bar__pricing-label {
  line-height: 1;
}
.top-bar__pricing:hover,
.top-bar__pricing:focus-visible {
  color: var(--gold);
  outline: none;
}
.body--app .top-bar__pricing {
  display: none !important;
}
.top-bar__settings {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem;
  background: transparent;
  border: none;
  color: var(--gold-light);
  cursor: pointer;
  transition: color 0.25s ease;
  line-height: 0;
  flex-shrink: 0;
}
.top-bar__settings-icon {
  width: 1.05rem;
  height: 1.05rem;
  display: block;
}
.top-bar__settings:hover,
.top-bar__settings:focus-visible {
  color: var(--gold);
  outline: none;
}

.lang-select {
  position: relative;
  font-family: var(--font-brand);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.lang-select__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.75rem 0.45rem 0.6rem;
  background: rgba(8, 6, 14, 0.82);
  border: 1px solid rgba(212, 175, 90, 0.35);
  border-radius: 999px;
  color: var(--gold-light);
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35), 0 0 16px rgba(212, 175, 90, 0.08);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
  min-width: 5.5rem;
}
.lang-select__trigger:hover,
.lang-select__trigger:focus-visible {
  border-color: rgba(212, 175, 90, 0.65);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), 0 0 24px rgba(212, 175, 90, 0.18);
  outline: none;
  color: var(--gold);
}
.lang-select__trigger[aria-expanded="true"] {
  border-color: var(--gold);
  box-shadow: 0 0 28px rgba(212, 175, 90, 0.22);
}
.lang-select__trigger[aria-expanded="true"] .lang-select__chevron {
  transform: rotate(180deg);
}

.lang-select__flag {
  display: none !important;
}
.lang-select__code {
  font-weight: 600;
  letter-spacing: 0.18em;
  flex: 1;
  text-align: left;
}
.lang-select__chevron {
  display: none !important;
}

.lang-select__menu {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  min-width: 100%;
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  background: rgba(10, 8, 18, 0.97);
  border: 1px solid rgba(212, 175, 90, 0.32);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55), 0 0 32px rgba(212, 175, 90, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  animation: langMenuIn 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}
.lang-select__menu[hidden] {
  display: none !important;
}
@keyframes langMenuIn {
  from { opacity: 0; transform: translateY(-6px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.lang-select__option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  color: rgba(168, 156, 184, 0.85);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.lang-select__option:hover,
.lang-select__option:focus-visible {
  background: rgba(212, 175, 90, 0.1);
  color: var(--gold-light);
  outline: none;
}
.lang-select__option--active {
  color: var(--gold);
  background: rgba(212, 175, 90, 0.08);
  text-shadow: 0 0 12px rgba(212, 175, 90, 0.35);
}
.lang-select__option .lang-select__code {
  flex: none;
}

/* ── APP SHELL — přirozený scroll, žádné mačkání ── */
.app--hidden { display: none !important; }

.app {
  position: relative;
  z-index: 1;
  min-height: 100%;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: calc(0.85rem + var(--safe-top)) 1.25rem 0.85rem;
  background: rgba(6,5,12,0.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,175,90,0.15);
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.header__brand:hover,
.header__brand:focus-visible {
  opacity: 0.88;
  transform: translateY(-1px);
  outline: none;
}
.header__brand:hover .header__title,
.header__brand:focus-visible .header__title {
  text-shadow: 0 0 20px rgba(212, 175, 90, 0.45);
}
.header__symbol { display: none !important; }
.header__title {
  font-family: var(--font-brand);
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.nav {
  display: flex;
  gap: 0.25rem;
  background: rgba(18,16,28,0.9);
  padding: 0.25rem;
  border-radius: 999px;
  border: 1px solid rgba(212,175,90,0.1);
}
.nav__btn {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
}
.nav__btn--active {
  background: linear-gradient(135deg, var(--purple), #5a3d8a);
  color: var(--gold-light);
}
.nav__btn--gold { color: var(--gold-light); border: 1px solid rgba(212,175,90,0.4); }
.nav__btn--gold.nav__btn--active {
  background: linear-gradient(135deg, #5a4520, #8a6d2a);
  box-shadow: 0 0 20px var(--gold-glow);
}

.main {
  padding-top: 100px;
  padding-bottom: calc(3rem + var(--safe-bottom));
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

/* ── TAB VIEWS — vertikální tok, žádné absolutní pozicování ── */
.tab-view {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 1.25rem 2rem;
}

.tab-view.active {
  display: flex;
}

/* ── TAROT ── */
.tab-view--tarot {
  gap: 2.5rem;
}

.card-scene {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1.5rem 0;
  scroll-margin-top: 90px;
}

.card-aura {
  position: absolute;
  width: 320px;
  height: 320px;
  pointer-events: none;
  opacity: 0.65;
}
.card-aura__core {
  position: absolute; inset: 20%; border-radius: 50%;
  background: radial-gradient(circle, var(--gold-glow), var(--purple-glow), transparent 68%);
  filter: blur(28px);
  animation: breathe 4s ease-in-out infinite;
}
.card-aura__ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(212,175,90,0.12);
}
.card-aura__ring--1 { animation: ringOut 3s ease-out infinite; }
.card-aura__ring--2 { animation: ringOut 3s ease-out 1.5s infinite; }
@keyframes ringOut {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(1.4); opacity: 0; }
}

.card-shimmer {
  position: absolute;
  width: 240px;
  height: 380px;
  border-radius: 16px;
  pointer-events: none;
  opacity: 0;
}
.card-scene--reveal .card-shimmer {
  animation: shimmer 2s ease-out forwards;
}
@keyframes shimmer {
  0% { opacity: 0; }
  25% { opacity: 1; }
  100% { opacity: 0; }
}

.card-container {
  perspective: 1200px;
  width: 240px;
  height: 380px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  filter: drop-shadow(0 0 24px rgba(212,175,90,0.4)) drop-shadow(0 20px 48px rgba(0,0,0,0.55));
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.9s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform-style: preserve-3d;
}

.card-container.flipped .card-inner {
  transform: rotateY(180deg);
}

.card-front, .card-back {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 14px;
  overflow: hidden;
}

.card-back {
  z-index: 2;
}
.card-container.flipped .card-back {
  visibility: hidden;
  pointer-events: none;
}

/* ── SPOLEČNÝ RUB — modrý vesmír se zlatými symboly (zrcadlený) ── */
.deck-card-back {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 2px solid rgba(212,175,90,0.55);
  border-radius: 14px;
  background: #040c1e;
  transform: scaleX(-1);
}
.deck-card-back__nebula {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 90% 70% at 30% 25%, rgba(30,80,160,0.55), transparent 65%),
    radial-gradient(ellipse 80% 60% at 75% 80%, rgba(80,40,140,0.35), transparent 60%),
    radial-gradient(ellipse 100% 100% at 50% 50%, #081428, #030a18 80%);
}
.deck-card-back__frame {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(212,175,90,0.28);
  border-radius: 8px;
  box-shadow: inset 0 0 24px rgba(212,175,90,0.08);
}
.deck-card-back__symbols {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}
.deck-card-back--79th .deck-card-back__nebula {
  background:
    radial-gradient(ellipse 100% 80% at 50% 40%, rgba(212,175,90,0.22), transparent 55%),
    radial-gradient(ellipse 90% 70% at 30% 25%, rgba(30,80,160,0.55), transparent 65%),
    radial-gradient(ellipse 80% 60% at 75% 80%, rgba(120,80,200,0.4), transparent 60%),
    radial-gradient(ellipse 100% 100% at 50% 50%, #0a1838, #030a18 80%);
}
.deck-card-back--79th::after { display: none !important; }
@keyframes pulse79 {
  0%, 100% { opacity: 0.65; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.08); }
}

.card-front {
  transform: rotateY(180deg);
  background: #000;
  border: 2px solid rgba(212,175,90,0.5);
}
.card-front__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}

.tab-controls {
  width: 100%;
  max-width: 520px;
  background: linear-gradient(160deg, rgba(18,16,28,0.95), rgba(13,27,58,0.45));
  border: 1px solid rgba(212,175,90,0.18);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.tab-view--tarot.is-loading .tab-controls,
.tab-view--tarot.has-result .tab-controls {
  display: none;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.field__label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.field__input {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(123,94,167,0.35);
  border-radius: 12px;
  background: rgba(6,5,12,0.6);
  color: var(--text);
  resize: vertical;
  min-height: 72px;
  line-height: 1.5;
}
.field__input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,90,0.12);
}

.btn {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 1rem 1.75rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  width: 100%;
}
.btn--primary {
  background: linear-gradient(135deg, #e8c86a, var(--gold), #9a7a30);
  color: #1a1008;
  box-shadow: 0 6px 28px rgba(212,175,90,0.35);
}
.btn--primary:disabled { opacity: 0.45; cursor: not-allowed; }

/* ── ORACLE / VÝSLEDKY ── */
.oracle-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1rem;
  color: var(--text-muted);
  font-style: italic;
  width: 100%;
  max-width: 520px;
}
.oracle-loading--hidden { display: none !important; }
.tab-view--premium .oracle-loading {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 0.75rem auto 0;
  scroll-margin-top: 90px;
}
.oracle-loading__ring {
  width: 48px; height: 48px; border-radius: 50%;
  border: 2px solid rgba(212,175,90,0.15);
  border-top-color: var(--gold);
  animation: spin 1.2s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.oracle {
  width: 100%;
  max-width: 560px;
  background: linear-gradient(165deg, rgba(13,27,58,0.65), rgba(18,16,28,0.98));
  border: 2px solid rgba(212,175,90,0.4);
  border-radius: 22px;
  padding: 2rem 1.75rem;
  box-shadow: 0 0 60px rgba(212,175,90,0.12), 0 12px 40px rgba(0,0,0,0.35);
  animation: oracleReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.oracle--hidden { display: none !important; }
.oracle__verdict {
  font-family: var(--font-brand);
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 1rem;
}
.oracle__verdict--yes { color: var(--yes); text-shadow: 0 0 28px var(--yes-glow); }
.oracle__verdict--no { color: var(--no); text-shadow: 0 0 28px var(--no-glow); }
.oracle__divider {
  width: 80px;
  height: 1px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.oracle__text {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 3.5vw, 1.25rem);
  font-style: normal;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(248,244,236,0.95);
  text-align: center;
}
@keyframes oracleReveal {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.btn--new-question {
  width: 100%;
  max-width: 520px;
  margin-top: -0.5rem;
  padding: 0.85rem 1.5rem;
  background: transparent;
  color: var(--gold-light);
  border: 1px solid rgba(212,175,90,0.35);
  font-family: var(--font-brand);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}
.btn--new-question:not(.oracle--hidden):not([hidden]) {
  display: inline-flex;
}
.btn--new-question:hover,
.btn--new-question:focus-visible {
  border-color: rgba(212,175,90,0.65);
  color: var(--gold);
  box-shadow: 0 0 24px rgba(212,175,90,0.15);
  outline: none;
}
.btn--new-question__arrow {
  display: none !important;
}

/* ── Zpět na úvod ── */
.section-footer {
  width: 100%;
  max-width: 520px;
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
  margin-top: 0.5rem;
}
.section-footer--premium {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 1.5rem auto 0;
  padding: 0 0.25rem 0.5rem;
}
.btn--back-home {
  width: auto;
  min-width: 200px;
  padding: 0.65rem 1.75rem;
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(212, 175, 90, 0.45);
  border-radius: 999px;
  font-family: var(--font-brand);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(212, 175, 90, 0.08);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.btn--back-home:hover,
.btn--back-home:focus-visible {
  border-color: rgba(212, 175, 90, 0.75);
  color: var(--gold-light);
  box-shadow: 0 0 28px rgba(212, 175, 90, 0.22);
  transform: translateY(-1px);
  outline: none;
}

/* ── KYVADLO ── */
.tab-view--pendulum,
.pendulum-stage,
.pendulum-zone,
.pendulum-rig,
.pendulum-arm,
.pendulum-crystal,
.pendulum-hint {
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

.tab-view--pendulum {
  position: relative;
  overflow: hidden;
  gap: 2rem;
}

.pendulum-stars {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.tab-view--pendulum > :not(.pendulum-stars) {
  position: relative;
  z-index: 1;
}

.tab-controls--top {
  width: 100%;
  max-width: 520px;
}
.tab-controls--top .field { margin-bottom: 0; }

.pendulum-stage {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0 1rem;
}

.pendulum-zone {
  position: relative;
  width: 100%;
  max-width: 400px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.pendulum-rig {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0.5rem;
}
.pendulum-pivot {
  width: 6px; height: 6px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #f4f6fa, #b0b8c8);
  box-shadow: 0 0 8px rgba(200,210,230,0.4);
}
.pendulum-arm {
  transform-origin: top center;
  display: flex;
  flex-direction: column;
  align-items: center;
  will-change: transform;
}
.pendulum-thread { display: block; opacity: 0.92; }
.pendulum-crystal {
  margin-top: -4px;
  cursor: pointer;
  touch-action: manipulation;
  filter:
    drop-shadow(0 12px 24px rgba(0,0,0,0.5))
    drop-shadow(0 0 26px rgba(78,205,160,0.62))
    drop-shadow(0 0 52px rgba(52,170,125,0.42));
}
.pendulum-crystal svg {
  width: 120px;
  height: auto;
  display: block;
}

.pendulum-arm:not(.pendulum-arm--swing):not(.pendulum-arm--circle):not(.pendulum-arm--seeking) {
  animation: pendulumIdle 7s ease-in-out infinite;
}
@keyframes pendulumIdle {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}

.pendulum-arm--seeking { animation: pendulumSeek 2.8s ease-in-out infinite; }
.pendulum-arm--swing { animation: pendulumSwingReal 5.8s cubic-bezier(0.45, 0.05, 0.25, 1) infinite; }
.pendulum-arm--circle { animation: pendulumCircleReal 6.4s ease-in-out infinite; }

@keyframes pendulumSeek {
  0% { transform: rotate(-22deg); }
  20% { transform: rotate(18deg); }
  40% { transform: rotate(-16deg); }
  60% { transform: rotate(20deg); }
  80% { transform: rotate(-14deg); }
  100% { transform: rotate(16deg); }
}
@keyframes pendulumSwingReal {
  0%, 100% { transform: rotate(-26deg); }
  50% { transform: rotate(26deg); }
}
@keyframes pendulumCircleReal {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(16deg); }
  50% { transform: rotate(0deg); }
  75% { transform: rotate(-16deg); }
  100% { transform: rotate(0deg); }
}

.pendulum-aura {
  position: absolute;
  width: 100px;
  height: 100px;
  top: 62%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  filter: blur(28px);
}
.pendulum-aura--active { opacity: 1; animation: auraPulse 2.4s ease-in-out infinite; }
.pendulum-aura--yes { background: radial-gradient(circle, var(--yes-glow), transparent 72%); }
.pendulum-aura--no { background: radial-gradient(circle, var(--no-glow), transparent 72%); }
@keyframes auraPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.2); }
}

.pendulum-crystal--active:not(.pendulum-crystal--yes):not(.pendulum-crystal--no) {
  animation: crystalGlow 2.4s ease-in-out infinite;
}
.pendulum-crystal--yes.pendulum-crystal--active { animation: crystalGlowYes 2.4s ease-in-out infinite; }
.pendulum-crystal--no.pendulum-crystal--active { animation: crystalGlowNo 2.4s ease-in-out infinite; }
@keyframes crystalGlow {
  50% {
    filter:
      drop-shadow(0 0 34px rgba(78,205,160,0.78))
      drop-shadow(0 0 64px rgba(52,170,125,0.52));
  }
}
@keyframes crystalGlowYes {
  50% {
    filter:
      drop-shadow(0 0 46px rgba(78,205,160,0.95))
      drop-shadow(0 0 78px rgba(52,170,125,0.62));
  }
}
@keyframes crystalGlowNo {
  50% {
    filter:
      drop-shadow(0 0 46px rgba(212,115,122,0.88))
      drop-shadow(0 0 72px rgba(180,70,80,0.45));
  }
}

.pendulum-hint {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
  padding: 0 1rem;
}
.pendulum-hint--tuning {
  color: var(--gold-light);
  text-shadow: 0 0 14px rgba(212,175,90,0.4);
}

.oracle--pendulum {
  margin-top: 50px;
}

/* ── PREMIUM ── */
.tab-view--premium {
  gap: 0;
  padding: 0;
  max-width: none;
  width: 100%;
  scroll-margin-top: 90px;
}
.main:has(.tab-view--premium.active) {
  max-width: 960px;
}

/* ── PREMIUM — Rozcestník 5 karet ── */
.premium-hub {
  position: relative;
  width: 100%;
  padding: 0.5rem 1rem 2.5rem;
  overflow: hidden;
  animation: premiumFadeIn 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.premium-hub--hidden {
  display: none !important;
}
.premium-hub__nebula {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background:
    radial-gradient(ellipse 110% 75% at 50% 25%, rgba(25, 55, 130, 0.5), transparent 58%),
    radial-gradient(ellipse 85% 65% at 15% 75%, rgba(61, 36, 99, 0.38), transparent 52%),
    radial-gradient(ellipse 70% 55% at 88% 55%, rgba(212, 175, 90, 0.1), transparent 48%),
    linear-gradient(180deg, #040c22 0%, #060818 45%, #030610 100%);
  border: 1px solid rgba(212, 175, 90, 0.2);
  box-shadow: inset 0 0 80px rgba(8, 20, 60, 0.75), 0 0 60px rgba(212, 175, 90, 0.07);
  pointer-events: none;
}
.premium-hub__stardust {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background-image:
    radial-gradient(1.5px 1.5px at 18% 22%, rgba(240, 221, 176, 0.7), transparent),
    radial-gradient(1px 1px at 48% 12%, rgba(255, 255, 255, 0.45), transparent),
    radial-gradient(1.5px 1.5px at 78% 32%, rgba(212, 175, 90, 0.55), transparent),
    radial-gradient(1px 1px at 28% 68%, rgba(255, 255, 255, 0.35), transparent),
    radial-gradient(1.5px 1.5px at 82% 78%, rgba(240, 221, 176, 0.5), transparent);
  opacity: 0.85;
  pointer-events: none;
  animation: stardustShimmer 8s ease-in-out infinite;
}

.premium-hub__header {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 1.5rem 1rem 1.75rem;
}
.premium-hub__crown { display: none !important; }
.premium-hub__eyebrow {
  font-family: var(--font-brand);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.premium-hub__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  color: var(--gold-light);
  margin: 0.5rem 0 0.35rem;
}
.premium-hub__subtitle {
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 44ch;
  margin: 0 auto;
  line-height: 1.6;
}

.premium-hub__grid {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: 0 0.25rem;
}

.premium-hub-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  min-height: 0;
  padding: 1.35rem 1.5rem;
  text-align: center;
  background: rgba(14, 12, 22, 0.82);
  border: 1px solid rgba(212, 175, 90, 0.28);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(240, 221, 176, 0.05);
  cursor: pointer;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}
button.premium-hub-card {
  font: inherit;
  color: inherit;
  width: 100%;
}
.premium-hub-card:hover,
.premium-hub-card:focus-visible {
  border-color: rgba(212, 175, 90, 0.55);
  box-shadow: 0 0 36px rgba(212, 175, 90, 0.12), 0 12px 40px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
  outline: none;
}
.premium-hub-card__title {
  font-family: var(--font-brand);
  font-size: clamp(0.72rem, 2.8vw, 0.88rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0;
  line-height: 1.45;
  text-shadow: 0 0 16px rgba(212, 175, 90, 0.12);
}
.premium-hub-card__icon,
.premium-hub-card__desc,
.premium-hub-card__cta {
  display: none !important;
}
.premium-hub-card__subtitle {
  font-family: var(--font-display);
  font-size: clamp(0.82rem, 2.4vw, 0.95rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(168, 156, 184, 0.88);
  margin: 0;
  line-height: 1.5;
  max-width: 36ch;
  text-shadow: none;
}

.premium-hub-card--soon {
  cursor: not-allowed;
  opacity: 0.72;
  border-color: rgba(212, 175, 90, 0.15);
  pointer-events: none;
}
.premium-hub-card--locked {
  cursor: pointer;
  pointer-events: auto;
  opacity: 1;
  border-color: rgba(212, 175, 90, 0.35);
}
.premium-hub-card--locked:hover,
.premium-hub-card--locked:focus-visible {
  border-color: rgba(212, 175, 90, 0.65);
  box-shadow: 0 0 40px rgba(212, 175, 90, 0.2), 0 12px 40px rgba(0, 0, 0, 0.4);
}
.premium-hub-card--locked.premium-hub-card--soon {
  opacity: 0.85;
}
.premium-hub-card__lock {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.95rem;
  opacity: 0.75;
  filter: grayscale(0.2);
}
.premium-hub-card__badge--lock {
  margin-top: 0.25rem;
}
.premium-hub-card__badge {
  font-family: var(--font-brand);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(212, 175, 90, 0.45);
  border-radius: 999px;
  background: rgba(212, 175, 90, 0.08);
  text-shadow: 0 0 12px rgba(212, 175, 90, 0.35);
  margin-top: 0.25rem;
}
.premium-hub-card__badge--corner {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  margin-top: 0;
  padding: 0.3rem 0.55rem;
  font-size: 0.46rem;
  letter-spacing: 0.14em;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(212, 175, 90, 0.14), rgba(14, 12, 22, 0.92));
  box-shadow: 0 0 14px rgba(212, 175, 90, 0.18);
  pointer-events: none;
}
.premium-hub-card--coming {
  cursor: pointer;
}

.premium-panel {
  display: none;
  width: 100%;
}
.premium-panel--active {
  display: block;
  animation: premiumFadeIn 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes premiumFadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.btn--premium-back {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  max-width: 520px;
  margin: 2rem auto 0;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: rgba(212, 175, 90, 0.85);
  border: 1px solid rgba(212, 175, 90, 0.35);
  border-radius: 999px;
  font-family: var(--font-brand);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.btn--premium-back:hover,
.btn--premium-back:focus-visible {
  border-color: rgba(212, 175, 90, 0.65);
  color: var(--gold-light);
  box-shadow: 0 0 20px rgba(212, 175, 90, 0.12);
  outline: none;
}

.premium-celtic {
  position: relative;
  width: 100%;
  padding: 0.5rem 1rem 2.5rem;
  overflow: hidden;
}
.premium-celtic__nebula {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background:
    radial-gradient(ellipse 120% 80% at 50% 30%, rgba(20,50,120,0.55), transparent 60%),
    radial-gradient(ellipse 90% 70% at 20% 70%, rgba(61,36,99,0.4), transparent 55%),
    radial-gradient(ellipse 80% 60% at 85% 60%, rgba(212,175,90,0.1), transparent 50%),
    linear-gradient(180deg, #040c22 0%, #060818 40%, #030610 100%);
  border: 1px solid rgba(212,175,90,0.18);
  box-shadow:
    inset 0 0 80px rgba(8,20,60,0.8),
    0 0 60px rgba(212,175,90,0.08);
  pointer-events: none;
}
.premium-celtic__stardust {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background-image:
    radial-gradient(1.5px 1.5px at 15% 25%, rgba(240,221,176,0.7), transparent),
    radial-gradient(1px 1px at 45% 15%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1.5px 1.5px at 72% 35%, rgba(212,175,90,0.6), transparent),
    radial-gradient(1px 1px at 88% 55%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1.5px 1.5px at 25% 65%, rgba(240,221,176,0.55), transparent),
    radial-gradient(1px 1px at 55% 75%, rgba(255,255,255,0.35), transparent),
    radial-gradient(1.5px 1.5px at 80% 85%, rgba(212,175,90,0.5), transparent),
    radial-gradient(1px 1px at 10% 90%, rgba(255,255,255,0.3), transparent);
  opacity: 0.85;
  pointer-events: none;
  animation: stardustShimmer 8s ease-in-out infinite;
}
@keyframes stardustShimmer {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.premium-celtic__header {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 1.5rem 1rem 1rem;
}
.premium-celtic__crown { display: none !important; }
.premium-celtic__eyebrow {
  font-family: var(--font-brand);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.premium-celtic__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  color: var(--gold-light);
  margin: 0.5rem 0 0.35rem;
}
.premium-celtic__subtitle {
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 40ch;
  margin: 0 auto;
}

.celtic-cross-wrap {
  display: none;
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0.5rem 0.75rem 1.5rem;
}
.celtic-cross-wrap:has(.celtic-slot) {
  display: block;
}
.celtic-cross {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.celtic-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.celtic-slot__label {
  order: 2;
  font-family: var(--font-brand);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(212,175,90,0.9);
  text-align: center;
  width: 100%;
  line-height: 1.35;
  text-shadow: 0 0 12px rgba(212,175,90,0.3);
}

.celtic-deck-card {
  order: 1;
  position: relative;
  width: 100%;
  max-width: 148px;
  aspect-ratio: 2 / 3.15;
  perspective: 900px;
  flex-shrink: 0;
}
.celtic-deck-card__halo {
  position: absolute;
  inset: -12px;
  border-radius: 18px;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(212,175,90,0.45), transparent 70%);
  filter: blur(8px);
  transition: opacity 0.4s ease;
}
.celtic-deck-card--glow .celtic-deck-card__halo {
  opacity: 1;
  animation: celticHaloPulse 0.9s ease-out forwards;
}
@keyframes celticHaloPulse {
  0% { opacity: 0; transform: scale(0.85); }
  40% { opacity: 1; transform: scale(1.05); }
  100% { opacity: 0.3; transform: scale(1); }
}

.celtic-deck-card__inner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.85s cubic-bezier(0.4, 0.15, 0.2, 1);
  transform-style: preserve-3d;
}
.celtic-deck-card__inner--flipped {
  transform: rotateY(180deg);
}

.celtic-deck-card__face {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 10px;
  overflow: hidden;
}
.celtic-deck-card__face--front {
  transform: rotateY(180deg);
  border: 2px solid rgba(212,175,90,0.5);
  background: #000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5), 0 0 16px rgba(212,175,90,0.15);
}
.celtic-deck-card__face--front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.celtic-deck-card__face--back .deck-card-back {
  border-radius: 10px;
  border-width: 2px;
}

.celtic-slot--dramatic .celtic-deck-card__face--back .deck-card-back {
  animation: dramaticReveal 2.2s ease-in-out forwards;
}
@keyframes dramaticReveal {
  0%, 100% { filter: brightness(1); }
  30%, 70% { filter: brightness(1.35); box-shadow: 0 0 30px rgba(212,175,90,0.5); }
}

.premium-controls {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  margin: 0 auto 1.25rem;
  scroll-margin-top: 90px;
  background: linear-gradient(160deg, rgba(8,16,40,0.85), rgba(6,8,18,0.95));
  border: 1px solid rgba(212,175,90,0.22);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.tab-view--premium.is-reading .premium-controls,
.tab-view--premium.has-result .premium-controls {
  display: none;
}

.btn--celtic {
  background: linear-gradient(135deg, #e8c86a, var(--gold), #7a5e20);
  color: #1a1008;
  box-shadow: 0 6px 32px rgba(212,175,90,0.4);
  font-family: var(--font-brand);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.btn--celtic:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.oracle--celtic {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 560px;
  margin: 0.75rem auto 0;
  padding: 2.25rem 1.85rem;
  background: linear-gradient(165deg, rgba(13,27,58,0.65), rgba(18,16,28,0.98));
  border: 2px solid rgba(212,175,90,0.4);
  border-radius: 22px;
  box-shadow: 0 0 60px rgba(212,175,90,0.12), 0 12px 40px rgba(0,0,0,0.35);
  scroll-margin-top: 90px;
  cursor: pointer;
  transition: box-shadow 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}
.oracle--celtic .oracle__divider {
  width: 80px;
  height: 1px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.oracle--celtic .oracle__text {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 3.5vw, 1.22rem);
  font-style: normal;
  font-weight: 300;
  line-height: 1.65;
  color: var(--gold-light);
  text-align: left;
  white-space: pre-line;
  text-shadow: 0 0 28px rgba(212,175,90,0.12);
}
.oracle--celtic .oracle__text::first-line {
  color: rgba(240,221,176,0.98);
}
.oracle--celtic:not(.oracle--hidden):hover,
.oracle--celtic:not(.oracle--hidden):focus-visible {
  border-color: rgba(212,175,90,0.65);
  box-shadow: 0 0 48px rgba(212,175,90,0.2), 0 12px 40px rgba(0,0,0,0.35);
  transform: translateY(-2px);
  outline: none;
}
.oracle--celtic__hint {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-brand);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(212,175,90,0.55);
  text-align: center;
}

/* ── ZOOM VÝKLADU (full-screen) ── */
.reading-zoom {
  position: fixed;
  inset: 0;
  z-index: 520;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.reading-zoom--open {
  opacity: 1;
  visibility: visible;
}
.reading-zoom--hidden:not(.reading-zoom--open) {
  pointer-events: none;
}
.reading-zoom__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 4, 12, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.reading-zoom__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: calc(3.5rem + var(--safe-top)) 1.5rem calc(2rem + var(--safe-bottom));
  background: linear-gradient(165deg, rgba(8,16,42,0.98), rgba(6,8,18,0.99));
  border: none;
  border-top: 2px solid rgba(212,175,90,0.45);
  overflow-y: auto;
  animation: readingZoomIn 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes readingZoomIn {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.reading-zoom__close,
.pricing-plan-zoom__close,
.daily-ritual-zoom__close {
  position: fixed;
  top: calc(1.25rem + var(--safe-top));
  right: 1rem;
  z-index: 100;
  min-width: 48px;
  min-height: 48px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-brand);
  font-size: 1.75rem;
  line-height: 1;
  color: var(--gold-light);
  background: rgba(8, 12, 28, 0.94);
  border: 2px solid rgba(212, 175, 90, 0.65);
  border-radius: 50%;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  box-shadow:
    0 0 24px rgba(212, 175, 90, 0.28),
    0 4px 16px rgba(0, 0, 0, 0.45);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.reading-zoom__close:hover,
.reading-zoom__close:focus-visible,
.pricing-plan-zoom__close:hover,
.pricing-plan-zoom__close:focus-visible,
.daily-ritual-zoom__close:hover,
.daily-ritual-zoom__close:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 32px rgba(212, 175, 90, 0.42);
  transform: scale(1.04);
  outline: none;
}
.reading-zoom__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold-light);
  text-align: center;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}
.reading-zoom__text {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 3.5vw, 1.25rem);
  font-style: normal;
  font-weight: 300;
  line-height: 1.65;
  color: var(--gold-light);
  text-align: left;
  white-space: pre-line;
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
  text-shadow: 0 0 28px rgba(212,175,90,0.1);
}

/* ── PREMIUM — Astrologické mapy ── */
.premium-astro {
  position: relative;
  width: 100%;
  padding: 0.5rem 1rem 2.5rem;
  overflow: hidden;
}
.premium-astro__nebula {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background:
    radial-gradient(ellipse 100% 70% at 30% 20%, rgba(40, 60, 140, 0.45), transparent 55%),
    radial-gradient(ellipse 80% 60% at 80% 75%, rgba(61, 36, 99, 0.35), transparent 50%),
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(212, 175, 90, 0.08), transparent 60%),
    linear-gradient(180deg, #050818 0%, #08061a 50%, #030510 100%);
  border: 1px solid rgba(212, 175, 90, 0.18);
  box-shadow: inset 0 0 80px rgba(8, 20, 60, 0.7), 0 0 50px rgba(212, 175, 90, 0.06);
  pointer-events: none;
}
.premium-astro__stardust {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background-image:
    radial-gradient(1.5px 1.5px at 20% 30%, rgba(240, 221, 176, 0.65), transparent),
    radial-gradient(1px 1px at 55% 20%, rgba(255, 255, 255, 0.45), transparent),
    radial-gradient(1.5px 1.5px at 75% 45%, rgba(212, 175, 90, 0.55), transparent),
    radial-gradient(1px 1px at 35% 70%, rgba(255, 255, 255, 0.35), transparent),
    radial-gradient(1.5px 1.5px at 85% 80%, rgba(240, 221, 176, 0.5), transparent);
  opacity: 0.8;
  pointer-events: none;
  animation: stardustShimmer 8s ease-in-out infinite;
}

.premium-astro__header {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 1.5rem 1rem 1.25rem;
}
.premium-astro__symbol { display: none !important; }
.premium-astro__eyebrow {
  font-family: var(--font-brand);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.premium-astro__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  color: var(--gold-light);
  margin: 0.5rem 0 0.35rem;
}
.premium-astro__subtitle {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 44ch;
  margin: 0 auto;
  line-height: 1.65;
}

.astro-form {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  margin: 0 auto 1.5rem;
  padding: 2rem 1.75rem;
  background: linear-gradient(165deg, rgba(10, 18, 45, 0.9), rgba(6, 8, 18, 0.97));
  border: 1px solid rgba(212, 175, 90, 0.28);
  border-radius: 22px;
  box-shadow:
    0 0 40px rgba(212, 175, 90, 0.08),
    inset 0 1px 0 rgba(240, 221, 176, 0.08);
}
#premium-panel-astro.is-reading .astro-form__inputs,
#premium-panel-astro.is-reading .btn--astro,
#premium-panel-astro.has-result .astro-form__inputs,
#premium-panel-astro.has-result .btn--astro {
  display: none;
}
#premium-panel-astro.is-reading .astro-form,
#premium-panel-astro.has-result .astro-form {
  max-width: 360px;
  padding: 1.15rem 1.5rem;
  margin-bottom: 1rem;
}
#premium-panel-astro.is-reading .astro-field--gender,
#premium-panel-astro.has-result .astro-field--gender {
  margin-bottom: 0;
}

.astro-field {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.35rem;
}
.astro-form__inputs .astro-field:last-of-type {
  margin-bottom: 1.35rem;
}
.astro-field--gender {
  margin-bottom: 1.75rem;
}
.astro-gender {
  display: flex;
  gap: 0;
  padding: 0.3rem;
  border-radius: 14px;
  border: 1px solid rgba(123, 94, 167, 0.35);
  background: rgba(4, 6, 16, 0.75);
}
.astro-gender__btn {
  flex: 1;
  font-family: var(--font-brand);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.85rem 1rem;
  border: none;
  border-radius: 11px;
  background: transparent;
  color: rgba(168, 156, 184, 0.7);
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.astro-gender__btn:hover,
.astro-gender__btn:focus-visible {
  color: var(--gold-light);
  outline: none;
}
.astro-gender__btn--active {
  color: #1a1008;
  background: linear-gradient(135deg, #f0ddb0, #d4af5a, #8a6d2a);
  box-shadow: 0 4px 18px rgba(212, 175, 90, 0.35);
}
.astro-field__label {
  font-family: var(--font-brand);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(212, 175, 90, 0.85);
}
.astro-field__input {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(123, 94, 167, 0.35);
  border-radius: 14px;
  background: rgba(4, 6, 16, 0.75);
  color: var(--gold-light);
  width: 100%;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.astro-field__input--date,
.astro-field__input--time {
  color-scheme: dark;
}
.astro-field__input--city {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  letter-spacing: 0.02em;
}
.astro-field__input::placeholder {
  color: rgba(168, 156, 184, 0.55);
  font-style: italic;
}
.astro-field__input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 90, 0.12), 0 0 24px rgba(212, 175, 90, 0.1);
}

.astro-date-parts {
  display: flex;
  gap: 0.65rem;
  width: 100%;
}
.astro-date-part {
  flex: 1;
  min-width: 0;
  text-align: center;
  -moz-appearance: textfield;
  appearance: textfield;
}
.astro-date-part--year {
  flex: 1.6;
}
.astro-date-part::-webkit-inner-spin-button,
.astro-date-part::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.btn--astro {
  background: linear-gradient(135deg, #f0ddb0, #d4af5a, #8a6d2a);
  color: #1a1008;
  box-shadow: 0 8px 36px rgba(212, 175, 90, 0.45);
  font-family: var(--font-brand);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1.2rem 1.75rem;
}
.btn--astro:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.astro-wheel-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 420px;
  margin: 0 auto 1.5rem;
  padding: 1.5rem 0;
  scroll-margin-top: 90px;
}
.astro-wheel-wrap--hidden {
  display: none !important;
}

.astro-wheel-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 90, 0.35), rgba(123, 94, 167, 0.15), transparent 70%);
  filter: blur(32px);
  pointer-events: none;
  opacity: 0.6;
}
.astro-wheel-wrap--spinning .astro-wheel-glow {
  animation: astroGlowPulse 1.5s ease-in-out infinite;
}
.astro-wheel-wrap--stopped .astro-wheel-glow {
  opacity: 0.85;
  animation: astroGlowSettle 1.2s ease-out forwards;
}

.astro-wheel {
  width: min(340px, 85vw);
  height: min(340px, 85vw);
  display: block;
  filter: drop-shadow(0 0 20px rgba(212, 175, 90, 0.35)) drop-shadow(0 8px 32px rgba(0, 0, 0, 0.5));
}
.astro-wheel-wrap--spinning .astro-wheel {
  animation: astroWheelSpin 3s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}
.astro-wheel-wrap--stopped .astro-wheel {
  animation: astroWheelSettle 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes astroWheelSpin {
  0% { transform: rotate(0deg); filter: drop-shadow(0 0 12px rgba(212, 175, 90, 0.3)); }
  50% { filter: drop-shadow(0 0 40px rgba(212, 175, 90, 0.7)) drop-shadow(0 0 60px rgba(240, 221, 176, 0.3)); }
  100% { transform: rotate(1080deg); filter: drop-shadow(0 0 28px rgba(212, 175, 90, 0.55)); }
}
@keyframes astroWheelSettle {
  from { transform: rotate(1080deg) scale(1.02); }
  to { transform: rotate(1080deg) scale(1); }
}
@keyframes astroGlowPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.15); opacity: 0.9; }
}
@keyframes astroGlowSettle {
  from { transform: scale(1.1); opacity: 0.9; }
  to { transform: scale(1); opacity: 0.7; }
}

.astro-wheel__houses {
  transition: font-size 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.astro-wheel__houses text {
  transition:
    fill 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.8s ease;
}
.astro-wheel__houses--finale {
  font-size: 14.5px !important;
}
.astro-wheel__houses--finale text {
  fill: #FFD700;
  filter: url(#ZlotaZareFilter);
}

.astro-wheel__stars {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
}
.astro-wheel-wrap--stopped .astro-wheel__stars {
  opacity: 1;
}
.astro-wheel-star {
  fill: rgba(255, 255, 255, 1);
  opacity: 0;
}
.astro-wheel-star--gold {
  fill: rgba(255, 215, 0, 1);
}
.astro-wheel-star--fall {
  animation: astroWheelStarFall var(--fall-dur, 9s) linear forwards;
  animation-delay: var(--fall-delay, 0s);
}
@keyframes astroWheelStarFall {
  0% { transform: translateY(0); opacity: 0; }
  8% { opacity: 1; }
  82% { opacity: 1; }
  100% { transform: translateY(420px) translateX(var(--drift, 5px)); opacity: 0; }
}

.oracle--astro {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 2.25rem 1.85rem;
  background: linear-gradient(165deg, rgba(13, 27, 58, 0.7), rgba(18, 16, 28, 0.98));
  border: 2px solid rgba(212, 175, 90, 0.45);
  border-radius: 22px;
  box-shadow: 0 0 70px rgba(212, 175, 90, 0.15), 0 12px 40px rgba(0, 0, 0, 0.35);
  scroll-margin-top: 90px;
}
.oracle--astro__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  color: var(--gold-light);
  text-align: center;
  margin-bottom: 0.25rem;
  text-shadow: 0 0 28px rgba(212, 175, 90, 0.2);
}
.oracle--astro .oracle__text {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 3.5vw, 1.22rem);
  font-style: normal;
  font-weight: 300;
  line-height: 1.65;
  color: var(--gold-light);
  text-align: left;
  white-space: pre-line;
  text-shadow: 0 0 28px rgba(212, 175, 90, 0.1);
}
.oracle--astro .oracle__text::first-line {
  color: rgba(240, 221, 176, 0.98);
}

@media (min-width: 700px) {
  .celtic-cross {
    grid-template-columns: repeat(5, 1fr);
    max-width: 820px;
    gap: 15px;
  }
  .celtic-deck-card {
    max-width: 132px;
  }
}

/* ── Denní rituál hojnosti ── */
.daily-ritual {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 720px;
  margin: 1.75rem auto 0;
  padding: 1.5rem 1.35rem;
  background: linear-gradient(165deg, rgba(10, 18, 45, 0.88), rgba(6, 8, 18, 0.96));
  border: 1px solid rgba(212, 175, 90, 0.32);
  border-radius: 20px;
  box-shadow: 0 0 36px rgba(212, 175, 90, 0.08);
  text-align: center;
}
.daily-ritual--expandable {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}
.daily-ritual--expandable:hover,
.daily-ritual--expandable:focus-visible {
  border-color: rgba(212, 175, 90, 0.55);
  box-shadow: 0 0 48px rgba(212, 175, 90, 0.16), 0 12px 40px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px);
  outline: none;
}
.daily-ritual__title {
  font-family: var(--font-brand);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.85rem;
}
.daily-ritual__text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(248, 244, 236, 0.92);
}
.daily-ritual__hint {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-brand);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(212, 175, 90, 0.55);
}
.daily-ritual__preview {
  position: relative;
  margin-bottom: 1.1rem;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition: opacity 0.3s ease;
}
.daily-ritual__preview:hover,
.daily-ritual__preview:focus-visible {
  opacity: 0.92;
  outline: none;
}
.daily-ritual__preview::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2.75rem;
  background: linear-gradient(to bottom, rgba(6, 8, 18, 0), rgba(6, 8, 18, 0.97));
  pointer-events: none;
}
.daily-ritual__open {
  width: auto;
  min-width: 160px;
  padding: 0.75rem 1.75rem;
  background: transparent;
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 90, 0.5);
  font-family: var(--font-brand);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(212, 175, 90, 0.1);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.daily-ritual__open:hover,
.daily-ritual__open:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 28px rgba(212, 175, 90, 0.24);
  transform: translateY(-1px);
  outline: none;
}

/* ── MODAL — Profil & GDPR ── */
.profile-modal {
  position: fixed;
  inset: 0;
  z-index: 535;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(1.25rem + var(--safe-top)) 1.25rem calc(1.25rem + var(--safe-bottom));
}
.profile-modal.modal--hidden { display: none !important; }
.profile-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 4, 12, 0.84);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.profile-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
  max-height: calc(100vh - 2.5rem - var(--safe-top) - var(--safe-bottom));
  padding: 2.25rem 1.75rem 1.75rem;
  background: linear-gradient(165deg, rgba(10, 14, 28, 0.97), rgba(6, 8, 18, 0.99));
  border: 1px solid rgba(212, 175, 90, 0.38);
  border-radius: 22px;
  box-shadow:
    0 0 48px rgba(212, 175, 90, 0.12),
    0 24px 64px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(240, 221, 176, 0.06);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  animation: readingZoomIn 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
.profile-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  line-height: 1;
  color: rgba(212, 175, 90, 0.75);
  background: rgba(14, 12, 22, 0.6);
  border: 1px solid rgba(212, 175, 90, 0.28);
  border-radius: 50%;
  cursor: pointer;
  transition: color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.profile-modal__close:hover,
.profile-modal__close:focus-visible {
  color: var(--gold-light);
  border-color: rgba(212, 175, 90, 0.55);
  box-shadow: 0 0 20px rgba(212, 175, 90, 0.2);
  outline: none;
}
.profile-modal__eyebrow {
  font-family: var(--font-brand);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(212, 175, 90, 0.72);
  text-align: center;
  margin: 0 0 0.5rem;
}
.profile-modal__title {
  font-family: var(--font-brand);
  font-size: clamp(0.82rem, 3vw, 0.98rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-align: center;
  margin: 0 0 1.75rem;
  text-shadow: 0 0 24px rgba(212, 175, 90, 0.2);
}
.profile-modal__body {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}
.profile-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
}
#profileNameInput {
  max-width: 100%;
}
.profile-field__label {
  font-family: var(--font-brand);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(212, 175, 90, 0.85);
}
.profile-field__input {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 0.75rem 1rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text);
  background: rgba(8, 6, 14, 0.72);
  border: 1px solid rgba(212, 175, 90, 0.28);
  border-radius: 12px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.profile-field__input::placeholder {
  color: rgba(168, 156, 184, 0.55);
  font-style: italic;
}
.profile-field__input:focus {
  outline: none;
  border-color: rgba(212, 175, 90, 0.55);
  box-shadow: 0 0 20px rgba(212, 175, 90, 0.12);
}
.profile-alerts {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.profile-alerts__ios {
  background: rgba(8, 6, 14, 0.45);
  border: 1px solid rgba(212, 175, 90, 0.16);
  border-radius: 12px;
  overflow: hidden;
}
.profile-alerts__ios-summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 0.72rem 0.95rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(168, 156, 184, 0.88);
  transition: color 0.2s ease, background 0.2s ease;
}
.profile-alerts__ios-summary::-webkit-details-marker { display: none; }
.profile-alerts__ios-summary::marker { content: ''; }
.profile-alerts__ios-summary:hover,
.profile-alerts__ios-summary:focus-visible {
  color: rgba(240, 221, 176, 0.92);
  background: rgba(212, 175, 90, 0.04);
  outline: none;
}
.profile-alerts__ios-label {
  min-width: 0;
}
.profile-alerts__ios-chevron {
  flex-shrink: 0;
  font-size: 0.75rem;
  color: rgba(212, 175, 90, 0.55);
  transition: transform 0.25s ease;
}
.profile-alerts__ios[open] .profile-alerts__ios-chevron { transform: rotate(180deg); }
.profile-alerts__ios[open] .profile-alerts__ios-summary {
  border-bottom: 1px solid rgba(212, 175, 90, 0.12);
}
.profile-alerts__ios-body {
  padding: 0.75rem 0.95rem 0.9rem;
}
.profile-alerts__ios-body p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(168, 156, 184, 0.78);
}
.profile-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  background: rgba(8, 6, 14, 0.55);
  border: 1px solid rgba(212, 175, 90, 0.2);
  border-radius: 14px;
}
.profile-toggle-row__text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
}
.profile-toggle-row__label {
  font-family: var(--font-brand);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.profile-toggle-row__desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(168, 156, 184, 0.9);
}
.profile-toggle {
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
}
.profile-toggle__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.profile-toggle__track {
  position: relative;
  display: block;
  width: 2.75rem;
  height: 1.5rem;
  background: rgba(30, 24, 42, 0.9);
  border: 1px solid rgba(212, 175, 90, 0.25);
  border-radius: 999px;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.profile-toggle__thumb {
  position: absolute;
  top: 0.2rem;
  left: 0.2rem;
  width: 1.05rem;
  height: 1.05rem;
  background: rgba(168, 156, 184, 0.75);
  border-radius: 50%;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.profile-toggle__input:checked + .profile-toggle__track {
  background: rgba(212, 175, 90, 0.18);
  border-color: rgba(212, 175, 90, 0.55);
  box-shadow: 0 0 16px rgba(212, 175, 90, 0.2);
}
.profile-toggle__input:checked + .profile-toggle__track .profile-toggle__thumb {
  transform: translateX(1.25rem);
  background: var(--gold-light);
  box-shadow: 0 0 10px rgba(212, 175, 90, 0.45);
}
.profile-toggle__input:focus-visible + .profile-toggle__track {
  outline: 2px solid rgba(212, 175, 90, 0.45);
  outline-offset: 2px;
}
.btn--profile-delete {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.8rem 1.25rem;
  font-family: var(--font-brand);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, rgba(180, 45, 55, 0.95), rgba(140, 28, 38, 0.98));
  border: 1px solid rgba(220, 80, 90, 0.55);
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(140, 28, 38, 0.35);
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.btn--profile-delete:hover,
.btn--profile-delete:focus-visible {
  background: linear-gradient(135deg, rgba(200, 55, 65, 1), rgba(160, 35, 45, 1));
  box-shadow: 0 6px 28px rgba(180, 40, 50, 0.45);
  transform: translateY(-1px);
  outline: none;
}
.btn--profile-restore {
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.8rem 1.25rem;
  font-family: var(--font-brand);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: transparent;
  border: 1px solid rgba(212, 175, 90, 0.45);
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}
.btn--profile-restore:hover,
.btn--profile-restore:focus-visible {
  color: #fff;
  border-color: var(--gold);
  background: rgba(212, 175, 90, 0.08);
  outline: none;
}

/* ── MODAL — Moderní snář (coming soon) ── */
.dream-modal {
  position: fixed;
  inset: 0;
  z-index: 530;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(1.25rem + var(--safe-top)) 1.25rem calc(1.25rem + var(--safe-bottom));
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.42s ease, visibility 0.42s ease;
}
.dream-modal--open {
  opacity: 1;
  visibility: visible;
}
.dream-modal--hidden:not(.dream-modal--open) {
  pointer-events: none;
}
.dream-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 4, 12, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.dream-modal__stars {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.dream-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  max-height: calc(100vh - 2.5rem - var(--safe-top) - var(--safe-bottom));
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 2rem 2rem;
  background: linear-gradient(165deg, rgba(10, 14, 28, 0.97), rgba(6, 8, 18, 0.99));
  border: 1px solid rgba(212, 175, 90, 0.42);
  border-radius: 22px;
  box-shadow:
    0 0 48px rgba(212, 175, 90, 0.14),
    0 24px 64px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(240, 221, 176, 0.06);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  animation: readingZoomIn 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.dream-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  line-height: 1;
  color: rgba(212, 175, 90, 0.75);
  background: rgba(14, 12, 22, 0.6);
  border: 1px solid rgba(212, 175, 90, 0.28);
  border-radius: 50%;
  cursor: pointer;
  transition: color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.dream-modal__close:hover,
.dream-modal__close:focus-visible {
  color: var(--gold-light);
  border-color: rgba(212, 175, 90, 0.55);
  box-shadow: 0 0 20px rgba(212, 175, 90, 0.2);
  outline: none;
}
.dream-modal__title {
  font-family: var(--font-brand);
  font-size: clamp(0.82rem, 3vw, 0.98rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-align: center;
  margin: 0 0 1.5rem;
  text-shadow: 0 0 24px rgba(212, 175, 90, 0.22);
}
.dream-modal__text {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 3.6vw, 1.28rem);
  font-style: normal;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(240, 221, 176, 0.92);
  text-align: center;
  margin: 0;
  text-shadow: 0 0 20px rgba(212, 175, 90, 0.1);
}
.dream-modal__dismiss {
  width: auto;
  min-width: 180px;
  margin-top: 1.75rem;
  padding: 0.8rem 1.75rem;
  background: transparent;
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 90, 0.55);
  font-family: var(--font-brand);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 0 24px rgba(212, 175, 90, 0.12);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}
.dream-modal__dismiss:hover,
.dream-modal__dismiss:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 32px rgba(212, 175, 90, 0.28);
  transform: translateY(-1px);
  outline: none;
}

/* ── Zlatá 79. karta (kosmický epic modal) ── */
.body--gold-card-modal { overflow: hidden; }
.gold-card-modal[hidden] {
  display: none !important;
}
.gold-card-modal {
  position: fixed;
  inset: 0;
  z-index: 560;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.gold-card-modal--open {
  opacity: 1;
  visibility: visible;
}
.gold-card-modal--closing {
  opacity: 0;
  visibility: hidden;
}
.gold-card-modal__backdrop {
  position: absolute;
  inset: 0;
  background: #000000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.gold-card-modal--cosmic .gold-card-modal__backdrop {
  background: #000000;
}
.gold-card-modal__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}
.gold-card-modal__stage {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gold-card-modal__card-scene {
  position: relative;
  perspective: 1800px;
  transform: translateZ(0);
  width: min(94vw, calc(90vh * 0.6667));
  height: min(90vh, calc(94vw * 1.5));
}
.gold-card-modal__cosmic-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.gold-card-modal--cosmic .gold-card-modal__cosmic-glow {
  opacity: 1;
}
.gold-card-modal__cosmic-glow--core {
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(255, 244, 210, 0.95) 0%, rgba(255, 220, 150, 0.62) 28%, rgba(212, 175, 90, 0.28) 52%, transparent 72%);
  filter: blur(18px);
  animation: gold-cosmic-core 2.4s ease-in-out infinite;
}
.gold-card-modal__cosmic-glow--halo {
  width: 280%;
  height: 280%;
  background: radial-gradient(circle, rgba(255, 236, 180, 0.55) 0%, rgba(240, 221, 176, 0.28) 38%, rgba(212, 175, 90, 0.12) 58%, transparent 78%);
  filter: blur(36px);
  animation: gold-cosmic-halo 3.6s ease-in-out infinite;
}
@keyframes gold-cosmic-core {
  0%, 100% { transform: translate3d(-50%, -50%, 0) scale(0.92); opacity: 0.75; }
  50% { transform: translate3d(-50%, -50%, 0) scale(1.08); opacity: 1; }
}
@keyframes gold-cosmic-halo {
  0%, 100% { transform: translate3d(-50%, -50%, 0) scale(0.96); opacity: 0.55; }
  50% { transform: translate3d(-50%, -50%, 0) scale(1.14); opacity: 0.95; }
}
.gold-card-modal__card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform: translate3d(0, 0, 0);
  transition: transform 2.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
  z-index: 2;
}
.gold-card-modal__card-inner--flipped {
  transform: rotateY(180deg) translate3d(0, 0, 0);
}
.gold-card-modal__card-face {
  position: absolute;
  inset: 0;
  border-radius: clamp(18px, 3vw, 28px);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translate3d(0, 0, 1px);
  will-change: transform;
  overflow: hidden;
}
.gold-card-modal__card-face--front {
  overflow: hidden;
  border-radius: 24px;
  transform: rotateY(0deg) translate3d(0, 0, 1px);
}
.gold-card-modal__card-face--front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  animation: bleskovyVesmirnyPuls 1.2s ease-in-out infinite alternate;
}
@keyframes bleskovyVesmirnyPuls {
  0% {
    transform: scale(1.05);
    filter: brightness(0.8) saturate(1);
  }
  30% {
    transform: scale(1.18);
    filter: brightness(1.8) saturate(1.8) contrast(1.3);
  }
  60% {
    transform: scale(1.08);
    filter: brightness(1.1) saturate(1.2);
  }
  100% {
    transform: scale(1.15);
    filter: brightness(1.5) saturate(1.5);
  }
}
.gold-card-modal__card-inner--charge-flash .gold-card-modal__card-face--front {
  animation:
    gold-card-cosmic-flash 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards,
    gold-card-glow-epic 1.35s ease-in-out infinite;
}
.gold-card-modal__card-inner--glow .gold-card-modal__card-face--front {
  animation: gold-card-glow-epic 2.4s ease-in-out infinite;
}
@keyframes gold-card-cosmic-flash {
  0% {
    filter: brightness(2.8) saturate(1.6);
    box-shadow:
      0 0 180px rgba(255, 248, 230, 0.98),
      0 0 360px rgba(255, 228, 160, 0.9),
      0 0 620px rgba(255, 210, 120, 0.72),
      0 0 900px rgba(212, 175, 90, 0.48),
      inset 0 0 80px rgba(255, 248, 220, 0.4);
  }
  35% {
    filter: brightness(4.8) saturate(1.75);
    box-shadow:
      0 0 240px rgba(255, 244, 210, 1),
      0 0 480px rgba(255, 230, 160, 0.92),
      0 0 840px rgba(212, 175, 90, 0.72),
      0 0 1200px rgba(212, 175, 90, 0.42),
      inset 0 0 120px rgba(255, 248, 220, 0.55);
  }
  100% {
    filter: brightness(1.65) saturate(1.3);
    box-shadow:
      0 0 150px rgba(255, 236, 180, 0.98),
      0 0 330px rgba(255, 220, 140, 0.88),
      0 0 600px rgba(212, 175, 90, 0.72),
      0 0 900px rgba(212, 175, 90, 0.45),
      0 24px 60px rgba(0, 0, 0, 0.55);
  }
}
@keyframes gold-card-glow-epic {
  0%, 100% {
    box-shadow:
      0 0 126px rgba(255, 236, 180, 0.98),
      0 0 285px rgba(255, 220, 150, 0.9),
      0 0 540px rgba(212, 175, 90, 0.72),
      0 0 780px rgba(212, 175, 90, 0.42),
      0 20px 55px rgba(0, 0, 0, 0.5);
  }
  50% {
    box-shadow:
      0 0 204px rgba(255, 248, 220, 1),
      0 0 420px rgba(255, 235, 180, 0.98),
      0 0 780px rgba(240, 221, 176, 0.88),
      0 0 1100px rgba(212, 175, 90, 0.58),
      0 28px 70px rgba(0, 0, 0, 0.55);
  }
}
.gold-card-modal__card-face--back {
  border-radius: 24px;
  overflow: hidden;
  transform: rotateY(180deg) translate3d(0, 0, 1px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 5vw, 2.5rem) clamp(1.2rem, 4vw, 2rem);
  box-shadow:
    0 0 60px rgba(255, 236, 180, 0.55),
    0 0 120px rgba(212, 175, 90, 0.35),
    0 24px 64px rgba(0, 0, 0, 0.55);
}
.gold-card-modal__card-face--back::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/img/gold-card-back.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 24px;
  overflow: hidden;
  transform: scale(1.05); /* Skryje černé okraje */
  z-index: 0;
}
.gold-card-modal__card-inner--radiant .gold-card-modal__card-face--back {
  animation: gold-card-back-shine 3.2s ease-in-out infinite;
}
@keyframes gold-card-back-shine {
  0%, 100% {
    filter: brightness(1.18) saturate(1.25) contrast(1.05);
    box-shadow:
      0 0 70px rgba(255, 244, 210, 0.7),
      0 0 140px rgba(212, 175, 90, 0.45),
      0 28px 72px rgba(0, 0, 0, 0.5);
  }
  50% {
    filter: brightness(1.38) saturate(1.4) contrast(1.08);
    box-shadow:
      0 0 95px rgba(255, 248, 230, 0.95),
      0 0 190px rgba(240, 221, 176, 0.6),
      0 32px 80px rgba(0, 0, 0, 0.52);
  }
}
.gold-card-modal__back-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  pointer-events: none;
}
.gold-card-modal__back-panel--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.gold-card-modal__back-panel--hidden {
  display: none;
}
.gold-card-modal__back-title {
  font-family: var(--font-brand);
  font-size: clamp(1.45rem, 6.8vw, 2.05rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.24;
  color: #010814;
  margin: 0 0 1.05rem;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.35),
    0 0 1px rgba(255, 255, 255, 0.15);
}
.gold-card-modal__back-text {
  font-family: var(--font-body);
  font-size: clamp(1.08rem, 4.8vw, 1.32rem);
  line-height: 1.52;
  font-weight: 700;
  color: #02101c;
  margin: 0 0 1.45rem;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.32),
    0 0 1px rgba(255, 255, 255, 0.12);
}
.gold-card-modal__back-message {
  width: 100%;
  max-width: min(92%, 22rem);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  letter-spacing: 0.015em;
  color: #0a1520;
}
.btn--gold-card {
  width: 100%;
  max-width: 100%;
  align-self: center;
  font-family: var(--font-brand);
  font-size: clamp(0.82rem, 3.4vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  min-height: 48px;
  touch-action: manipulation;
  padding: clamp(1rem, 3.6vw, 1.2rem) 1.25rem;
  background: linear-gradient(135deg, #fff4dc, #f0ddb0 35%, #d4af5a 100%);
  color: #120a04;
  border: 1px solid rgba(18, 10, 4, 0.22);
  border-radius: 999px;
  cursor: pointer;
  box-shadow:
    0 8px 24px rgba(18, 10, 4, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.btn--gold-card-on-back:hover,
.btn--gold-card-on-back:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 12px 32px rgba(18, 10, 4, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}
@media (min-width: 769px) {
  .gold-card-modal__card-scene {
    width: min(52vw, calc(82vh * 0.6667));
    height: min(82vh, calc(52vw * 1.5));
  }
}
@media (prefers-reduced-motion: reduce) {
  .gold-card-modal__card-inner {
    transition-duration: 0.01ms;
  }
  .gold-card-modal__card-inner--charge-flash .gold-card-modal__card-face--front,
  .gold-card-modal__card-inner--glow .gold-card-modal__card-face--front,
  .gold-card-modal__card-inner--radiant .gold-card-modal__card-face--back,
  .gold-card-modal__cosmic-glow--core,
  .gold-card-modal__cosmic-glow--halo,
  .gold-card-modal__card-face--front img {
    animation: none !important;
  }
  .gold-card-modal__card-face--front img {
    transform: scale(1.05);
  }
}
.landing-footer__test-gold {
  display: block;
  width: 100%;
  margin: 1.25rem auto 0;
  padding: 0.35rem 0.5rem;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: rgba(212, 175, 90, 0.45);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color 0.2s ease;
}
.landing-footer__test-gold:hover,
.landing-footer__test-gold:focus-visible {
  color: rgba(212, 175, 90, 0.75);
}

/* ── Zlatá karta kosmického rituálu (full-screen) ── */
.cosmic-ritual-card {
  position: fixed;
  inset: 0;
  z-index: 540;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.48s ease, visibility 0.48s ease;
}
.cosmic-ritual-card--open {
  opacity: 1;
  visibility: visible;
}
.cosmic-ritual-card--hidden:not(.cosmic-ritual-card--open) {
  pointer-events: none;
}
.cosmic-ritual-card__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 4, 12, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.cosmic-ritual-card__glow {
  position: absolute;
  inset: 8px;
  border-radius: 20px;
  pointer-events: none;
  box-shadow:
    0 0 48px rgba(212, 175, 90, 0.55),
    0 0 96px rgba(212, 175, 90, 0.28),
    inset 0 0 80px rgba(212, 175, 90, 0.12);
  border: 2px solid rgba(212, 175, 90, 0.65);
  animation: cosmicRitualGlow 3.2s ease-in-out infinite alternate;
}
@keyframes cosmicRitualGlow {
  from {
    box-shadow:
      0 0 36px rgba(212, 175, 90, 0.45),
      0 0 72px rgba(212, 175, 90, 0.22),
      inset 0 0 60px rgba(212, 175, 90, 0.1);
    border-color: rgba(212, 175, 90, 0.5);
  }
  to {
    box-shadow:
      0 0 64px rgba(255, 215, 120, 0.65),
      0 0 120px rgba(212, 175, 90, 0.38),
      inset 0 0 100px rgba(212, 175, 90, 0.18);
    border-color: rgba(255, 221, 140, 0.85);
  }
}
.cosmic-ritual-card__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: calc(4.5rem + var(--safe-top)) 1.75rem calc(2.5rem + var(--safe-bottom));
  margin: 12px;
  background:
    radial-gradient(ellipse 120% 80% at 50% 0%, rgba(40, 32, 12, 0.45), transparent 55%),
    linear-gradient(165deg, rgba(12, 10, 6, 0.98), rgba(6, 8, 18, 0.99));
  border: 3px solid rgba(212, 175, 90, 0.75);
  border-radius: 18px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  animation: readingZoomIn 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow:
    inset 0 0 48px rgba(212, 175, 90, 0.14),
    0 0 40px rgba(212, 175, 90, 0.2);
}
.cosmic-ritual-card__close {
  position: fixed;
  top: calc(1.25rem + var(--safe-top));
  right: 1rem;
  z-index: 100;
  min-width: 48px;
  min-height: 48px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-brand);
  font-size: 1.75rem;
  line-height: 1;
  color: var(--gold-light);
  background: rgba(12, 10, 6, 0.94);
  border: 2px solid rgba(212, 175, 90, 0.75);
  border-radius: 50%;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  box-shadow:
    0 0 28px rgba(212, 175, 90, 0.35),
    0 4px 16px rgba(0, 0, 0, 0.45);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.cosmic-ritual-card__close:hover,
.cosmic-ritual-card__close:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 36px rgba(212, 175, 90, 0.5);
  transform: scale(1.04);
  outline: none;
}
.cosmic-ritual-card__title {
  font-family: var(--font-brand);
  font-size: clamp(1rem, 4.2vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 2rem;
  flex-shrink: 0;
  text-shadow: 0 0 32px rgba(212, 175, 90, 0.45);
}
.cosmic-ritual-card__text {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 3.5vw, 1.35rem);
  font-style: normal;
  font-weight: 300;
  line-height: 1.65;
  color: var(--gold-light);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
  flex: 1 1 auto;
  text-shadow: 0 0 24px rgba(212, 175, 90, 0.15);
}
.cosmic-ritual-card__dismiss {
  width: auto;
  min-width: 200px;
  margin-top: 2rem;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 90, 0.65);
  font-family: var(--font-brand);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 0 28px rgba(212, 175, 90, 0.18);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}
.cosmic-ritual-card__dismiss:hover,
.cosmic-ritual-card__dismiss:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 36px rgba(212, 175, 90, 0.35);
  transform: translateY(-1px);
  outline: none;
}
.btn--profile-test {
  width: 100%;
  margin-top: 1rem;
  padding: 0.65rem 1rem;
  background: transparent;
  color: rgba(212, 175, 90, 0.55);
  border: 1px dashed rgba(212, 175, 90, 0.35);
  font-family: var(--font-brand);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: none;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.btn--profile-test:hover,
.btn--profile-test:focus-visible {
  color: var(--gold-light);
  border-color: rgba(212, 175, 90, 0.6);
  outline: none;
}

/* ── ZOOM — Rituál hojnosti (full-screen) ── */
.daily-ritual-zoom {
  position: fixed;
  inset: 0;
  z-index: 520;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.42s ease, visibility 0.42s ease;
}
.daily-ritual-zoom--open {
  opacity: 1;
  visibility: visible;
}
.daily-ritual-zoom--hidden:not(.daily-ritual-zoom--open) {
  pointer-events: none;
}
.daily-ritual-zoom__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 4, 12, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.daily-ritual-zoom__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: calc(4.5rem + var(--safe-top)) 1.5rem calc(2.5rem + var(--safe-bottom));
  background: linear-gradient(165deg, rgba(8, 16, 42, 0.98), rgba(6, 8, 18, 0.99));
  border: none;
  border-top: 2px solid rgba(212, 175, 90, 0.45);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  animation: readingZoomIn 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.daily-ritual-zoom__title {
  font-family: var(--font-brand);
  font-size: clamp(0.85rem, 3vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-align: center;
  margin-bottom: 2rem;
  flex-shrink: 0;
  text-shadow: 0 0 28px rgba(212, 175, 90, 0.2);
}
.daily-ritual-zoom__text {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 3.5vw, 1.35rem);
  font-style: normal;
  font-weight: 300;
  line-height: 1.65;
  color: var(--gold-light);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
  flex: 1 1 auto;
  text-shadow: 0 0 28px rgba(212, 175, 90, 0.12);
}
.daily-ritual-zoom__dismiss {
  width: auto;
  min-width: 200px;
  margin-top: 2rem;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 90, 0.55);
  font-family: var(--font-brand);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 0 24px rgba(212, 175, 90, 0.12);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}
.daily-ritual-zoom__dismiss:hover,
.daily-ritual-zoom__dismiss:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 32px rgba(212, 175, 90, 0.28);
  transform: translateY(-1px);
  outline: none;
}

/* ── Horoskopy ── */
.premium-horoscope {
  position: relative;
  width: 100%;
  padding: 0.5rem 1rem 2.5rem;
  overflow: hidden;
}
.premium-horoscope__nebula {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background:
    radial-gradient(ellipse 100% 70% at 40% 20%, rgba(30, 70, 150, 0.45), transparent 55%),
    radial-gradient(ellipse 80% 60% at 80% 75%, rgba(61, 36, 99, 0.35), transparent 50%),
    linear-gradient(180deg, #050818 0%, #08061a 50%, #030510 100%);
  border: 1px solid rgba(212, 175, 90, 0.18);
  box-shadow: inset 0 0 80px rgba(8, 20, 60, 0.7);
  pointer-events: none;
}
.premium-horoscope__stardust {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background-image: radial-gradient(1px 1px at 20% 30%, rgba(240, 221, 176, 0.35), transparent),
    radial-gradient(1px 1px at 70% 60%, rgba(212, 175, 90, 0.25), transparent),
    radial-gradient(1px 1px at 45% 80%, rgba(240, 221, 176, 0.2), transparent);
  pointer-events: none;
}
.premium-horoscope__header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 1.5rem;
}
.premium-horoscope__eyebrow {
  font-family: var(--font-brand);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(212, 175, 90, 0.72);
  margin: 0 0 0.5rem;
}
.premium-horoscope__title {
  font-family: var(--font-brand);
  font-size: clamp(1rem, 4vw, 1.25rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 0.65rem;
}
.premium-horoscope__subtitle {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(240, 221, 176, 0.72);
  max-width: 520px;
  margin: 0 auto;
}
.horoscope-signs {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.55rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0.65rem 0.25rem 0.85rem;
  margin: 0 -0.25rem 1rem;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 175, 90, 0.35) transparent;
}
.horoscope-signs::-webkit-scrollbar {
  height: 4px;
}
.horoscope-signs::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 90, 0.35);
  border-radius: 4px;
}
.horoscope-sign {
  flex: 0 0 auto;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  min-width: 4.25rem;
  padding: 0.55rem 0.45rem 0.5rem;
  background: rgba(8, 12, 28, 0.72);
  border: 1.5px solid rgba(212, 175, 90, 0.28);
  border-radius: 14px;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease, background 0.28s ease;
}
.horoscope-sign:hover,
.horoscope-sign:focus-visible {
  border-color: rgba(212, 175, 90, 0.55);
  outline: none;
  transform: translateY(-1px);
}
.horoscope-sign--active {
  border-color: var(--gold);
  background: rgba(20, 16, 8, 0.88);
  box-shadow: 0 0 20px var(--gold-glow), 0 0 36px rgba(212, 175, 90, 0.22);
  transform: translateY(-2px);
}
.horoscope-sign__icon {
  font-family: var(--font-brand);
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1;
  color: var(--gold);
  text-shadow: 0 0 14px var(--gold-glow), 0 0 28px rgba(212, 175, 90, 0.22);
}
.horoscope-sign--active .horoscope-sign__icon {
  color: var(--gold-light);
  text-shadow: 0 0 20px var(--gold-glow), 0 0 36px rgba(212, 175, 90, 0.35);
}
.horoscope-sign__name {
  font-family: var(--font-brand);
  font-size: 0.48rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(240, 221, 176, 0.65);
  text-align: center;
  line-height: 1.2;
  max-width: 4rem;
}
.horoscope-sign--active .horoscope-sign__name {
  color: var(--gold-light);
}
.horoscope-lunar-ritual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin: 0.15rem 0 1.15rem;
  padding: 0 0.25rem;
}
.horoscope-lunar-ritual__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 3rem;
  padding: 0.85rem 1.65rem;
  font-family: var(--font-brand);
  font-size: clamp(0.62rem, 2.8vw, 0.72rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  background:
    radial-gradient(ellipse 120% 100% at 50% 0%, rgba(255, 221, 140, 0.18), transparent 55%),
    linear-gradient(165deg, rgba(28, 22, 8, 0.95), rgba(10, 12, 28, 0.92));
  border: 1.5px solid rgba(212, 175, 90, 0.72);
  border-radius: 999px;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  box-shadow:
    0 0 22px rgba(212, 175, 90, 0.35),
    0 0 44px rgba(212, 175, 90, 0.18),
    inset 0 0 24px rgba(212, 175, 90, 0.08);
  text-shadow: 0 0 14px rgba(212, 175, 90, 0.35);
  animation: horoscopeLunarBtnGlow 3s ease-in-out infinite alternate;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, color 0.28s ease;
}
@keyframes horoscopeLunarBtnGlow {
  from {
    box-shadow:
      0 0 18px rgba(212, 175, 90, 0.28),
      0 0 36px rgba(212, 175, 90, 0.14),
      inset 0 0 20px rgba(212, 175, 90, 0.06);
    border-color: rgba(212, 175, 90, 0.58);
  }
  to {
    box-shadow:
      0 0 32px rgba(255, 215, 120, 0.48),
      0 0 64px rgba(212, 175, 90, 0.28),
      inset 0 0 32px rgba(212, 175, 90, 0.12);
    border-color: rgba(255, 221, 140, 0.88);
  }
}
.horoscope-lunar-ritual__btn:hover,
.horoscope-lunar-ritual__btn:focus-visible {
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
  outline: none;
}
.horoscope-periods {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.horoscope-period {
  min-width: 0;
  flex: 1 1 0;
  padding: 0.7rem 0.45rem;
  font-family: var(--font-brand);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240, 221, 176, 0.7);
  background: rgba(8, 12, 28, 0.65);
  border: 1px solid rgba(212, 175, 90, 0.3);
  border-radius: 999px;
  cursor: pointer;
  touch-action: manipulation;
  transition: color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}
.horoscope-period:hover,
.horoscope-period:focus-visible {
  border-color: rgba(212, 175, 90, 0.55);
  color: var(--gold-light);
  outline: none;
}
.horoscope-period--active {
  color: var(--gold-light);
  border-color: var(--gold);
  background: rgba(20, 16, 8, 0.82);
  box-shadow: 0 0 18px var(--gold-glow);
}
.oracle--horoscope {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 560px;
  margin: 0.75rem auto 0;
  scroll-margin-top: 90px;
}
.oracle--horoscope__title {
  font-family: var(--font-brand);
  font-size: clamp(0.78rem, 3vw, 0.92rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-align: center;
  margin-bottom: 0.5rem;
}
.oracle--horoscope .oracle__text {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 3.2vw, 1.15rem);
  font-style: normal;
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: 0.01em;
  color: rgba(248, 244, 236, 0.92);
  text-align: left;
  white-space: pre-line;
  max-width: 42rem;
  margin: 0 auto;
}
.profile-field--gender {
  gap: 0.55rem;
}
.profile-daily-message {
  margin: 1.1rem 0 1.25rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(212, 175, 90, 0.22);
  border-radius: 14px;
  background: rgba(212, 175, 90, 0.04);
}
.profile-daily-message__title {
  margin: 0 0 0.55rem;
  font-family: var(--font-brand);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  line-height: 1.45;
}
.profile-daily-message__subtitle {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(248, 244, 236, 0.82);
}

/* ── Vesmírná první pomoc ── */
.premium-firstaid,
.premium-karmic {
  position: relative;
  width: 100%;
  padding: 0.5rem 1rem 2.5rem;
  overflow: hidden;
}
.premium-firstaid__nebula,
.premium-karmic__nebula {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background:
    radial-gradient(ellipse 100% 70% at 40% 20%, rgba(30, 70, 150, 0.45), transparent 55%),
    radial-gradient(ellipse 80% 60% at 80% 75%, rgba(61, 36, 99, 0.35), transparent 50%),
    linear-gradient(180deg, #050818 0%, #08061a 50%, #030510 100%);
  border: 1px solid rgba(212, 175, 90, 0.18);
  box-shadow: inset 0 0 80px rgba(8, 20, 60, 0.7);
  pointer-events: none;
}
.premium-firstaid__stardust,
.premium-karmic__stardust {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background-image:
    radial-gradient(1.5px 1.5px at 22% 28%, rgba(240, 221, 176, 0.65), transparent),
    radial-gradient(1px 1px at 58% 18%, rgba(255, 255, 255, 0.45), transparent),
    radial-gradient(1.5px 1.5px at 78% 48%, rgba(212, 175, 90, 0.55), transparent);
  opacity: 0.8;
  pointer-events: none;
  animation: stardustShimmer 8s ease-in-out infinite;
}
.premium-firstaid__header,
.premium-karmic__header {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 1.5rem 1rem 1.25rem;
}
.premium-firstaid__symbol,
.premium-karmic__symbol { display: none !important; }
.premium-firstaid__eyebrow,
.premium-karmic__eyebrow {
  font-family: var(--font-brand);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.premium-firstaid__title,
.premium-karmic__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  color: var(--gold-light);
  margin: 0.5rem 0 0.35rem;
}
.premium-firstaid__subtitle,
.premium-karmic__subtitle,
.premium-cosmic-rituals__subtitle {
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 44ch;
  margin: 0 auto;
  line-height: 1.6;
}

.premium-cosmic-rituals {
  position: relative;
  width: 100%;
  padding: 0.5rem 1rem 2.5rem;
  overflow: hidden;
}
.premium-cosmic-rituals__nebula {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background:
    radial-gradient(ellipse 90% 65% at 50% 15%, rgba(40, 60, 130, 0.5), transparent 58%),
    radial-gradient(ellipse 70% 55% at 15% 80%, rgba(61, 36, 99, 0.38), transparent 52%),
    radial-gradient(ellipse 60% 50% at 88% 70%, rgba(212, 175, 90, 0.12), transparent 48%),
    linear-gradient(180deg, #040a1e 0%, #07061a 45%, #030510 100%);
  border: 1px solid rgba(212, 175, 90, 0.2);
  box-shadow: inset 0 0 90px rgba(8, 20, 60, 0.75), 0 0 40px rgba(212, 175, 90, 0.06);
  pointer-events: none;
}
.premium-cosmic-rituals__stardust {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background-image:
    radial-gradient(1.5px 1.5px at 18% 22%, rgba(240, 221, 176, 0.7), transparent),
    radial-gradient(1px 1px at 42% 12%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1.5px 1.5px at 68% 32%, rgba(212, 175, 90, 0.6), transparent),
    radial-gradient(1px 1px at 82% 58%, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1.5px 1.5px at 30% 72%, rgba(240, 221, 176, 0.55), transparent);
  opacity: 0.85;
  pointer-events: none;
  animation: stardustShimmer 8s ease-in-out infinite;
}
.premium-cosmic-rituals__header {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 1.5rem 1rem 1rem;
}
.premium-cosmic-rituals__eyebrow {
  font-family: var(--font-brand);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.premium-cosmic-rituals__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4.8vw, 2.5rem);
  color: var(--gold-light);
  margin: 0.5rem 0 0.35rem;
  line-height: 1.25;
}

.cosmic-rituals-empty {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  width: 100%;
  max-width: 420px;
  min-height: 220px;
  margin: 2rem auto 1.5rem;
  padding: 2.5rem 1.75rem;
  text-align: center;
  background: rgba(10, 12, 24, 0.72);
  border: 1px solid rgba(212, 175, 90, 0.28);
  border-radius: 24px;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(240, 221, 176, 0.06),
    0 0 48px rgba(212, 175, 90, 0.08);
}
.cosmic-rituals-empty__orbit {
  position: relative;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(212, 175, 90, 0.35);
  border-radius: 50%;
  animation: cosmicRitualsOrbitSpin 18s linear infinite;
}
.cosmic-rituals-empty__orbit::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(212, 175, 90, 0.22);
  border-radius: 50%;
}
.cosmic-rituals-empty__moon {
  position: absolute;
  top: -5px;
  left: 50%;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--gold-light), var(--gold));
  box-shadow: 0 0 14px rgba(212, 175, 90, 0.55);
}
@keyframes cosmicRitualsOrbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.cosmic-rituals-empty__text {
  font-family: var(--font-display);
  font-size: clamp(1rem, 3.5vw, 1.15rem);
  color: rgba(240, 221, 176, 0.88);
  line-height: 1.65;
  margin: 0;
  letter-spacing: 0.02em;
}

.cosmic-rituals-list {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  width: 100%;
  max-width: 560px;
  margin: 1.5rem auto 1.75rem;
  padding: 0 0.25rem;
}
.cosmic-rituals-list[hidden],
.cosmic-rituals-empty[hidden] {
  display: none !important;
}

.ritual-item {
  background: rgba(12, 14, 28, 0.82);
  border: 1px solid rgba(212, 175, 90, 0.28);
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}
.ritual-item__trigger {
  display: grid;
  grid-template-columns: 1.15rem 1fr 1.15rem;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1.05rem 1rem;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.25s ease;
}
.ritual-item__trigger:hover,
.ritual-item__trigger:focus-visible {
  background: rgba(212, 175, 90, 0.06);
  outline: none;
}
.ritual-item--open .ritual-item__trigger {
  background: rgba(212, 175, 90, 0.08);
  border-bottom: 1px solid rgba(212, 175, 90, 0.18);
}
.ritual-item__arrow-spacer {
  grid-column: 1;
  width: 0.55rem;
  height: 0.55rem;
}
.ritual-item__title {
  grid-column: 2;
  font-family: var(--font-brand);
  font-size: clamp(0.68rem, 2.8vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-align: center;
  line-height: 1.35;
  margin: 0;
}
.ritual-item__label {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  min-width: 0;
}
.ritual-item__heading {
  font-family: var(--font-brand);
  font-size: clamp(0.68rem, 2.8vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-align: center;
  line-height: 1.25;
}
.ritual-item__subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 2.8vw, 0.8rem);
  font-weight: 300;
  line-height: 1.35;
  text-align: center;
  color: var(--gold);
}
.ritual-item__arrow {
  grid-column: 3;
  justify-self: end;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  opacity: 0.9;
}
.ritual-item--open .ritual-item__arrow {
  transform: rotate(-135deg);
}
.ritual-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.ritual-item--open .ritual-item__panel {
  grid-template-rows: 1fr;
}
.ritual-item__panel-inner {
  overflow: hidden;
}
.ritual-item__body {
  padding: 0.15rem 1.1rem 1.2rem;
  font-family: var(--font-body);
}
.ritual-item__intent {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 3.2vw, 1.05rem);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(248, 244, 236, 0.92);
  margin: 0 0 1rem;
  text-align: left;
}
.ritual-item__actions {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  counter-reset: ritual-step;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.ritual-item__action {
  position: relative;
  padding-left: 1.65rem;
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 3vw, 1rem);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(248, 244, 236, 0.88);
  counter-increment: ritual-step;
}
.ritual-item__action::before {
  content: counter(ritual-step) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 500;
}
.ritual-item__affirmation {
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 3vw, 1rem);
  font-weight: 300;
  font-style: normal;
  line-height: 1.6;
  color: var(--gold-light);
  margin: 0;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(212, 175, 90, 0.2);
  text-align: left;
}
.ritual-item__dates {
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 175, 90, 0.22);
}
.ritual-item__dates-label {
  font-family: var(--font-brand);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(212, 175, 90, 0.75);
  margin: 0 0 0.65rem;
  text-align: left;
}
.ritual-item__dates-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.ritual-item__dates-item,
.ritual-item__dates-value {
  font-family: var(--font-body);
  font-size: clamp(0.88rem, 2.8vw, 0.98rem);
  font-weight: 300;
  line-height: 1.5;
  color: rgba(212, 175, 90, 0.88);
  margin: 0;
  text-align: left;
}
.ritual-item__dates-item {
  position: relative;
  padding-left: 1rem;
}
.ritual-item__dates-item::before {
  content: '◦';
  position: absolute;
  left: 0;
  color: var(--gold);
  opacity: 0.7;
}
.cosmic-ritual-card__dates {
  width: 100%;
  max-width: 640px;
  margin: 1.5rem auto 0;
  flex-shrink: 0;
}
.cosmic-ritual-card__dates .ritual-item__dates {
  border-top-color: rgba(212, 175, 90, 0.28);
}
.cosmic-ritual-card__dates .ritual-item__dates-label {
  text-align: center;
}
.cosmic-ritual-card__dates .ritual-item__dates-value {
  text-align: center;
}
.cosmic-ritual-card__dates .ritual-item__dates-list {
  align-items: center;
}
.cosmic-ritual-card__dates .ritual-item__dates-item {
  padding-left: 0;
  text-align: center;
}
.cosmic-ritual-card__dates .ritual-item__dates-item::before {
  display: none;
}

.firstaid-crises {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  width: 100%;
  max-width: 520px;
  margin: 0 auto 1.5rem;
}
.firstaid-crisis-btn {
  font-family: var(--font-brand);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1.1rem 0.75rem;
  background: linear-gradient(165deg, rgba(10, 14, 32, 0.92), rgba(6, 8, 18, 0.98));
  border: 1px solid rgba(212, 175, 90, 0.35);
  border-radius: 16px;
  color: var(--gold-light);
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.firstaid-crisis-btn:hover,
.firstaid-crisis-btn:focus-visible {
  border-color: rgba(212, 175, 90, 0.65);
  box-shadow: 0 0 28px rgba(212, 175, 90, 0.18);
  transform: translateY(-2px);
  outline: none;
}
.premium-panel--firstaid.has-result .firstaid-crises,
.premium-panel--firstaid.is-reading .firstaid-crises {
  display: none;
}

.oracle--firstaid,
.oracle--karmic {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 2.25rem 1.85rem;
  background: linear-gradient(165deg, rgba(13, 27, 58, 0.7), rgba(18, 16, 28, 0.98));
  border: 2px solid rgba(212, 175, 90, 0.45);
  border-radius: 22px;
  box-shadow: 0 0 70px rgba(212, 175, 90, 0.15), 0 12px 40px rgba(0, 0, 0, 0.35);
  scroll-margin-top: 90px;
}
.oracle--karmic .oracle__text {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 3.5vw, 1.22rem);
  font-style: normal;
  font-weight: 300;
  line-height: 1.65;
  color: var(--gold-light);
  text-align: left;
  white-space: pre-line;
}

/* ── Vesmírná první pomoc — strukturovaný výklad ── */
.firstaid-intro {
  margin-bottom: 0.25rem;
}
.firstaid-intro__text {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 3.5vw, 1.22rem);
  font-style: normal;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(248, 244, 236, 0.95);
  text-align: left;
  white-space: pre-line;
}
.oracle--karmic__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  color: var(--gold-light);
  text-align: center;
  margin-bottom: 0.25rem;
}

.firstaid-rescue-card {
  margin-top: 1.75rem;
  padding: 1.35rem 1rem 1.25rem;
  border-top: 1px solid rgba(212, 175, 90, 0.28);
  text-align: center;
  background: rgba(212, 175, 90, 0.04);
  border-radius: 16px;
}
.firstaid-rescue-card--hidden { display: none !important; }
.firstaid-rescue-card__label,
.firstaid-card-meaning__label,
.firstaid-ritual__label {
  font-family: var(--font-brand);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
  text-align: center;
}
.firstaid-rescue-card__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.firstaid-rescue-card__img {
  width: 130px;
  border-radius: 10px;
  border: 2px solid rgba(212, 175, 90, 0.55);
  box-shadow: 0 0 28px rgba(212, 175, 90, 0.3);
}
.firstaid-rescue-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 4vw, 1.55rem);
  font-weight: 500;
  color: var(--gold-light);
  font-style: normal;
  letter-spacing: 0.04em;
  text-shadow: 0 0 20px rgba(212, 175, 90, 0.25);
  margin: 0;
}

.firstaid-card-meaning {
  margin-top: 1.75rem;
  padding: 1.35rem 1.15rem;
  border-top: 1px solid rgba(212, 175, 90, 0.22);
  border-left: 3px solid rgba(212, 175, 90, 0.45);
  background: linear-gradient(135deg, rgba(13, 27, 58, 0.45), rgba(18, 16, 28, 0.75));
  border-radius: 0 14px 14px 0;
}
.firstaid-card-meaning--hidden { display: none !important; }
.firstaid-card-meaning__text {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 3.2vw, 1.18rem);
  font-style: normal;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(248, 244, 236, 0.94);
  text-align: left;
  white-space: pre-line;
}

.firstaid-ritual {
  margin-top: 1.75rem;
  padding: 1.35rem 1.15rem;
  background: rgba(212, 175, 90, 0.08);
  border: 1px solid rgba(212, 175, 90, 0.32);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(240, 221, 176, 0.06);
}
.firstaid-ritual--hidden { display: none !important; }
.firstaid-ritual__text {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 3.2vw, 1.1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(248, 244, 236, 0.94);
  text-align: left;
  white-space: pre-line;
}

.karmic-form {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  margin: 0 auto 1.5rem;
  padding: 2rem 1.75rem;
  background: linear-gradient(165deg, rgba(10, 18, 45, 0.9), rgba(6, 8, 18, 0.97));
  border: 1px solid rgba(212, 175, 90, 0.28);
  border-radius: 22px;
}
.premium-panel--karmic.is-reading .karmic-form,
.premium-panel--karmic.has-result .karmic-form {
  display: none;
}

.btn--karmic {
  background: linear-gradient(135deg, #f0ddb0, #d4af5a, #8a6d2a);
  color: #1a1008;
  box-shadow: 0 8px 36px rgba(212, 175, 90, 0.45);
  font-family: var(--font-brand);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1.2rem 1.75rem;
}
.btn--karmic:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* ── PREMIUM — Partnerská astrologie ── */
.premium-synastry {
  position: relative;
  width: 100%;
  padding: 0.5rem 1rem 2.5rem;
  overflow: hidden;
}
.premium-synastry__nebula {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background:
    radial-gradient(ellipse 95% 70% at 35% 18%, rgba(90, 40, 120, 0.42), transparent 55%),
    radial-gradient(ellipse 80% 60% at 82% 72%, rgba(212, 175, 90, 0.1), transparent 50%),
    linear-gradient(180deg, #050818 0%, #08061a 50%, #030510 100%);
  border: 1px solid rgba(212, 175, 90, 0.18);
  box-shadow: inset 0 0 80px rgba(8, 20, 60, 0.7);
  pointer-events: none;
}
.premium-synastry__stardust {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background-image:
    radial-gradient(1.5px 1.5px at 24% 26%, rgba(240, 221, 176, 0.65), transparent),
    radial-gradient(1px 1px at 62% 16%, rgba(255, 255, 255, 0.45), transparent),
    radial-gradient(1.5px 1.5px at 80% 52%, rgba(212, 175, 90, 0.55), transparent);
  opacity: 0.8;
  pointer-events: none;
  animation: stardustShimmer 8s ease-in-out infinite;
}
.premium-synastry__header {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 1.5rem 1rem 1.25rem;
}
.premium-synastry__eyebrow {
  font-family: var(--font-brand);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.premium-synastry__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  color: var(--gold-light);
  margin: 0.5rem 0 0.35rem;
}
.premium-synastry__subtitle {
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 46ch;
  margin: 0 auto;
  line-height: 1.6;
}

.synastry-form {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  margin: 0 auto 1.5rem;
  padding: 2rem 1.75rem;
  background: linear-gradient(165deg, rgba(10, 18, 45, 0.9), rgba(6, 8, 18, 0.97));
  border: 1px solid rgba(212, 175, 90, 0.28);
  border-radius: 22px;
  box-shadow: 0 0 40px rgba(212, 175, 90, 0.08), inset 0 1px 0 rgba(240, 221, 176, 0.08);
}
.premium-panel--synastry.is-reading .synastry-form,
.premium-panel--synastry.has-result .synastry-form {
  display: none;
}
.synastry-person {
  border: none;
  margin: 0 0 1.5rem;
  padding: 0 0 1.25rem;
  border-bottom: 1px solid rgba(212, 175, 90, 0.18);
}
.synastry-person:last-of-type {
  border-bottom: none;
  margin-bottom: 0.5rem;
  padding-bottom: 0;
}
.synastry-person__legend {
  font-family: var(--font-brand);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-align: center;
  width: 100%;
  margin-bottom: 1.15rem;
  padding: 0;
}
.astro-field__optional {
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(168, 156, 184, 0.75);
  font-size: 0.62rem;
}

.btn--synastry {
  background: linear-gradient(135deg, #f0ddb0, #d4af5a, #8a6d2a);
  color: #1a1008;
  box-shadow: 0 8px 36px rgba(212, 175, 90, 0.45);
  font-family: var(--font-brand);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1.2rem 1.75rem;
  margin-top: 0.5rem;
}
.btn--synastry:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.oracle--synastry {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 2.25rem 1.85rem;
  background: linear-gradient(165deg, rgba(13, 27, 58, 0.7), rgba(18, 16, 28, 0.98));
  border: 2px solid rgba(212, 175, 90, 0.45);
  border-radius: 22px;
  box-shadow: 0 0 70px rgba(212, 175, 90, 0.15), 0 12px 40px rgba(0, 0, 0, 0.35);
  scroll-margin-top: 90px;
}
.oracle--synastry__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  color: var(--gold-light);
  text-align: center;
  margin-bottom: 0.25rem;
}
.oracle--synastry .oracle__text {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 3.5vw, 1.22rem);
  font-style: normal;
  font-weight: 300;
  line-height: 1.65;
  color: var(--gold-light);
  text-align: left;
  white-space: pre-line;
}

/* ── MODAL ── */
.modal {
  position: fixed; inset: 0; z-index: 400;
  display: flex; align-items: center; justify-content: center; padding: 1rem;
}
.modal--hidden { display: none !important; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.75); }
.modal__box {
  position: relative; z-index: 1;
  max-width: 520px; width: 100%; max-height: 85vh; overflow-y: auto;
  padding: 2rem 1.5rem;
  background: var(--surface);
  border: 1px solid rgba(212,175,90,0.2);
  border-radius: var(--radius);
}
.modal__close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; color: var(--text-muted);
  font-size: 1.5rem; cursor: pointer;
}
.modal__title {
  font-family: var(--font-display);
  font-size: 1.5rem; color: var(--gold-light); margin-bottom: 1rem;
}
.modal__body p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

/* ── GDPR / Privacy modal ── */
.modal--privacy .modal__backdrop {
  background: rgba(4, 8, 22, 0.88);
  backdrop-filter: blur(6px);
}
.modal__box--privacy {
  max-width: 680px;
  max-height: 90vh;
  padding: 2.25rem 1.75rem 1.75rem;
  background:
    linear-gradient(165deg, rgba(13, 27, 58, 0.97) 0%, rgba(8, 14, 32, 0.98) 45%, rgba(6, 10, 24, 0.99) 100%);
  border: 1px solid rgba(212, 175, 90, 0.32);
  box-shadow:
    0 0 0 1px rgba(212, 175, 90, 0.08) inset,
    0 24px 64px rgba(0, 0, 0, 0.55),
    0 0 48px rgba(212, 175, 90, 0.08);
}
.modal--privacy .modal__close {
  color: rgba(212, 175, 90, 0.7);
  transition: color 0.2s ease, text-shadow 0.2s ease;
}
.modal--privacy .modal__close:hover,
.modal--privacy .modal__close:focus-visible {
  color: var(--gold-light);
  text-shadow: 0 0 12px rgba(212, 175, 90, 0.45);
  outline: none;
}
.modal__box--faq {
  padding-top: 1rem;
}
.faq-modal__toolbar {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: max(25px, calc(0.35rem + var(--safe-top)));
  margin-bottom: 0.75rem;
}
.btn--faq-back {
  min-width: auto;
  width: auto;
}
.privacy-doc__header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(212, 175, 90, 0.2);
}
.privacy-doc__eyebrow {
  font-family: var(--font-brand);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(212, 175, 90, 0.75);
  margin-bottom: 0.5rem;
}
.privacy-doc__title {
  margin-bottom: 0.75rem;
  font-family: var(--font-brand);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-shadow: 0 0 24px rgba(212, 175, 90, 0.2);
}
.privacy-doc__ornament {
  width: 4.5rem;
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.65;
}
.privacy-doc {
  padding-right: 0.25rem;
}
.privacy-doc__meta {
  margin-bottom: 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  background: rgba(8, 20, 40, 0.55);
  border: 1px solid rgba(212, 175, 90, 0.14);
}
.privacy-doc__meta p {
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(200, 190, 210, 0.9);
  margin-bottom: 0.55rem;
}
.privacy-doc__meta p:last-child { margin-bottom: 0; }
.privacy-doc__meta-label {
  font-family: var(--font-brand);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(212, 175, 90, 0.8);
  display: block;
  margin-bottom: 0.15rem;
}
.privacy-doc__placeholder {
  font-style: italic;
  color: rgba(168, 156, 184, 0.85);
}
.privacy-doc__lead {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(232, 224, 240, 0.92);
  margin-bottom: 1.35rem;
}
.privacy-doc__section {
  margin-bottom: 1.35rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(212, 175, 90, 0.1);
}
.privacy-doc__section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.privacy-doc__section--highlight {
  padding: 1rem 1.1rem 1.1rem;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 90, 0.22);
  background: linear-gradient(135deg, rgba(212, 175, 90, 0.06), rgba(13, 27, 58, 0.35));
}
.privacy-doc__section--highlight .privacy-doc__heading {
  color: var(--gold-light);
}
.privacy-doc__heading {
  font-family: var(--font-brand);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
}
.privacy-doc__section p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.privacy-doc__section p:last-child { margin-bottom: 0; }
.privacy-doc__list {
  list-style: none;
  margin: 0.5rem 0 0.75rem;
  padding: 0;
}
.privacy-doc__list li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.86rem;
  line-height: 1.62;
  color: var(--text-muted);
  margin-bottom: 0.55rem;
}
.privacy-doc__list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0.05rem;
  font-size: 0.55rem;
  color: rgba(212, 175, 90, 0.75);
}
.privacy-doc__list li:last-child { margin-bottom: 0; }
.btn--privacy-accept {
  width: 100%;
  margin-top: 1.25rem;
}
.modal__box--privacy::-webkit-scrollbar { width: 6px; }
.modal__box--privacy::-webkit-scrollbar-track { background: rgba(8, 14, 32, 0.5); }
.modal__box--privacy::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 90, 0.35);
  border-radius: 3px;
}

/* ── MYSTIC PREMIUM — Ceníková stránka ── */
.body--pricing-open { overflow: hidden; }

.pricing-page {
  position: fixed;
  inset: 0;
  z-index: 480;
  overflow-y: auto;
  overflow-x: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
  scroll-behavior: smooth;
}
.pricing-page:not(.modal--hidden) {
  opacity: 1;
  visibility: visible;
}
.pricing-page.modal--hidden {
  display: block !important;
  pointer-events: none;
}
.pricing-page__nebula {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 100% 70% at 50% 0%, rgba(212, 175, 90, 0.14), transparent 55%),
    radial-gradient(ellipse 80% 50% at 20% 100%, rgba(61, 36, 99, 0.25), transparent 50%),
    linear-gradient(180deg, rgba(4, 6, 16, 0.98), rgba(2, 4, 12, 0.99));
}
.pricing-page__content {
  position: relative;
  z-index: 1;
  width: min(1560px, 100%);
  margin: 0 auto;
  padding: calc(4.5rem + var(--safe-top)) 1.25rem calc(2.5rem + var(--safe-bottom));
  animation: pricingPageIn 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes pricingPageIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.btn--pricing-back-top {
  position: sticky;
  top: calc(0.75rem + var(--safe-top));
  z-index: 2;
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 0.7rem 1.5rem;
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(212, 175, 90, 0.55);
  border-radius: 999px;
  font-family: var(--font-brand);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 0 24px rgba(212, 175, 90, 0.12);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.btn--pricing-back-top:hover,
.btn--pricing-back-top:focus-visible {
  border-color: var(--gold);
  color: var(--gold-light);
  box-shadow: 0 0 32px rgba(212, 175, 90, 0.28);
  transform: translateY(-1px);
  outline: none;
}

.pricing-page__header {
  text-align: center;
  margin-bottom: 2rem;
}
.pricing-page__crown { display: none !important; }
.pricing-page__title {
  font-family: var(--font-brand);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  letter-spacing: 0.18em;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 32px rgba(212, 175, 90, 0.25);
}
.pricing-page__subtitle {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-muted);
  max-width: 46ch;
  margin: 0 auto;
}

.pricing-limit-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  max-width: 720px;
  margin: 0 auto 1.25rem;
  padding: 1rem 1.15rem;
  background: linear-gradient(135deg, rgba(212, 175, 90, 0.12), rgba(8, 12, 28, 0.95));
  border: 1px solid rgba(212, 175, 90, 0.45);
  border-radius: 16px;
  box-shadow: 0 0 28px rgba(212, 175, 90, 0.1);
}
.pricing-limit-notice--hidden {
  display: none;
}
.pricing-limit-notice__icon { display: none !important; }
.pricing-limit-notice__text {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(240, 221, 176, 0.95);
}

.pricing-plans {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: stretch;
}
.pricing-plans--three {
  gap: 0.85rem;
  max-width: 920px;
  margin: 0 auto;
  align-items: stretch;
}
@media (min-width: 720px) {
  .pricing-plans--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
  }
  .pricing-plans--three .pricing-plan {
    min-height: 28rem;
  }
}

.pricing-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  height: auto !important;
  min-height: 100%;
  padding: 1.5rem 1.1rem 1.2rem;
  background: linear-gradient(165deg, rgba(8, 12, 28, 0.92), rgba(4, 6, 16, 0.98));
  border: 2px solid rgba(212, 175, 90, 0.35);
  border-radius: 22px;
  box-shadow: inset 0 1px 0 rgba(240, 221, 176, 0.06);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.pricing-plan:hover {
  border-color: rgba(212, 175, 90, 0.6);
  box-shadow: 0 0 36px rgba(212, 175, 90, 0.12);
}
.pricing-plan:focus-visible {
  outline: 2px solid rgba(212, 175, 90, 0.75);
  outline-offset: 3px;
}
.pricing-plan--zoom-source {
  opacity: 0.35;
  pointer-events: none;
}
.pricing-plan--featured {
  border-color: rgba(212, 175, 90, 0.45);
  box-shadow: inset 0 1px 0 rgba(240, 221, 176, 0.06);
}
.pricing-plan--save {
  border-color: rgba(212, 175, 90, 0.45);
}
.pricing-plan--recommended {
  border-color: rgba(212, 175, 90, 0.45);
  box-shadow: inset 0 1px 0 rgba(240, 221, 176, 0.06);
}
.pricing-plan--recommended::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: 0 0 28px rgba(212, 175, 90, 0.14);
}
.pricing-plan__ribbon {
  position: absolute;
  top: -0.65rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 0.75rem;
  font-family: var(--font-brand);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a1008;
  background: linear-gradient(135deg, #f0ddb0, #d4af5a);
  border-radius: 999px;
  white-space: nowrap;
  max-width: calc(100% - 1rem);
  overflow: hidden;
  text-overflow: ellipsis;
}
.pricing-plan__ribbon--gold {
  background: linear-gradient(135deg, #fff0c8, #e8c86a, #c9a030);
  box-shadow: 0 4px 16px rgba(212, 175, 90, 0.4);
}
.pricing-plan__head {
  text-align: center;
  margin-bottom: 1.15rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid rgba(212, 175, 90, 0.2);
}
.pricing-plan__name {
  font-family: var(--font-brand);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.45;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pricing-plan--dual .pricing-plan__name {
  font-size: 0.68rem;
  margin-bottom: 0.5rem;
}
.pricing-plan--dual .pricing-plan__head {
  margin-bottom: 0.85rem;
  padding-bottom: 0.85rem;
}
.pricing-plan--dual .pricing-plan__features {
  margin-bottom: 1.5rem;
}
.pricing-plan--dual .pricing-plan__features li {
  font-size: 0.72rem;
  margin-bottom: 0.45rem;
  line-height: 1.35;
}
.pricing-plan__tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-top: auto;
  align-items: stretch;
  flex-shrink: 0;
}
.pricing-tier {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  min-height: 9.5rem;
  padding: 0.85rem 0.5rem 0.75rem;
  background: rgba(212, 175, 90, 0.04);
  border: 1px solid rgba(212, 175, 90, 0.22);
  border-radius: 14px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.pricing-tier--highlight {
  border-color: rgba(212, 175, 90, 0.45);
  background: rgba(212, 175, 90, 0.08);
}
.pricing-tier--gold {
  border-color: rgba(240, 221, 176, 0.55);
  box-shadow: inset 0 0 24px rgba(212, 175, 90, 0.08);
}
.pricing-tier__badge {
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.2rem 0.5rem;
  font-family: var(--font-brand);
  font-size: 0.42rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a1008;
  background: linear-gradient(135deg, #f0ddb0, #d4af5a);
  border-radius: 999px;
  white-space: nowrap;
}
.pricing-tier__badge--gold {
  background: linear-gradient(135deg, #fff0c8, #e8c86a, #c9a030);
  box-shadow: 0 2px 10px rgba(212, 175, 90, 0.35);
}
.pricing-tier__label {
  font-family: var(--font-brand);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0.35rem 0 0.4rem;
}
.pricing-tier--highlight .pricing-tier__label {
  margin-top: 0.65rem;
  margin-bottom: 0.25rem;
}
.pricing-tier__savings {
  display: inline-block;
  margin: 0 0 0.4rem;
  padding: 0.14rem 0.5rem;
  font-family: var(--font-brand);
  font-size: 0.44rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240, 221, 176, 0.92);
  border: 1px solid rgba(212, 175, 90, 0.32);
  border-radius: 999px;
  background: rgba(212, 175, 90, 0.07);
  line-height: 1.2;
  white-space: nowrap;
}
.pricing-tier--gold .pricing-tier__savings {
  border-color: rgba(240, 221, 176, 0.38);
  box-shadow: 0 0 12px rgba(212, 175, 90, 0.12);
}
.pricing-tier__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.1rem 0.25rem;
  margin-bottom: 0.65rem;
}
.pricing-tier__amount {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 3.5vw, 1.45rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.pricing-tier__period {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--text-muted);
}
.btn--pricing-tier {
  width: 100%;
  min-height: 2.65rem;
  margin-top: auto;
  padding: 0.65rem 0.4rem;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pricing-plan__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.15rem 0.35rem;
}
.pricing-plan__amount {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.2rem);
  font-weight: 600;
  color: var(--gold);
  text-shadow: 0 0 24px rgba(212, 175, 90, 0.3);
  line-height: 1;
}
.pricing-plan__period {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-muted);
}
.pricing-plan__note {
  margin-top: 0.65rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-style: italic;
  line-height: 1.45;
  color: rgba(240, 221, 176, 0.85);
}

.pricing-plan__features {
  list-style: none;
  flex-grow: 1;
  flex-shrink: 0;
  margin-bottom: 1.5rem;
}
.pricing-plan__features li {
  position: relative;
  padding-left: 1.45rem;
  margin-bottom: 0.55rem;
  font-size: 0.74rem;
  color: rgba(248, 244, 236, 0.9);
  line-height: 1.38;
}
.pricing-plan:not(.pricing-plan--dual) .btn--pricing {
  margin-top: auto;
  min-height: 2.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pricing-plan__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 700;
  text-shadow: 0 0 10px rgba(212, 175, 90, 0.5);
}

.btn--pricing {
  width: 100%;
  padding: 1rem 1rem;
  font-family: var(--font-brand);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a1008;
  background: linear-gradient(135deg, #f0ddb0, #d4af5a, #9a7a30);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 6px 28px rgba(212, 175, 90, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn--pricing:hover,
.btn--pricing:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(212, 175, 90, 0.45);
  outline: none;
}
.btn--pricing-glow {
  box-shadow: 0 8px 40px rgba(212, 175, 90, 0.45);
}
.btn--pricing-glow:hover,
.btn--pricing-glow:focus-visible {
  box-shadow: 0 12px 48px rgba(212, 175, 90, 0.55);
}

/* ── CENÍK — zoom detail plánu ── */
.pricing-plan-zoom {
  position: fixed;
  inset: 0;
  z-index: 490;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(1rem + var(--safe-top)) 1rem calc(1rem + var(--safe-bottom));
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.42s ease, visibility 0.42s ease;
}
.pricing-plan-zoom[hidden] {
  display: none !important;
}
.pricing-plan-zoom--open {
  opacity: 1;
  visibility: visible;
}
.pricing-plan-zoom__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 4, 12, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity 0.42s ease;
}
.pricing-plan-zoom--open .pricing-plan-zoom__backdrop {
  opacity: 1;
}
.pricing-plan-zoom__stage {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: min(580px, 100%);
  max-height: 100%;
  gap: 1rem;
}
.pricing-plan-zoom__card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto !important;
  min-height: 0;
  max-height: calc(100dvh - 9rem - var(--safe-top) - var(--safe-bottom));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 2.25rem 1.85rem 1.85rem;
  background: linear-gradient(165deg, rgba(8, 14, 38, 0.98), rgba(4, 6, 16, 0.99));
  border: 2px solid rgba(212, 175, 90, 0.55);
  border-radius: 26px;
  box-shadow:
    0 0 80px rgba(212, 175, 90, 0.18),
    0 24px 64px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(240, 221, 176, 0.08);
  transform: translate(var(--zoom-tx, 0), var(--zoom-ty, 0)) scale(var(--zoom-scale, 0.82));
  opacity: 0.55;
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease;
  will-change: transform, opacity;
}
.pricing-plan-zoom--open .pricing-plan-zoom__card {
  transform: translate(0, 0) scale(1);
  opacity: 1;
}
.pricing-plan-zoom__card.pricing-plan--featured,
.pricing-plan-zoom__card.pricing-plan--recommended {
  border-color: rgba(212, 175, 90, 0.65);
  box-shadow:
    0 0 90px rgba(212, 175, 90, 0.22),
    0 24px 64px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(240, 221, 176, 0.1);
}
.pricing-plan-zoom__card .pricing-plan__head {
  margin-bottom: 1.5rem;
  padding-bottom: 1.35rem;
}
.pricing-plan-zoom__card .pricing-plan__name {
  font-size: clamp(1.15rem, 4.5vw, 1.65rem);
  letter-spacing: 0.12em;
  margin-bottom: 0.85rem;
  text-shadow: 0 0 28px rgba(212, 175, 90, 0.25);
}
.pricing-plan-zoom__card .pricing-plan__amount {
  font-size: clamp(2.4rem, 8vw, 3.25rem);
}
.pricing-plan-zoom__card .pricing-plan__period {
  font-size: 1rem;
}
.pricing-plan-zoom__card .pricing-plan__features {
  flex-grow: 1;
  flex-shrink: 0;
  margin-bottom: 1.5rem;
}
.pricing-plan-zoom__card .pricing-plan__features li {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 3.8vw, 1.28rem);
  font-style: normal;
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 0.85rem;
  padding-left: 1.75rem;
  color: rgba(248, 244, 236, 0.96);
}
.pricing-plan-zoom__card .pricing-plan__features li::before {
  font-size: 1rem;
  top: 0.15rem;
}
.pricing-plan-zoom__card .pricing-plan__tiers {
  gap: 1rem;
  margin-top: auto;
  flex-shrink: 0;
}
.pricing-plan-zoom__card .pricing-tier {
  min-height: 11rem;
  padding: 1.1rem 0.75rem 0.9rem;
}
.pricing-plan-zoom__card .pricing-tier__label {
  font-size: 0.72rem;
  margin: 0.5rem 0 0.55rem;
}
.pricing-plan-zoom__card .pricing-tier__amount {
  font-size: clamp(1.65rem, 5vw, 2.1rem);
}
.pricing-plan-zoom__card .pricing-tier__period {
  font-size: 0.85rem;
}
.pricing-plan-zoom__card .pricing-tier__savings {
  font-size: 0.5rem;
  padding: 0.16rem 0.55rem;
}
.pricing-plan-zoom__card .pricing-tier__badge {
  font-size: 0.55rem;
  padding: 0.28rem 0.65rem;
}
.pricing-plan-zoom__card .btn--pricing,
.pricing-plan-zoom__card .btn--pricing-tier {
  font-size: 0.78rem;
  padding: 0.85rem 1rem;
  min-height: 3rem;
}
.pricing-plan-zoom__dismiss {
  width: auto;
  min-width: 200px;
  padding: 0.8rem 2rem;
  background: transparent;
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 90, 0.5);
  font-family: var(--font-brand);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 0 24px rgba(212, 175, 90, 0.1);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}
.pricing-plan-zoom__dismiss:hover,
.pricing-plan-zoom__dismiss:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 32px rgba(212, 175, 90, 0.25);
  transform: translateY(-1px);
  outline: none;
}

/* ── GIFT PDF MODULE ── */
.gift-module {
  margin-top: 1.5rem;
  padding: 1.35rem 1.15rem 1.25rem;
  background: linear-gradient(165deg, rgba(18, 14, 36, 0.95), rgba(8, 6, 18, 0.98));
  border: 1px solid rgba(212, 175, 90, 0.45);
  border-radius: 18px;
  box-shadow: 0 0 40px rgba(212, 175, 90, 0.14), inset 0 1px 0 rgba(240, 221, 176, 0.08);
}
.oracle .gift-module {
  margin-top: 1.5rem;
  width: 100%;
}
.gift-module__title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 3.5vw, 1.12rem);
  font-weight: 500;
  color: var(--gold-light);
  text-align: center;
  margin: 0 0 1rem;
  line-height: 1.45;
  text-shadow: 0 0 20px rgba(212, 175, 90, 0.15);
}
.gift-module__input {
  width: 100%;
  padding: 0.85rem 1rem;
  margin-bottom: 0.85rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: rgba(4, 6, 16, 0.85);
  border: 1px solid rgba(212, 175, 90, 0.28);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.gift-module__input::placeholder {
  color: rgba(248, 244, 236, 0.4);
}
.gift-module__input:focus {
  border-color: rgba(212, 175, 90, 0.55);
  box-shadow: 0 0 0 3px rgba(212, 175, 90, 0.12);
}
.btn--gift {
  width: 100%;
  padding: 1.05rem 1rem;
  font-family: var(--font-brand);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a1008;
  background: linear-gradient(135deg, #f0ddb0, #d4af5a, #9a7a30);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 8px 36px rgba(212, 175, 90, 0.42);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn--gift:hover,
.btn--gift:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(212, 175, 90, 0.45);
  outline: none;
}

/* ── Dárkový certifikát — náhled ── */
.body--gift-preview { overflow: hidden; }

.gift-preview {
  position: fixed;
  inset: 0;
  z-index: 520;
  display: flex;
  align-items: stretch;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.gift-preview:not(.modal--hidden) {
  opacity: 1;
  visibility: visible;
}
.gift-preview.modal--hidden {
  display: flex !important;
  pointer-events: none;
}
.gift-preview__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 4, 12, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.gift-preview__scroll {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: calc(1rem + var(--safe-top)) 1.25rem calc(1.5rem + var(--safe-bottom));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.gift-preview__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.btn--gift-back {
  width: auto;
  min-width: 0;
  padding: 0.7rem 1.35rem;
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(212, 175, 90, 0.55);
  border-radius: 999px;
  font-family: var(--font-brand);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 0 24px rgba(212, 175, 90, 0.1);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.btn--gift-back:hover,
.btn--gift-back:focus-visible {
  border-color: var(--gold);
  color: var(--gold-light);
  box-shadow: 0 0 32px rgba(212, 175, 90, 0.25);
  transform: translateY(-1px);
  outline: none;
}
.btn--gift-print {
  width: auto;
  min-width: 0;
  flex: 1 1 auto;
  max-width: 320px;
  margin-left: auto;
  padding: 0.85rem 1.35rem;
  font-family: var(--font-brand);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a1008;
  background: linear-gradient(135deg, #f0ddb0, #d4af5a, #9a7a30);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 8px 36px rgba(212, 175, 90, 0.42);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn--gift-print:hover,
.btn--gift-print:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(212, 175, 90, 0.5);
  outline: none;
}
.gift-preview__cert {
  padding: 2.75rem 2.25rem;
  background: linear-gradient(180deg, rgba(8, 20, 60, 0.95), rgba(4, 10, 28, 0.98));
  border: 3px double rgba(212, 175, 90, 0.65);
  border-radius: 12px;
  box-shadow: 0 0 60px rgba(212, 175, 90, 0.15), inset 0 0 80px rgba(8, 20, 60, 0.5);
}
.gift-preview__ornament { display: none !important; }
.gift-preview__title {
  font-family: var(--font-brand);
  font-size: clamp(1.1rem, 4vw, 1.45rem);
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}
.gift-preview__dedication {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  text-align: center;
  color: rgba(200, 184, 136, 0.95);
  margin-bottom: 1.5rem;
}
.gift-preview__for {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(212, 175, 90, 0.35);
}
.gift-preview__for strong {
  color: var(--gold-light);
  font-weight: 600;
}
.gift-preview__reading {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 3.2vw, 1.08rem);
  font-style: normal;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(248, 244, 236, 0.95);
  text-align: justify;
  white-space: pre-line;
}
.gift-preview__footer {
  margin-top: 2.5rem;
  text-align: center;
  font-family: var(--font-brand);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: rgba(138, 122, 90, 0.9);
  text-transform: uppercase;
}

@media print {
  body * {
    visibility: hidden !important;
  }
  .gift-preview,
  .gift-preview * {
    visibility: visible !important;
  }
  .gift-preview {
    position: absolute;
    inset: 0;
    opacity: 1 !important;
    background: #fff;
    z-index: 99999;
  }
  .gift-preview__backdrop,
  .no-print,
  .no-print * {
    display: none !important;
    visibility: hidden !important;
  }
  .gift-preview__scroll {
    padding: 0;
    overflow: visible;
    max-width: none;
  }
  .gift-preview__cert {
    box-shadow: none;
    border: 3px double #d4af5a;
    page-break-inside: avoid;
  }
  #giftPreviewCert .gift-preview__reading,
  #giftPreviewCert .gift-preview__dedication,
  #giftPreviewCert .gift-preview__for {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    line-height: 1.75;
  }
  #giftPreviewCert .gift-preview__title,
  #giftPreviewCert .gift-preview__footer {
    font-family: var(--font-brand);
  }
  .gift-preview__reading {
    text-align: justify;
  }
}

.body--app .header {
  padding-top: calc(2.35rem + var(--safe-top));
  padding-right: 7.75rem;
}
.body--app .main {
  padding-top: calc(118px + var(--safe-top));
}

/* ── MOBILE ── */
@media (max-width: 640px) {
  .top-bar {
    gap: 0.35rem;
    padding: calc(0.45rem + var(--safe-top)) 0.65rem 0.45rem;
  }
  .top-bar__pricing {
    font-size: 0.65rem;
    padding: 0.38rem 0.45rem;
    letter-spacing: 0.16em;
  }
  .top-bar__settings-icon {
    width: 0.95rem;
    height: 0.95rem;
  }
  .lang-select__trigger {
    padding: 0.38rem 0.55rem 0.38rem 0.45rem;
    min-width: 4.5rem;
    font-size: 0.65rem;
    gap: 0.35rem;
  }
  .lang-select__flag {
    display: none !important;
  }
  .lang-select__menu {
    max-height: min(280px, 50vh);
    overflow-y: auto;
  }

  .header {
    flex-wrap: wrap;
    justify-content: center;
    padding: calc(2.75rem + var(--safe-top)) 1rem 0.65rem;
  }
  .header__brand { width: 100%; justify-content: center; padding-right: 0; }
  .header__title { font-size: 0.78rem; }
  .nav { width: 100%; }
  .nav__btn { flex: 1; padding: 0.5rem 0.35rem; font-size: 0.72rem; }

  .body--app .header {
    padding-right: 1rem;
  }
  .main { padding-top: calc(128px + var(--safe-top)); }
  .body--app .main { padding-top: calc(128px + var(--safe-top)); }
  .main:has(.tab-view--premium.active) { max-width: 100%; }

  .card-container {
    width: min(240px, 72vw);
    height: min(380px, 114vw);
  }
  .card-shimmer {
    width: min(240px, 72vw);
    height: min(380px, 114vw);
  }

  .celtic-slot__label {
    font-size: 0.52rem;
  }
  .pricing-plans--three {
    max-width: 100%;
  }
  .pricing-plan,
  .pricing-plan--dual {
    padding: 1.25rem 0.85rem 1.1rem;
  }
  .pricing-tier {
    min-height: 8.75rem;
  }
  .pricing-plan__tiers {
    gap: 0.5rem;
  }
  .pricing-tier {
    padding: 0.75rem 0.35rem 0.65rem;
  }
  .btn--pricing-tier {
    font-size: 0.52rem;
    padding: 0.55rem 0.3rem;
  }
  .gift-module {
    padding: 1.15rem 0.9rem 1rem;
  }
  .gift-preview__toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  .btn--gift-print {
    max-width: none;
    margin-left: 0;
  }
  .gift-preview__cert {
    padding: 2rem 1.35rem;
  }
  .firstaid-crises {
    grid-template-columns: 1fr;
  }
  .pricing-limit-notice {
    padding: 0.85rem 0.9rem;
    margin-bottom: 1rem;
  }

  .reading-zoom__panel {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-top: calc(4.75rem + var(--safe-top));
  }

  .reading-zoom__close,
  .pricing-plan-zoom__close,
  .daily-ritual-zoom__close,
  .cosmic-ritual-card__close {
    top: calc(3.5rem + var(--safe-top));
    right: 1rem;
  }

  .cosmic-ritual-card__panel {
    padding: calc(5rem + var(--safe-top)) 1.25rem calc(2rem + var(--safe-bottom));
    margin: 8px;
  }

  .daily-ritual-zoom__panel {
    padding: calc(5rem + var(--safe-top)) 1.25rem calc(2rem + var(--safe-bottom));
  }

  /* Čitelné dlouhé texty — Outfit, optimální velikost na mobilu */
  p,
  .oracle__text,
  .oracle--celtic .oracle__text,
  .reading-zoom__text,
  .oracle--astro .oracle__text,
  .daily-ritual__text,
  .dream-modal__text,
  .cosmic-ritual-card__text,
  .daily-ritual-zoom__text,
  .oracle--horoscope .oracle__text,
  .oracle--karmic .oracle__text,
  .firstaid-intro__text,
  .firstaid-card-meaning__text,
  .firstaid-ritual__text,
  .oracle--synastry .oracle__text,
  .modal__body p,
  .feature-card__desc,
  .premium-astro__subtitle,
  .premium-horoscope__subtitle,
  .privacy-doc__lead,
  .privacy-doc__section p,
  .gift-preview__reading,
  .pricing-limit-notice__text,
  .pricing-plan-zoom__card .pricing-plan__features li,
  .profile-toggle-row__desc {
    font-size: 1.08rem;
    line-height: 1.65;
  }
  #profileNameInput,
  .profile-field__input {
    max-width: 100%;
  }

  .landing-about__body p {
    font-size: 1.08rem;
    line-height: 1.65;
  }

  .pricing-page__content {
    padding: calc(4rem + var(--safe-top)) 1rem calc(2rem + var(--safe-bottom));
  }
  .pricing-plan-zoom {
    padding: calc(0.75rem + var(--safe-top)) 0.85rem calc(0.75rem + var(--safe-bottom));
  }
  .pricing-plan-zoom__card {
    padding: 2rem 1.35rem 1.5rem;
    max-height: calc(100dvh - 7.5rem - var(--safe-top) - var(--safe-bottom));
  }
  .pricing-plan-zoom__card .pricing-plan__tiers {
    grid-template-columns: 1fr;
  }
  .pricing-plan-zoom__card .pricing-tier {
    min-height: 0;
  }
  .modal__box--privacy {
    max-height: 92vh;
    padding: 1.75rem 1.15rem 1.25rem;
  }
  .privacy-doc__title {
    font-size: 1.1rem;
    letter-spacing: 0.04em;
  }
  .landing-footer__nav {
    flex-direction: column;
    gap: 0.5rem;
  }
  .landing-footer__sep { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .card-inner, .pendulum-arm, .landing-star, .landing-scroll__arrow,
  .celtic-deck-card__inner, .premium-celtic__stardust, .premium-astro__stardust, .premium-hub__stardust,
  .astro-wheel, .astro-wheel-glow, .astro-wheel__houses--finale text, .astro-wheel-star--fall,
  .deck-card-back--79th::after, .pricing-page__content,
  .pricing-plan-zoom, .pricing-plan-zoom__backdrop, .pricing-plan-zoom__card,
  .daily-ritual-zoom, .daily-ritual-zoom__panel,
  .dream-modal, .dream-modal__panel { animation: none !important; transition: none !important; }
}
