/* ══════════════════════════════════════════
   Tarot Divination — Dark Mystic Style
   ══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Philosopher:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --bg: #0D0B1A;
  --bg-card: #161330;
  --bg-surface: #1C1838;
  --bg-hover: #252048;
  --text: #E8E4F0;
  --text-muted: #9B94B0;
  --gold: #C9A84C;
  --gold-light: #E8CC6A;
  --gold-glow: rgba(201, 168, 76, 0.3);
  --purple: #6E44AA;
  --purple-light: #9A6DD7;
  --border: rgba(201, 168, 76, 0.25);
  --border-bright: rgba(201, 168, 76, 0.5);
  --shadow: rgba(0, 0, 0, 0.5);
  --radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Philosopher', 'Cormorant Garamond', Georgia, serif;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse at 50% 0%, rgba(110, 68, 170, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(201, 168, 76, 0.05) 0%, transparent 40%);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}

/* ── Header ── */
header {
  background: linear-gradient(180deg, rgba(110, 68, 170, 0.12) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  padding: 1.5rem 2rem;
  transition: padding 0.5s ease;
}

header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

header.compact {
  padding: 0.5rem 2rem;
}

header.compact .header-center h1 {
  font-size: 1.5rem;
  margin-bottom: 0;
}

header.compact .header-center p {
  display: none;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 1rem;
}

.header-left {
  flex-shrink: 0;
}

.header-center {
  text-align: center;
  flex: 1;
  transition: all 0.5s ease;
}

.header-center h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 0 30px var(--gold-glow);
  margin-bottom: 0.2rem;
  letter-spacing: 2px;
  transition: font-size 0.5s ease;
}

.header-center p {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-style: italic;
  transition: all 0.5s ease;
}

.header-right {
  flex-shrink: 0;
}

.header-right select {
  padding: 0.5rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-surface);
  color: var(--text);
  cursor: pointer;
}

.header-right select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 10px var(--gold-glow);
}

nav {
  display: flex;
  gap: 1rem;
}

nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
  white-space: nowrap;
}

nav a:hover, nav a.active {
  border-bottom-color: var(--gold);
  color: var(--gold);
  text-shadow: 0 0 10px var(--gold-glow);
}

/* ── Main Layout ── */
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 600;
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--gold);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.btn:hover {
  background: var(--gold);
  color: var(--bg);
  box-shadow: 0 0 20px var(--gold-glow), 0 4px 15px var(--shadow);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #A88A3A);
  color: var(--bg);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 25px var(--gold-glow);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--bg);
}

.btn-sm {
  padding: 0.4rem 1rem;
  font-size: 0.95rem;
}

.btn-danger {
  background: #8B2020;
  border-color: #8B2020;
  color: #FFF;
}

.btn-danger:hover {
  background: #A52A2A;
}

/* ── Name input ── */
.name-input {
  text-align: center;
  margin-bottom: 1.5rem;
}

.name-input input {
  width: 100%;
  max-width: 350px;
  padding: 0.7rem 1.2rem;
  font-family: inherit;
  font-size: 1.05rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-surface);
  color: var(--text);
  text-align: center;
}

.name-input input::placeholder {
  color: var(--text-muted);
  font-style: italic;
}

.name-input input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 10px var(--gold-glow);
}

/* ── History name ── */
.history-name {
  font-weight: 700;
  color: var(--gold);
  font-size: 1.05rem;
  margin-top: 0.2rem;
}

/* ── Cards Grid ── */
.cards-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

/* ── Card Wrapper ── */
.card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 220px;
  flex-shrink: 0;
}

.card-wrapper .position-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px var(--gold-glow);
}

/* ── Card ── */
.tarot-card {
  width: 220px;
  height: 370px;
  perspective: 1000px;
}

.tarot-card .card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.tarot-card.flipped .card-inner {
  transform: rotateY(180deg);
}

.card-front, .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: var(--radius);
  overflow: hidden;
}

