
    .info-section {
        max-width: 800px;
        margin: 60px auto;
        padding: 25px;
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 12px;
        backdrop-filter: blur(6px);
        color: #fff;
    }
    .info-section h2 {
        margin-bottom: 10px;
        text-align: center;
        font-size: 1.6rem;
    }
    .info-section p {
        line-height: 1.6;
        font-size: 1rem;
        opacity: 0.9;
    }


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

body {
  font-family: 'Cormorant Garamond', serif;
  background: radial-gradient(circle at top, #15151f 0%, #05050a 45%, #000000 100%);
  color: #f4f1ea;
  min-height: 100vh;
  padding: 2rem;
  display: flex;
  justify-content: center;
}

/* Page wrapper */
.page {
  width: 100%;
  max-width: 900px;
}


/* ----------------------------------------------
   HEADER
------------------------------------------------*/
header {
  text-align: center;
  margin-bottom: 1.2rem !important;
  margin-bottom: 0.6rem !important;
}

header h1 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2.8rem;
  color: #f0e6d2;
  letter-spacing: 0.1em;
  text-shadow: 0 0 14px rgba(255,240,220,0.25);
}

.tagline {
  margin-top: 0.5rem;
  color: #c3b8a5;
  font-style: italic;
  margin-bottom: 0.3rem !important;
}


/* ----------------------------------------------
   NAV BAR
------------------------------------------------*/
.nav-bar-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.nav-toggle {
  display: none;
  background: rgba(22,18,26,0.85);
  border: 1px solid #b49a72;
  color: #e7dcc9;
  border-radius: 10px;
  padding: 0.3rem 0.6rem;
  font-size: 1.1rem;
  cursor: pointer;
}

/* Desktop */
.nav-bar {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* Tablet/Desktop */
@media (min-width: 641px) {
  .nav-toggle {
    display: none !important;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .nav-bar-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-toggle {
    display: inline-block;
    align-self: flex-end;
  }

  .nav-bar {
    flex-direction: column;
    gap: 0.5rem;
    display: flex;
  }
}

.nav-btn {
  padding: 0.6rem 1.4rem;
  background: rgba(22,18,26,0.65);
  border: 1px solid #b49a72;
  color: #e7dcc9;
  border-radius: 14px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.85rem;
  cursor: pointer;
  transition: 0.25s ease;
}

.nav-btn:hover {
  background: rgba(180,154,114,0.18);
  box-shadow: 0 0 12px rgba(180,154,114,0.35);
  transform: translateY(-2px);
}

.nav-btn.active {
  background: rgba(180,154,114,0.32);
  border-color: #e8dbc1;
  box-shadow: 0 0 18px rgba(230,212,185,0.45);
}


/* ----------------------------------------------
   PAGE WRAPPER
------------------------------------------------*/
.page-wrapper {
  display: flex;
  gap: 2rem;
  flex-direction: column;
}


/* ----------------------------------------------
   CONTENT PANELS
------------------------------------------------*/
main,
section {
  border: 1px solid rgba(180,154,114,0.4);
  background: rgba(20,15,26,0.55);
  padding: 2rem;
  border-radius: 18px;
  box-shadow:
    0 0 35px rgba(0,0,0,0.75),
    0 0 18px rgba(180,154,114,0.2);
}

.hidden {
  display: none !important;
}

main h2,
section h2 {
  font-family: 'Cinzel Decorative', serif;
  text-align: center;
  margin-bottom: 1.4rem;
  color: #f4ecdd;
}


/* ----------------------------------------------
   DAILY DRAW
------------------------------------------------*/
.reverse-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.switch {
  position: relative;
  width: 46px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 46px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
  z-index: 2;
}

.slider {
  position: absolute;
  cursor: pointer;
  background-color: #6d5a4d;
  border-radius: 34px;
  inset: 0;
  transition: .3s;
}

.slider::before {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #f4f1ea;
  border-radius: 50%;
  transition: .3s;
}

input:checked + .slider {
  background: #b49a72;
}

input:checked + .slider::before {
  transform: translateX(22px);
}

#draw-button {
  display: block;
  margin: 0 auto 1.5rem;
  padding: 0.8rem 1.8rem;
  background: transparent;
  border: 1px solid #f0e6d2;
  color: #f0e6d2;
  border-radius: 999px;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.2s;
}

#draw-button:hover {
  transform: translateY(-2px);
  background: rgba(240,230,210,0.06);
}


