@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Cinzel:wght@400;700&family=Cormorant+Garamond:ital,wght@0,400;0,700;1,400&family=UnifrakturMaguntia&family=Pinyon+Script&display=swap');

:root {
    --primary-color: #0a0a0a; /* Midnight */
    --accent-color: #d4af37;  /* Antique Gold */
    --text-color: #e0e0e0;
    --bg-color: #0a0a0a;
    --glass-bg: rgba(26, 26, 26, 0.7);
    --glass-border: rgba(212, 175, 55, 0.2);
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Playfair Display', serif;
    --font-gothic: 'UnifrakturMaguntia', serif;
    --font-script: 'Pinyon Script', cursive;
    --font-serif: 'Cormorant Garamond', serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
    cursor: none !important; /* Default for desktop */
}

/* Hide custom cursor on touch devices for performance and UX */
@media (pointer: coarse) {
    body, a, button, .btn, .path-card, .book-card, .trope-cloud li {
        cursor: auto !important;
    }
    .custom-cursor {
        display: none !important;
    }
}

a, button, .btn, .path-card, .book-card, .trope-cloud li {
    cursor: none !important;
}

h1, h2, h3, .glimmer-text {
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Typography Helpers */
.text-accent { color: var(--accent-color); }
.text-gradient {
    background: linear-gradient(135deg, var(--accent-color), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Components */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: #fff;
    border: 1px solid var(--accent-color);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.btn:hover {
    background: var(--accent-color);
    color: var(--bg-color);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 4px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

header {
    transition: transform 0.3s ease;
}

header.scroll-down {
    transform: translateY(-100%);
}

header.scroll-up {
    transform: translateY(0);
}
/* Spice Meter */
.spice-meter {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    align-items: center;
}

.spice-meter span {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.chili {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    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.3;
}

.chili.filled {
    background: var(--accent-color);
    opacity: 1;
    box-shadow: 0 0 5px var(--accent-color);
}

/* Trope Tags */
.tropes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.trope-tag {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    text-transform: uppercase;
}

/* Gold Glimmer Animation */
@keyframes glimmer {
    0% { background-position: -100%; }
    100% { background-position: 200%; }
}

.glimmer-text {
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
    background-size: 200% 100%;
    animation: glimmer 3s infinite;
}

/* About Teaser */
.about-teaser {
    padding: 8rem 0;
    background: linear-gradient(var(--bg-color), #1a0505);
}

.about-teaser .container {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-teaser .image-frame {
    flex: 1;
    border: 1px solid var(--accent-color);
    padding: 1rem;
}

.about-teaser .content {
    flex: 1.5;
}
/* Header & Nav */
body > header {
    background: rgba(13, 13, 13, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10000; /* Increased to stay above all */
    border-bottom: 1px solid var(--glass-border);
    transition: transform 0.3s ease;
}

nav {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

@media (max-width: 850px) {
    .nav-links {
        display: none; /* Hide for mobile toggle if we add one, or stack */
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        text-align: center;
        border-bottom: 1px solid var(--accent-color);
        z-index: 1000;
    }

.nav-links.active {
        display: flex;
    }

    .mobile-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1001;
    }

    .mobile-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--accent-color);
        transition: var(--transition);
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

@media (min-width: 851px) {
    .mobile-toggle {
        display: none;
    }
}

.ritual-list li strong {
    color: var(--accent-color);
}

/* Falling Feathers Animation */
.feather {
    position: absolute;
    width: 20px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    clip-path: ellipse(25% 50% at 50% 50%);
    pointer-events: none;
    z-index: 5;
    animation: fall linear forwards;
}

@keyframes fall {
    0% {
        transform: translateY(-10vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% {
        transform: translateY(110vh) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

.copy-link-btn {
    background: transparent;
    border: 1px dashed var(--accent-color);
    color: var(--accent-color);
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
    margin-top: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: var(--transition);
}

.copy-link-btn:hover {
    background: var(--accent-color);
    color: var(--bg-color);
}

/* Choose Your Path */
.path-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.path-card {
    text-decoration: none;
    color: var(--text-color);
    padding: 2.5rem;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.path-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
}

.path-card h3 {
    font-family: var(--font-accent);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.path-card .tropes-small {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.path-card .path-btn {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.path-book-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    border-top: 1px dashed var(--glass-border);
    padding-top: 1.5rem;
}

.path-book-list li {
    font-size: 0.9rem;
    opacity: 0.9;
}

.portal-graphic {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: -2rem auto 2rem;
    background-size: cover;
    background-position: center;
    border: 3px solid var(--accent-color);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    position: relative;
    z-index: 5;
    transition: var(--transition);
}

.path-card:hover .portal-graphic {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.6);
}

.path-card-content {
    position: relative;
    z-index: 1;
}

.series-banner {
    padding: 8rem 0 4rem;
    text-align: center;
    background: linear-gradient(to bottom, rgba(10,10,10,1) 0%, rgba(10,10,10,0.8) 50%, rgba(10,10,10,1) 100%);
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 4rem;
}

.series-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 5rem);
    color: var(--accent-color);
    letter-spacing: 10px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.series-subtitle {
    font-family: var(--font-script);
    font-size: 2.22rem;
    color: var(--text-color);
    margin-bottom: 3rem;
    opacity: 0.9;
}

.series-tropes {
    margin: 2rem 0;
}




.path-split-label {
    text-align: center;
    font-family: var(--font-script);
    font-size: 3rem;
    margin: 4rem 0 2rem;
    color: var(--accent-color);
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 2rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Mobile Enhancements for Post View */
@media (max-width: 768px) {
    .post-detail {
        padding-top: 80px;
    }
    .post-header h1 {
        font-size: 2rem;
    }
    .post-body {
        font-size: 1.1rem;
    }
    .post-body blockquote {
        font-size: 1.5rem !important;
        margin: 2rem 0;
        padding-left: 1rem;
    }
    .ritual-box {
        padding: 1.5rem;
    }
}

.hero-name {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 10vw, 7rem) !important;
    color: var(--accent-color);
    letter-spacing: clamp(5px, 2vw, 15px);
    text-transform: uppercase;
    margin: 0 0 1rem 0;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    line-height: 1.1;
}

.hero-subtitle-brand {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1.2rem, 5vw, 2.22rem);
    color: var(--accent-color);
    margin: 0.5rem 0 2rem 0;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero-description {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 650px;
    margin: 0 auto 4rem auto;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
    line-height: 1.6;
}

.scroll-indicator {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.8;
}

.scroll-indicator span {
    font-family: var(--font-heading);
    color: var(--accent-color);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 5px;
    margin-bottom: 1rem;
}


.gothic-title {
    font-family: var(--font-accent);
    font-size: 5rem;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(212,175,55,0.4);
}

.italic-script {
    font-family: var(--font-script);
    font-size: 2.5rem;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .gothic-title { font-size: 3rem; }
    .italic-script { font-size: 1.8rem; }
}


@media (max-width: 768px) {
    .path-container {
        grid-template-columns: 1fr;
    }
    .about-teaser .container {
        flex-direction: column;
        gap: 2rem;
    }
    .hero-description {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
    .container {
        padding: 0 1.5rem;
    }
    .section-title {
        font-size: 2.22rem;
    }
    .portal-grid {
        grid-template-columns: 1fr;
    }
}



/* Hero */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
}

.hero .subtitle {
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
}

.hero .title {
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.btn.secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn.secondary:hover {
    border-color: var(--accent-color);
}

/* Newsletter Bar */
.newsletter-bar {
    padding: 4rem 0;
    margin-top: -4rem;
    position: relative;
    z-index: 10;
}

.newsletter-bar .glass-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.newsletter-bar h3 {
    font-size: 2rem;
    color: var(--accent-color);
}

/* Portals */
.portals {
    padding: 8rem 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
}

.portal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.portal-item {
    position: relative;
    height: 500px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem;
    transition: var(--transition);
}

.book-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    height: 100%;
    overflow: hidden;
    position: relative; /* For badge */
}

.free-badge {
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: var(--accent-color);
    color: var(--bg-color);
    padding: 0.5rem 3rem;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.portal-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transition: transform 0.8s ease;
}

.portal-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(transparent, rgba(13, 13, 13, 0.95));
    z-index: -1;
}

.portal-item:hover .portal-img {
    transform: scale(1.1);
}

.portal-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 0 40px rgba(74, 4, 4, 0.4);
}

.portal-info h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.portal-info p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.portal-link {
    font-weight: 600;
    color: var(--accent-color);
    letter-spacing: 1px;
}

/* Footer */
footer {
    padding: 6rem 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.affiliate-disclaimer {
    font-size: 0.75rem;
    opacity: 0.6;
    letter-spacing: 1px;
    text-transform: uppercase;
    max-width: 600px;
}


/* Page Content */
.page-content {
    padding-top: 20px;
    padding-bottom: 8rem;
}

.series-banner {
    padding: 12rem 0 6rem;
    text-align: center;
    background: linear-gradient(rgba(10,10,10,0.9), rgba(10,10,10,0.9)), url('assets/images/hero.png');
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 2rem;
    position: relative;
}


.series-header {
    text-align: center;
    margin-bottom: 5rem;
}

.series-header h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.series-header .subtitle {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
}

.series-blurb {
    max-width: 800px;
    margin: 0 auto;
}

/* Book Grid */
.book-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 3rem;
}

.book-grid.single-focus {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.book-card {
    transition: var(--transition);
}

.book-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.book-cover {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    border: 1px solid var(--glass-border);
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    background: #000; /* Mask for any transparency or thin lines */
    transform: scale(1.01); /* Slight Zoom to hide edge artifacts */
}

.book-cover-placeholder {
    width: 100%;
    aspect-ratio: 2/3;
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    border: 1px solid var(--glass-border);
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.book-info h3 {
    margin-bottom: 1rem;
}

.book-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--accent-color);
    color: var(--bg-color);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 2px;
    margin-bottom: 1rem;
}

/* Custom Cursor - Elite Edition */
.custom-cursor {
    width: 100px;
    height: 100px;
    background: url('assets/images/quill-cursor-v3.png') no-repeat center center;
    background-size: contain;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s ease-out;
    filter: url(#remove-black); /* Elite transparency trick from Zoe Hale site */
    display: none; 
    transform-origin: bottom left;
}

.custom-cursor.active {
    display: block;
}

.custom-cursor.hover {
    transform: scale(1.15) rotate(5deg);
    filter: url(#remove-black) brightness(1.6) contrast(1.2) drop-shadow(0 0 15px var(--accent-color));
}

a, button, .btn, .path-card, .book-card, .trope-cloud li, .nav-links a, .dossier-card, .text-accent, .blog-card a {
    cursor: none !important;
}

/* Ink Drops / Stardust variant */
.ink-drop {
    position: fixed;
    width: 3px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 50%;
    pointer-events: none !important;
    z-index: 9999;
    filter: blur(1px);
    box-shadow: 0 0 5px var(--accent-color);
    opacity: 0.6;
}

/* Bayou Mist */
.mist-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
}

.mist-cloud {
    position: absolute;
    width: 200%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/asfalt-dark.png'); /* Subtle texture */
    background: radial-gradient(circle at center, rgba(100, 100, 100, 0.1) 0%, transparent 70%);
    filter: blur(50px);
    animation: mistMove 60s linear infinite;
}

@keyframes mistMove {
    0% { transform: translateX(-50%) translateY(10px); }
    50% { transform: translateX(0%) translateY(-10px); }
    100% { transform: translateX(-50%) translateY(10px); }
}

/* About Page */
.about-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-img {
    width: 100%;
    aspect-ratio: 1;
    background: var(--glass-bg);
    border: 1px solid var(--accent-color);
    border-radius: 50%; /* Author Central style usually circle or square with border */
    overflow: hidden;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Blog Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

.blog-card h3 {
    margin: 1rem 0;
}

.blog-meta {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
}

/* Blog Post Detail */
.post-detail {
    max-width: 900px;
    margin: 4rem auto;
    padding: 6rem;
}

.post-header {
    margin-bottom: 4rem;
    text-align: center;
}

.post-header h1 {
    font-size: 4rem;
    margin: 1.5rem 0;
    line-height: 1.1;
    color: var(--accent-color);
}

.post-intro {
    font-size: 1.4rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

.post-body {
    font-size: 1.2rem;
    line-height: 2;
    font-family: var(--font-serif);
}

.post-body h3 {
    font-size: 2.2rem;
    margin: 4rem 0 1.5rem;
    color: var(--accent-color);
    border-left: 4px solid var(--accent-color);
    padding-left: 1.5rem;
}

.post-body p {
    margin-bottom: 2.5rem;
}

.ritual-box {
    background: rgba(212, 175, 55, 0.05);
    border: 1px dashed var(--accent-color);
    padding: 3rem;
    margin: 4rem 0;
}

.ritual-box h4 {
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.post-body blockquote {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    color: #fff;
    text-align: center;
    margin: 6rem 0;
    font-style: italic;
    line-height: 1.3;
}

.post-footer {
    border-top: 1px solid var(--glass-border);
    padding-top: 4rem;
    margin-top: 6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.post-tags {
    display: flex;
    gap: 1rem;
}

.tag {
    font-size: 0.8rem;
    color: var(--accent-color);
    opacity: 0.7;
}

/* Recommendations Section */
.recommendations-section {
    margin-top: 8rem;
    padding-top: 4rem;
    border-top: 1px solid var(--glass-border);
}

.recommendations-section h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.recommendation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.rec-card {
    display: flex;
    gap: 2rem;
    padding: 3rem;
    align-items: center;
}

.rec-cover {
    width: 140px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
}

.rec-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 0.2rem;
}

.rec-info .author {
    font-style: italic;
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 1.5rem;
}

.rec-blurb {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

a, button, .btn, .path-card, .book-card, .trope-cloud li, .nav-links a, .dossier-card, .text-accent, .blog-card a, .post-footer a, .recommendation-grid a {
    cursor: none !important;
}
