:root {
    --bg1: #020206;
    --bg2: #0a0415;
    --purple: #7c3aed;
    --gold: #d4af37;
}
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(180deg, var(--bg1) 0%, var(--bg2) 100%);
    color: #e8e3f5;
    overflow-x: hidden;
}
h1, h2, h3, .serif { font-family: 'Cormorant Garamond', serif; }
.glass {
    background: rgba(18, 12, 34, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(124, 58, 237, 0.18);
}
.gold-text { color: var(--gold); }
.gold-btn {
    background: linear-gradient(95deg, #e4c466 0%, #d4af37 50%, #b89328 100%);
    color: #0a0415;
    box-shadow: 0 8px 30px rgba(212,175,55,0.25), inset 0 1px 0 rgba(255,255,255,0.3);
}
.gold-btn:hover { transform: translateY(-1px); box-shadow: 0 12px 40px rgba(212,175,55,0.35); }
.purple-glow { box-shadow: 0 0 60px rgba(124,58,237,0.25); }
.tarot-card {
    background: radial-gradient(120% 120% at 50% 0%, #24144a 0%, #120927 60%, #07040f 100%);
    border: 1px solid rgba(212,175,55,0.28);
    transition: all .45s cubic-bezier(.2,.8,.2,1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.tarot-card::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 50% -20%, rgba(212,175,55,0.22), transparent 55%);
    opacity: 0; transition: .4s;
    pointer-events: none;
}
.tarot-card:hover { transform: translateY(-8px) scale(1.02); border-color: rgba(212,175,55,0.65); box-shadow: 0 20px 50px rgba(124,58,237,0.35), 0 0 30px rgba(212,175,55,0.18); }
.tarot-card:hover::after { opacity: 1; }
.sigil { pointer-events: none; font-size: 3.25rem; line-height: 1; color: rgba(212,175,55,0.75); text-shadow: 0 0 20px rgba(212,175,55,0.3); transition: .3s; }
.card-name { pointer-events: none; }
.reveal { opacity: 0; transform: translateY(24px); transition: all .9s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.legal-content h2 {
    font-size: 1.35rem;
    color: #fff;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}
.legal-content p, .legal-content li {
    color: rgba(221, 214, 254, 0.78);
    font-size: 0.95rem;
    line-height: 1.7;
}
.legal-content ul { list-style: none; padding: 0; margin: 0.75rem 0 0; }
.legal-content li { margin-bottom: 0.65rem; padding-left: 1rem; border-left: 2px solid rgba(212, 175, 55, 0.35); }
.legal-content strong { color: rgba(253, 230, 138, 0.95); font-weight: 500; }
.legal-content a { color: #d4af37; text-decoration: underline; text-underline-offset: 3px; }
.youtube-facade { cursor: pointer; position: relative; }
.youtube-facade img { width: 100%; height: 100%; object-fit: cover; display: block; }
.youtube-facade-play {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.25); transition: background .2s;
}
.youtube-facade:hover .youtube-facade-play { background: rgba(0,0,0,0.35); }
.youtube-facade-play svg { filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5)); }
.breadcrumb {
    display: flex; flex-wrap: wrap; align-items: center; gap: 0.35rem;
    font-size: 0.75rem; color: rgba(196, 181, 253, 0.55);
}
.breadcrumb a { color: rgba(196, 181, 253, 0.75); transition: color .2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { opacity: 0.45; }
.page-prose p { color: rgba(221, 214, 254, 0.78); font-size: 1rem; line-height: 1.75; }
.page-prose p + p { margin-top: 1rem; }
.page-prose section + section { margin-top: 2.5rem; }
.page-prose h2 { margin-bottom: 0.75rem; }
.inner-page { padding-bottom: 7rem; min-height: calc(100vh - 78px); }
.inner-page + footer { padding-bottom: 6rem; }
.service-hero {
    border-radius: 24px;
    padding: 2rem 1.75rem;
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.12), rgba(18, 12, 34, 0.55));
    border: 1px solid rgba(212, 175, 55, 0.22);
}
@media (min-width: 640px) { .service-hero { padding: 2.5rem 2.25rem; } }
.service-price {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.35);
}
.service-price .amount { font-size: 2rem; line-height: 1.1; font-weight: 600; color: #fff; }
.service-price .detail { font-size: 0.875rem; color: rgba(221, 214, 254, 0.75); }
.service-section { margin-top: 2.75rem; }
.service-section h2 { font-size: 1.5rem; color: #fff; }
@media (min-width: 640px) { .service-section h2 { font-size: 1.75rem; } }
.service-list { list-style: none; padding: 0; margin: 1rem 0 0; }
.service-list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.65rem;
    color: rgba(221, 214, 254, 0.78);
    font-size: 0.95rem;
    line-height: 1.65;
}
.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.75);
}
.service-steps { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.75rem; }
.service-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 1.15rem;
    border-radius: 16px;
    background: rgba(18, 12, 34, 0.45);
    border: 1px solid rgba(124, 58, 237, 0.15);
}
.service-step-num {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: #fde68a;
    background: linear-gradient(180deg, #7c3aed, #5b21b6);
}
.service-note {
    margin-top: 1rem;
    padding: 1rem 1.15rem;
    border-radius: 14px;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.2);
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgba(221, 214, 254, 0.78);
}
.nav-readings-menu {
    position: absolute;
    left: 0;
    top: 100%;
    padding-top: 0.5rem;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s, visibility 0.2s;
}
.nav-readings:hover .nav-readings-menu,
.nav-readings:focus-within .nav-readings-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.nav-readings-panel {
    border-radius: 12px;
    padding: 0.35rem 0;
    background: rgba(12, 8, 24, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(16px);
}
.nav-readings-panel a {
    display: block;
    padding: 0.55rem 1rem;
    font-size: 13px;
    color: rgba(196, 181, 253, 0.85);
    transition: background 0.15s, color 0.15s;
}
.nav-readings-panel a:hover { background: rgba(255, 255, 255, 0.06); color: #fff; }
@media (min-width: 768px) {
    .inner-page { padding-bottom: 5rem; min-height: auto; }
    .inner-page + footer { padding-bottom: 2.5rem; }
}