/* Daily draw card */
.card-frame {
  border: 1px solid #b49a72;
  border-radius: 16px;
  padding: 1.5rem;
  max-width: 400px;
  margin: 0 auto;
  background: radial-gradient(circle at top, #1b1620 0%, #050309 55%, #000000 100%);
  box-shadow: 0 0 35px rgba(0,0,0,0.9), 0 0 24px rgba(180,154,114,0.3);
  position: relative;
  overflow: hidden;
}

.tarot-card {
  border-radius: 18px;
  border: 1px solid #b49a72;
  padding: 1.2rem;
  background: radial-gradient(circle at top, #1a141f 0%, #050308 60%, #000000 100%);
  box-shadow: 0 0 24px rgba(0,0,0,0.85), 0 0 18px rgba(180,154,114,0.35);
}

.tarot-card.back {
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-family: 'Cinzel Decorative', serif;
  color: #d8c7a3;
  position: relative;
}

.tarot-card.back::before,
.tarot-card.back::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 14px;
  border: 1px solid rgba(180,154,114,0.55);
}

.tarot-card.back::after {
  inset: 22px;
  border-style: dashed;
  opacity: 0.7;
}

.card-keyword {
  text-align: center;
  margin-bottom: 1.4rem;
  color: #d1c6b0;
  text-transform: uppercase;
  font-size: 0.95rem;
}


/* ----------------------------------------------
   DICTIONARY GRID
------------------------------------------------*/
.dictionary-container {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.3rem;
}

.card-meaning {
  padding: 1rem;
  border: 1px solid #b49a72;
  border-radius: 14px;
  background: rgba(15, 11, 18, 0.65);
  max-height: 300px;
  overflow-y: auto;
  box-shadow: 0 0 18px rgba(0,0,0,0.45);
}

.card-meaning h3 {
  font-family: 'Cinzel Decorative', serif;
  color: #f2e9d7;
  margin-bottom: 0.4rem;
}

.card-meaning h4 {
  text-transform: uppercase;
  font-size: 0.88rem;
  color: #dfd3c0;
  margin-top: 0.55rem;
}


/* ----------------------------------------------
   LOADER
------------------------------------------------*/
#loader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, #07050b 0%, #000000 65%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

#loader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loader-card {
  width: 80px;
  height: 120px;
  border-radius: 14px;
  border: 1px solid #b49a72;
  background: radial-gradient(circle at top, #191321 0%, #050308 65%, #000000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(180,154,114,0.4);
  animation: glowPulse 1.5s ease-in-out infinite;
}

.loader-mono {
  font-family: 'Cinzel Decorative', serif;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  color: #f4ecdd;
  font-size: 0.95rem;
}

@keyframes glowPulse {
  0% {
    box-shadow: 0 0 8px rgba(180,154,114,0.2),
                0 0 18px rgba(180,154,114,0.25);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 0 24px rgba(240,220,190,0.6),
                0 0 40px rgba(180,154,114,0.55);
    transform: translateY(-3px);
  }
  100% {
    box-shadow: 0 0 8px rgba(180,154,114,0.2),
                0 0 18px rgba(180,154,114,0.25);
    transform: translateY(0);
  }
}


/* ----------------------------------------------
   FOOTER
------------------------------------------------*/
footer {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.75rem;
  color: #8e8474;
}

.footer-line {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
  gap: 0.75rem;
}

.footer-line::before,
.footer-line::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(180,154,114,0.7),
    transparent
  );
}

.footer-card {
  min-width: 40px;
  height: 56px;
  border-radius: 10px;
  border: 1px solid #b49a72;
  padding: 0.25rem 0.5rem;
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, #15111d 0%, #05030a 70%, #000 100%);
  box-shadow: 0 0 14px rgba(0,0,0,0.7), 0 0 12px rgba(180,154,114,0.4);
}


/* ----------------------------------------------
   COOKIE POPUP
------------------------------------------------*/
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 500px;
  width: 90%;
  background: rgba(15, 11, 18, 0.9);
  border: 1px solid #b49a72;
  border-radius: 14px;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 0 25px rgba(0,0,0,0.7);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.cookie-popup.show {
  opacity: 1;
  pointer-events: auto;
}