/* Card back (face down) — mystical design */
.card-back {
  background: linear-gradient(135deg, #1A0A3E, #2D1B69, #1A0A3E);
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(201,168,76,0.08) 12px, rgba(201,168,76,0.08) 13px),
    repeating-linear-gradient(-45deg, transparent, transparent 12px, rgba(201,168,76,0.08) 12px, rgba(201,168,76,0.08) 13px),
    linear-gradient(135deg, #1A0A3E, #2D1B69, #1A0A3E);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(110, 68, 170, 0.3), 0 4px 20px var(--shadow);
}

.card-back::after {
  content: '✦';
  font-size: 3.5rem;
  color: var(--gold);
  text-shadow: 0 0 30px var(--gold-glow), 0 0 60px rgba(201, 168, 76, 0.15);
}

/* Card front (face up) */
.card-front {
  background: var(--bg-card);
  border: 2px solid var(--border-bright);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 0 25px rgba(110, 68, 170, 0.2), 0 4px 20px var(--shadow);
  padding: 0.4rem;
}

.card-front img {
  width: 100%;
  height: 310px;
  object-fit: contain;
  border-radius: 6px;
}

.card-front .card-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  margin-top: 0.3rem;
  line-height: 1.2;
}

/* ── Description below card ── */
.card-description {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s ease, opacity 0.6s ease, margin 0.4s ease, padding 0.4s ease;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-top: 0;
  padding: 0 0.8rem;
}

.card-description.visible {
  max-height: 300px;
  opacity: 1;
  margin-top: 0.8rem;
  padding: 0.8rem;
  min-height: 120px;
}

.card-desc-position {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.2rem;
}

.card-desc-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.card-desc-text {
  font-size: 0.93rem;
  line-height: 1.5;
  color: var(--text-muted);
  border-left: 2px solid var(--gold);
  padding-left: 0.6rem;
}

/* ── Shaking animation ── */
@keyframes shake {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  10% { transform: translateX(-3px) rotate(-1deg); }
  20% { transform: translateX(3px) rotate(1deg); }
  30% { transform: translateX(-2px) rotate(-0.5deg); }
  40% { transform: translateX(2px) rotate(0.5deg); }
  50% { transform: translateX(-1px) rotate(-0.3deg); }
  60% { transform: translateX(1px) rotate(0.3deg); }
  70% { transform: translateX(-2px) rotate(-0.5deg); }
  80% { transform: translateX(2px) rotate(0.5deg); }
  90% { transform: translateX(-1px) rotate(-0.2deg); }
}

.tarot-card.shaking {
  animation: shake 0.6s ease-in-out infinite;
}

/* ── Interpretation Block ── */
.interpretation {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  border-left: 3px solid var(--gold);
  position: relative;
}

.interpretation::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.interpretation h3 {
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
}

.interpretation p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
}

.interpretation .loading {
  text-align: center;
  color: var(--text-muted);
  font-style: italic;
}

/* ── Card of Day section ── */
.card-of-day {
  text-align: center;
  margin: 2rem 0;
  padding: 2rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.card-of-day h2 {
  color: var(--gold);
  margin-bottom: 1rem;
  font-family: 'Cormorant Garamond', serif;
}

.card-of-day img {
  width: 200px;
  border-radius: 8px;
  border: 2px solid var(--border-bright);
  margin-bottom: 1rem;
  box-shadow: 0 0 20px rgba(110, 68, 170, 0.2);
}

.card-of-day .description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  margin-top: 1rem;
  padding: 1rem;
  background: var(--bg-card);
  border-radius: 8px;
  border-left: 3px solid var(--gold);
}

/* ── History ── */
.history-list {
  list-style: none;
}

.history-item {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}

.history-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px var(--shadow);
  border-color: var(--border-bright);
}

.history-item .date {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.history-item .question {
  font-weight: 600;
  color: var(--gold);
}

.history-item .cards-preview {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.history-item .card-tag {
  background: var(--bg-card);
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  font-size: 0.85rem;
  border: 1px solid var(--border);
  color: var(--text);
}

.history-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.history-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.history-interpretation {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
  border-left: 2px solid var(--gold);
  padding-left: 0.6rem;
}

/* ══════════════════════════════════════════
   ADMIN STYLES
   ══════════════════════════════════════════ */

.admin-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.login-form {
  max-width: 400px;
  margin: 4rem auto;
  text-align: center;
}

.login-form h2 {
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
}

.login-form input {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: inherit;
  font-size: 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-surface);
  color: var(--text);
  margin-bottom: 1rem;
}

.login-form input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 10px var(--gold-glow);
}