.cookie-box p {
  color: #e7dcc9;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.cookie-link {
  color: #d1b388;
  text-decoration: underline;
  cursor: pointer;
}

.cookie-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.cookie-btn {
  padding: 0.45rem 1rem;
  border-radius: 8px;
  border: 1px solid #b49a72;
  cursor: pointer;
  background: transparent;
  color: #e7dcc9;
  transition: 0.25s;
  font-size: 0.85rem;
}

.cookie-btn:hover {
  background: rgba(180,154,114,0.2);
  box-shadow: 0 0 10px rgba(180,154,114,0.4);
}

.cookie-btn.accept {
  background: rgba(180,154,114,0.25);
}

.cookie-btn.accept:hover {
  background: rgba(180,154,114,0.4);
}


/* ----------------------------------------------
   GOOGLE ADS BLOCKERS
------------------------------------------------*/
ins.adsbygoogle,
.adsbygoogle,
iframe[src*="ads"],
iframe[id*="google_ads"],
.google-auto-placed {
  display: none !important;
  height: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}


/* ----------------------------------------------
   MOOD ORACLE — MERGED FROM style.css
------------------------------------------------*/

/* Mood wrapper */
.energy-wrapper {
    max-width: 850px;
    margin: 40px auto 70px;
    padding: 2rem;
    border-radius: 18px;
    background: rgba(20,15,26,0.55);
    border: 1px solid rgba(180,154,114,0.4);
    box-shadow:
        0 0 35px rgba(0,0,0,0.75),
        0 0 18px rgba(180,154,114,0.2);
}

/* Mood buttons */
.mood-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
}

.mood-buttons button {
    background: transparent;
    border: 1px solid #d9c08c;
    color: #d9c08c;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s ease;
}

.mood-buttons button:hover {
    background: rgba(217,192,140,0.12);
    box-shadow: 0 0 12px rgba(217,192,140,0.4);
    transform: translateY(-2px);
}

/* Oracle card result */

.energy-wrapper {
    text-align: center;
}

#result-box {
    text-align: left; 
}

#result-box {
    margin: 30px auto;
    padding: 25px;
    width: 90%;
    max-width: 650px;
    background: #150709;
    border: 1px solid #d9c08c;
    border-radius: 18px;
    box-shadow: 
        0 0 25px rgba(217,192,140,0.25),
        inset 0 0 15px rgba(0,0,0,0.6);
    color: #f0e6d2;
    font-size: 20px;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.6s ease;
}

#result-box.show {
    opacity: 1;
    transform: translateY(0);
}

/* Reset button */
#reset-btn {
    margin: 20px auto;
    display: block;
    background: transparent;
    border: 1px solid #826b58;
    color: #f0e6d2;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s ease;
    opacity: 0.85;
}

#reset-btn:hover {
    opacity: 1;
    box-shadow: 0 0 12px rgba(217,192,140,0.35);
}
/* Oracle card settings */

.oracle-title {
    font-size: 22px;
    margin-bottom: 12px;
    color: #d9c08c;
    letter-spacing: 1px;
}

.card-name {
    font-size: 28px;
    color: #e7d7b2;
    margin-bottom: 10px;
}

.card-meaning {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 14px;
}

.card-affirmation {
    font-size: 18px;
    margin-bottom: 12px;
    color: #f5e8ca;
}

.card-selfcare {
    font-size: 18px;
    color: #d3b88a;
}

/* Divider for mood page */
.divider {
    margin: 40px 0 25px;
    color: #d9c08c;
    font-size: 26px;
    letter-spacing: 4px;
    text-align: center;
}

/* Layout for dual buttons (energy + oracle) */
.dual-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: -4px !important;
}

.oracle-btn, .energy-btn {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid #d9c08c;
    color: #d9c08c;
    background: transparent;
    border-radius: 12px;
    font-size: 20px;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: 0.3s ease;
}

.oracle-btn:hover, .energy-btn:hover {
    background: rgba(217,192,140,0.12);
    box-shadow: 0 0 12px rgba(217,192,140,0.4);
    transform: translateY(-2px);
}