/* Admin grid */
.admin-grid {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 2rem;
  min-height: 70vh;
}

.admin-sidebar {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.admin-sidebar h3 {
  color: var(--gold);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
  font-family: 'Cormorant Garamond', serif;
}

.admin-sidebar ul {
  list-style: none;
}

.admin-sidebar li {
  padding: 0.6rem 0.8rem;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--text-muted);
}

.admin-sidebar li:hover, .admin-sidebar li.active {
  background: var(--gold);
  color: var(--bg);
}

.admin-content {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.admin-content h2 {
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
}

/* Admin cards table */
.cards-table {
  width: 100%;
  border-collapse: collapse;
}

.cards-table th, .cards-table td {
  padding: 0.6rem 0.8rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.cards-table th {
  background: var(--bg-card);
  font-weight: 700;
  color: var(--gold);
  position: sticky;
  top: 0;
}

.cards-table tr:hover {
  background: var(--bg-hover);
}

.cards-table img {
  width: 40px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.badge {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
}

.badge-active { background: #1A6B3C; color: #A8F0C8; }
.badge-inactive { background: #4A4A5A; color: #AAA; }
.badge-major { background: #4A1A6B; color: #D0A8F0; }
.badge-minor { background: #6B5A1A; color: #F0DCA8; }

/* Admin stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.stat-card .stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
}

.stat-card .stat-label {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Edit form */
.edit-form {
  max-width: 600px;
}

.edit-form h3 {
  color: var(--gold);
}

.edit-form .form-group {
  margin-bottom: 1rem;
}

.edit-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--gold);
}

.edit-form input,
.edit-form textarea,
.edit-form select {
  width: 100%;
  padding: 0.6rem 0.8rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-card);
  color: var(--text);
}

.edit-form input:focus,
.edit-form textarea:focus,
.edit-form select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 8px var(--gold-glow);
}

.edit-form textarea {
  min-height: 80px;
  resize: vertical;
}

.edit-form .btn-row {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

/* Settings form */
.settings-form .form-group {
  margin-bottom: 1.2rem;
}

.settings-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--gold);
}

.settings-form input,
.settings-form textarea {
  width: 100%;
  max-width: 500px;
  padding: 0.6rem 0.8rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-card);
  color: var(--text);
}

.settings-form input:focus,
.settings-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 8px var(--gold-glow);
}

.settings-form textarea {
  min-height: 100px;
}

/* Deck cards list in admin */
.deck-info {
  background: var(--bg-card);
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
}

/* Toast notifications */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--purple);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  z-index: 2000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s;
  box-shadow: 0 4px 20px var(--shadow);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast.success { background: #1A6B3C; }
.toast.error { background: #8B2020; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .header-row {
    flex-wrap: wrap;
    justify-content: center;
  }
  .header-left { order: 2; }
  .header-center { order: 1; width: 100%; }
  .header-right { order: 3; }
  .header-center h1 { font-size: 2rem; }
  header.compact .header-center h1 { font-size: 1.3rem; }
  .cards-container { gap: 1rem; }
  .card-wrapper { width: 160px; }
  .tarot-card { width: 160px; height: 270px; }
  .card-front img { height: 220px; }
  .admin-grid {
    grid-template-columns: 1fr;
  }
  .admin-sidebar {
    position: sticky;
    top: 0;
    z-index: 10;
    background: var(--bg-surface);
  }
  .admin-sidebar ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
  }
}

@media (max-width: 500px) {
  .card-wrapper { width: 140px; }
  .tarot-card { width: 140px; height: 240px; }
  .card-front img { height: 190px; }
  .card-front .card-name { font-size: 0.85rem; }
  .card-desc-text { font-size: 0.85rem; }
}

/* Animations */
.fade-in {
  animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Deal animation */
@keyframes dealCard {
  from { opacity: 0; transform: scale(0.3) translateY(-100px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.deal-1 { animation: dealCard 0.5s ease-out 0.1s both; }
.deal-2 { animation: dealCard 0.5s ease-out 0.3s both; }
.deal-3 { animation: dealCard 0.5s ease-out 0.5s both; }
.deal-4 { animation: dealCard 0.5s ease-out 0.7s both; }

/* ══════════════════════════════════════════
   8 MARCH — INTERNATIONAL WOMEN'S DAY
   ══════════════════════════════════════════ */

/* Floating flowers background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(ellipse at 15% 20%, rgba(255, 105, 180, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 70%, rgba(255, 182, 193, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 90%, rgba(219, 112, 147, 0.05) 0%, transparent 40%);
}

/* March 8 banner */
.march8-banner {
  text-align: center;
  padding: 0.6rem 1rem;
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.15), rgba(219, 112, 147, 0.1), rgba(255, 182, 193, 0.15));
  border-bottom: 1px solid rgba(255, 105, 180, 0.3);
  font-size: 1.1rem;
  color: #FFB6C1;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.march8-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #FF69B4, transparent);
}

/* Flower decorations on header */
header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 5% 50%, rgba(255, 105, 180, 0.12) 0%, transparent 15%),
    radial-gradient(circle at 95% 50%, rgba(255, 182, 193, 0.12) 0%, transparent 15%);
}

/* Flower emojis floating */
@keyframes floatFlower {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.7; }
  90% { opacity: 0.7; }
  100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

.flower-particle {
  position: fixed;
  font-size: 1.5rem;
  pointer-events: none;
  z-index: 9999;
  animation: floatFlower linear infinite;
  opacity: 0;
}

.flower-particle:nth-child(1) { left: 5%; animation-duration: 12s; animation-delay: 0s; font-size: 1.2rem; }
.flower-particle:nth-child(2) { left: 15%; animation-duration: 15s; animation-delay: 2s; font-size: 1.8rem; }
.flower-particle:nth-child(3) { left: 25%; animation-duration: 11s; animation-delay: 4s; font-size: 1.4rem; }
.flower-particle:nth-child(4) { left: 40%; animation-duration: 14s; animation-delay: 1s; font-size: 1.6rem; }
.flower-particle:nth-child(5) { left: 55%; animation-duration: 13s; animation-delay: 3s; font-size: 1.3rem; }
.flower-particle:nth-child(6) { left: 70%; animation-duration: 16s; animation-delay: 5s; font-size: 1.7rem; }
.flower-particle:nth-child(7) { left: 85%; animation-duration: 12s; animation-delay: 2.5s; font-size: 1.5rem; }
.flower-particle:nth-child(8) { left: 92%; animation-duration: 14s; animation-delay: 6s; font-size: 1.1rem; }

/* Spring accents on gold elements */
.header-center h1 {
  background: linear-gradient(135deg, var(--gold), #FF69B4, var(--gold));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerGold 4s ease-in-out infinite;
}

@keyframes shimmerGold {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Pink tint to card glow */
.card-back {
  box-shadow: 0 0 25px rgba(255, 105, 180, 0.2), 0 0 15px rgba(110, 68, 170, 0.3), 0 4px 20px var(--shadow);
}

.card-front {
  box-shadow: 0 0 25px rgba(255, 105, 180, 0.15), 0 0 15px rgba(110, 68, 170, 0.2), 0 4px 20px var(--shadow);
}

/* Spring flower border on interpretation */
.interpretation {
  border-left-color: #FF69B4;
  border-image: linear-gradient(to bottom, #FF69B4, var(--gold), #FF69B4) 1;
  border-left-width: 3px;
  border-left-style: solid;
}

.interpretation::before {
  background: linear-gradient(90deg, #FF69B4, var(--gold), transparent);
}

/* Button spring hover */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #E8A0BF, var(--gold));
  background-size: 200% 200%;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #FF69B4, var(--gold), #FF69B4);
  box-shadow: 0 0 25px rgba(255, 105, 180, 0.4);
}