.back-btn-wrap {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.back-btn {
    padding: 10px 20px;
    border: 1px solid #d9c08c;
    color: #d9c08c;
    background: transparent;
    border-radius: 12px;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s ease;
}

.back-btn:hover {
    background: rgba(217,192,140,0.12);
    box-shadow: 0 0 12px rgba(217,192,140,0.4);
    transform: translateY(-2px);
}
header {
    margin-bottom: 0.2rem !important;
}

.tagline {
    margin-bottom: 0.1rem !important;
}

.dual-buttons {
    margin-top: -10px !important;
}
.page-wrapper .dual-buttons {
    margin-top: -12px !important;
    margin-bottom: 0 !important;
}

.tagline {
    margin-bottom: 0.8rem !important;
}

header {
    padding-bottom: 0 !important;
    margin-bottom: 0.3rem !important;
    line-height: 1 !important;
}
.tagline {
    margin-top: 0 !important;
    margin-bottom: 0.6rem !important;
}
.page-wrapper .dual-buttons {
    margin-top: -6px !important;
}
.page-wrapper .dual-buttons {
    margin-top: -10px !important;
}

.nav-bar-wrapper {
    margin-top: 6px !important;
}
.profile-img {
    width: 230px;
    border-radius: 16px;
    border: 1px solid #b49a72;
    box-shadow: 0 0 25px rgba(180,154,114,0.4);
    display: block;
    margin: 0 auto;
    animation: float 4s ease-in-out infinite;
}

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

#about .info-box {
    text-align: center !important;
}

#about .desc {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

#about img.profile-img {
    display: block;
    margin: 0 auto 1rem auto;
}

.card-frame.reversed-glow {
    overflow: visible !important;
}
.card-frame.reversed-glow {
    box-shadow:
        0 0 20px rgba(255,120,120,0.55),
        0 0 35px rgba(255,60,60,0.40) !important;
}
#card-box {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    text-align: center;
    padding: 1.2rem;
}
#card-box h3 {
    font-family: "Cinzel Decorative", serif;
    font-size: 1.3rem;
    color: #f4ecdd;
}
#card-box p {
    font-size: 0.95rem;
    color: #d8c7a3;
    line-height: 1.4;
}

/* mobile work*/

/* (iOS fix) */
.hidden {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
}

/* Make visible sections fully visible */
section:not(.hidden) {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    height: auto !important;
    overflow: visible !important;
    pointer-events: auto !important;
}

/* bring to top so taps always register */
.nav-bar-wrapper,
.nav-bar,
.nav-btn {
    position: relative !important;
    z-index: 9999 !important;
}

/* Fix dual buttons overlapping nav on mobile */
@media (max-width: 640px) {
    .dual-buttons {
        margin-top: 1rem !important;
    }
}

/* Mobile card display fixes */
@media (max-width: 600px) {
    body {
        padding: 0.8rem !important;
    }

    .card-frame {
        max-width: 100% !important;
        padding: 1rem !important;
    }

    #card-box {
        padding: 1rem !important;
        gap: 0.5rem !important;
        word-wrap: break-word;
    }

    #card-box h3 {
        font-size: 1.1rem !important;
        line-height: 1.25rem !important;
    }

    #card-box p {
        font-size: 0.9rem !important;
        line-height: 1.25rem !important;
    }
}
section.hidden {
    height: 0 !important;
    max-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

section:not(.hidden) {
    height: auto !important;
    max-height: none !important;
    padding: 2rem !important;
    margin-bottom: 1.5rem !important;
    opacity: 1 !important;
    visibility: visible !important;
}
#crisis-resources {
    border-left: 3px solid rgba(255, 150, 255, 0.6);
    box-shadow: 0 0 20px rgba(255, 150, 255, 0.2);
    animation: subtlePulse 3s infinite ease-in-out;
}

@keyframes subtlePulse {
    0% { box-shadow: 0 0 10px rgba(255,150,255,0.2); }
    50% { box-shadow: 0 0 22px rgba(255,150,255,0.4); }
    100% { box-shadow: 0 0 10px rgba(255,150,255,0.2); }
}
/* Homepage Intro Styling - Magical Glow Version */
.homepage-intro {
    max-width: 700px;
    margin: 30px auto 40px auto;
    padding: 24px 28px;
    background: rgba(255, 200, 255, 0.07);
    border: 1px solid rgba(255, 200, 255, 0.18);
    border-radius: 14px;
    backdrop-filter: blur(8px) saturate(120%);
    color: #fbeaff;
    text-align: center;
    box-shadow: 
        0 0 14px rgba(255, 200, 255, 0.25),
        inset 0 0 12px rgba(255, 200, 255, 0.12);
    animation: fadeIn 0.6s ease-in-out;
    font-family: inherit; /* ensures same font as your site */
}

/* Title */
.homepage-intro h2 {
    font-size: 1.65rem;
    margin-bottom: 10px;
    color: #ffe8ff;
    text-shadow: 
        0 0 8px rgba(255, 180, 255, 0.4),
        0 0 15px rgba(255, 120, 255, 0.25);
}

/* Description text */
.homepage-intro p {
    font-size: 1rem;
    line-height: 1.65;
    color: #f5defa;
    opacity: 0.95;
}

/* Fade-in animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
/* STAR GLOW BACKGROUND ELEMENTS */
.star {
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, #fff8d9, #ffcc66, rgba(0,0,0,0));
    clip-path: polygon(
        50% 0%, 
        61% 35%, 
        98% 35%, 
        68% 57%, 
        79% 91%, 
        50% 70%, 
        21% 91%, 
        32% 57%, 
        2% 35%, 
        39% 35%
    );
    opacity: 0.5;
    filter: blur(1px);
    animation: twinkle 4s ease-in-out infinite;
    z-index: -1;
}

/* LEFT STAR */
.star-left {
    top: 10%;
    left: -40px;
}

/* RIGHT STAR */
.star-right {
    bottom: 15%;
    right: -50px;
}

/* Twinkle animation */
@keyframes twinkle {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.12); opacity: 0.9; }
    100% { transform: scale(1); opacity: 0.5; }
}


/* RESPONSIVE FIXES */
@media (max-width: 900px) {
    .orb-left, .orb-right {
        opacity: 0.35;
        filter: blur(4px);
    }
}
.spread-selector {
    text-align: center;
    margin-bottom: 1rem;
}

.spread-selector select {
    background: rgba(22,18,26,0.65);
    border: 1px solid #b49a72;
    color: #e7dcc9;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
}
.three-card, .celtic-card {
    border: 1px solid #b49a72;
    background: rgba(20,15,26,0.55);
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.celtic-card h3, .three-card h3 {
    color: #f4ecdd;
    margin-bottom: 0.5rem;
}
#daily-draw {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem; /* controls spacing between elements */
}
.spread-selector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.5rem;
}

.spread-selector label {
    font-size: 1rem;
    color: #e7dcc9;
    opacity: 0.9;
}

.spread-selector select {
    background: rgba(22,18,26,0.65);
    border: 1px solid #b49a72;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    color: #e7dcc9;
    font-size: 0.9rem;
    width: 180px;
    text-align: center;
}
#daily-draw h2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}
.reverse-toggle {
    margin-top: 0.2rem;
    margin-bottom: 0.7rem;
}
#draw-button {
    margin-bottom: 0.5rem;
}
.card-frame {
    margin-top: 0.5rem !important;
}
#daily-draw {
    box-shadow: 0 0 25px rgba(180,154,114,0.15);
    padding-bottom: 1.2rem;
    border-radius: 16px;
}

#multi-spread-container {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}
/* Fix mobile blocking multi-card draws */
#daily-draw {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    pointer-events: auto !important;
}
.dictionary-entry {
    text-align: center;
    padding: 1rem;
    background: rgba(20,15,26,0.55);
    border: 1px solid #b49a72;
    border-radius: 14px;
    box-shadow: 0 0 18px rgba(0,0,0,0.45);
}

.dictionary-card-img {
    width: 160px;
    border-radius: 12px;
    cursor: pointer;
    margin-bottom: 10px;
    box-shadow: 0 0 20px rgba(255,80,80,0.45);
    transition: 0.3s ease;
}

.dictionary-card-img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 28px rgba(255,50,50,0.7);
}

.dictionary-details {
    text-align: left;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(15,11,18,0.65);
    border: 1px solid #b49a72;
    box-shadow: 0 0 18px rgba(255,60,60,0.4);
}
.back-button {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 9999;
    color: bisque;
    font-family: inherit;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 6px 12px;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(180,154,114,0.4);
    border-radius: 6px;
    text-shadow: 0 0 8px rgba(180,154,114,0.6);
}

.back-button:hover {
    box-shadow: 0 0 10px rgba(180,154,114,0.5);
}
