/* ==========================================================================
   DESIGN SYSTEM & CSS INITIALIZATION
   ========================================================================== */
:root {
    --bg-black: #000000;
    --bg-obsidian: #050505;
    --bg-card: #0a0a0a;
    --bg-card-hover: #121212;
    
    --text-pure: #ffffff;
    --text-primary: #e5e5e5;
    --text-muted: rgba(255, 255, 255, 0.72);
    
    --gold: #d4af37;
    --gold-glow: rgba(212, 175, 55, 0.2);
    --gold-glow-intense: rgba(212, 175, 55, 0.6);
    --white-glow: rgba(255, 255, 255, 0.15);
    
    --text-glow-white: 0 0 15px rgba(255, 255, 255, 0.35), 0 0 30px rgba(255, 255, 255, 0.15);
    --text-glow-gold: 0 0 15px rgba(212, 175, 55, 0.75), 0 0 30px rgba(212, 175, 55, 0.3);
    
    --font-header: 'Cinzel Decorative', Georgia, serif;
    --font-sans: 'Space Grotesk', sans-serif;
    --font-serif: 'Playfair Display', serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
    box-sizing: border-box;
    background-color: var(--bg-black);
}

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

body {
    background-color: var(--bg-black);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
}

#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1; /* Raised above body background color */
    pointer-events: none;
    background: transparent;
}

section, header, footer, .offcanvas-drawer, .lightbox-modal {
    position: relative;
    z-index: 2; /* Renders above the particles */
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4 {
    font-weight: 700;
    letter-spacing: 0.1em;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ==========================================================================
   STICKY CAPSULED HEADER
   ========================================================================== */
.main-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 1000px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50px;
    padding: 10px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}
.logo:hover {
    transform: perspective(600px) rotateY(15deg) scale(1.05);
}

.logo .cross-icon {
    font-size: 1.3rem;
    color: var(--gold);
    display: inline-block;
    text-shadow: 1px 1px 0px #856404, 2px 2px 0px #533f03, 3px 3px 5px rgba(0,0,0,0.6);
    transition: transform 0.4s ease;
    transform: translateZ(10px);
}

.logo-text {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.25em;
    color: var(--text-pure);
    text-shadow: var(--text-glow-white);
}

.nav-pills {
    display: flex;
    gap: 5px;
}

.nav-link {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 20px;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-pure);
    background: rgba(255, 255, 255, 0.06);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

/* White Glowing Capsule Buttons matching mockup exactly */
.btn-white-glow {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-pure);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.08);
    font-size: 0.72rem;
    font-family: var(--font-sans);
    font-weight: 500;
}

.btn-white-glow:hover {
    background: var(--text-pure);
    color: var(--bg-black);
    border-color: var(--text-pure);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.btn-primary {
    background: transparent;
    color: var(--text-pure);
    border: 1px solid var(--gold);
    box-shadow: 0 0 15px var(--gold-glow);
}

.btn-primary:hover {
    background: var(--gold);
    color: var(--bg-black);
    box-shadow: 0 0 25px var(--gold-glow-intense);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-pure);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.03);
}

.btn-secondary:hover {
    background: var(--text-pure);
    color: var(--bg-black);
    border-color: var(--text-pure);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* ==========================================================================
   HERO SECTION (HOME)
   ========================================================================== */
.hero-section {
    width: 100%;
    min-height: auto;
    padding: 95px 0 0 0; /* Push below navigation bar */
    position: relative;
    background: transparent; /* Changed to transparent for canvas visibility */
    overflow: hidden;
}

#home {
    background: none;
}

.hero-image-wrapper {
    position: relative;
    width: 95%;
    max-width: 1200px;
    height: auto;
    margin: 20px auto 40px auto;
    overflow: hidden;
    border-radius: 20px;
    border: 1.5px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 20px 50px rgba(0,0,0,0.95), 0 0 35px rgba(212, 175, 55, 0.15);
}

/* Light sweep reflection effect simulating studio camera pan/looping video */
.hero-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 80%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(255, 255, 255, 0.0) 20%,
        rgba(212, 175, 55, 0.12) 50%,
        rgba(255, 255, 255, 0.0) 80%,
        transparent 100%
    );
    transform: skewX(-25deg);
    animation: lightSweep 12s infinite ease-in-out;
    pointer-events: none;
}

@keyframes lightSweep {
    0% { left: -150%; }
    50% { left: 150%; }
    100% { left: 150%; }
}

.hero-full-width-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: inherit;
    box-shadow: none;
    animation: cinematicScale 25s infinite alternate ease-in-out;
    transform-origin: center right; /* Focus zoom towards the statue */
}

@keyframes cinematicScale {
    0% { transform: scale(1.0); }
    100% { transform: scale(1.05); }
}

#home-plain {
    background: linear-gradient(to right, #000000 45%, rgba(0, 0, 0, 0.4) 65%, transparent 100%), url('statue-plain.png') no-repeat right center / cover;
}

.hero-container {
    width: 100%;
    max-width: 1100px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 35px;
    position: relative;
}

/* Left Hero Box styling */
.hero-left {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: transparent;
    padding: 40px 0;
    z-index: 2;
}

/* Section 1B: Plain Chrome Statue Hero Section */
.hero-plain-container {
    background-image: none !important;
}

.hero-plain-left {
    background-color: transparent !important;
    padding: 40px 0 !important;
    z-index: 2;
}

.statue-plain-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: none;
}

/* Matching the top left icon in mockup */
.symbol-box-mock {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 1.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 18px rgba(212, 175, 55, 0.35);
    margin-bottom: 35px;
    background: var(--bg-card);
}

.hero-title {
    font-family: var(--font-sans);
    font-size: 3.4rem;
    line-height: 1.1;
    color: var(--text-pure);
    margin-bottom: 25px;
    letter-spacing: 0.05em;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: var(--text-glow-white);
}

.hero-subtitle {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.25em;
    line-height: 1.6;
    margin-bottom: 45px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* Decorative Icons exactly matching mockup positions */
.decorative-icon-left {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    border: 1.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 18px rgba(212, 175, 55, 0.35);
    margin-top: 60px;
    background: var(--bg-card);
}

.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.decorative-icon-right {
    position: absolute;
    bottom: 50px;
    right: 20px;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    border: 1.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 18px rgba(212, 175, 55, 0.35);
    background: var(--bg-card);
    z-index: 5;
}

/* Savior Image Center matching the mockup directly (Using Img tag classes) */
.liquid-chrome-art-container {
    width: 440px;
    height: 480px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.statue-cropped-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: none; /* Hidden on desktop since we use the container background */
}

.statue-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 55%, #000000 98%);
    pointer-events: none;
}

/* ==========================================================================
   GLOW EFFECTS FOR IMPORTANT CARDS & FEATURES
   ========================================================================== */
/* Glowing Gold Hover class */
.hover-glow-gold {
    transition: var(--transition-smooth);
}
.hover-glow-gold:hover {
    border-color: var(--gold) !important;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.25) !important;
    transform: translateY(-5px);
}

/* Glowing White Hover class */
.hover-glow-white {
    transition: var(--transition-smooth);
}
.hover-glow-white:hover {
    border-color: rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.15) !important;
    transform: translateY(-5px);
}

/* Active glowing state for cards */
.glow-card-gold {
    border: 1px solid var(--gold) !important;
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.22) !important;
    animation: pulseBorderGlow 3s infinite ease-in-out;
}

@keyframes pulseBorderGlow {
    0%, 100% { box-shadow: 0 0 35px rgba(212, 175, 55, 0.15); }
    50% { box-shadow: 0 0 50px rgba(212, 175, 55, 0.3); }
}

/* ==========================================================================
   HIGHLIGHT CARDS (BOTTOM OF HERO)
   ========================================================================== */
.quick-highlights {
    width: 100%;
    max-width: 1100px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.highlight-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 18px;
    padding: 30px 25px;
}

.highlight-icon-wrapper {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.highlight-card:hover .highlight-icon-wrapper {
    border-color: var(--gold);
    box-shadow: 0 0 10px var(--gold-glow);
}

.highlight-card h3 {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-pure);
    margin-bottom: 10px;
    letter-spacing: 0.15em;
}

.highlight-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   GENERIC SECTION WRAPPER
   ========================================================================== */
.section-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 35px 20px; /* Reduced vertical margins for a compact design */
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-pure);
    letter-spacing: 0.25em;
    margin-bottom: 20px;
    text-shadow: var(--text-glow-white);
}

.divider {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 25px auto;
    box-shadow: 0 0 8px var(--gold-glow);
}

.section-description {
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   SECTION 2: MUSIC & MEDIA
   ========================================================================== */
.music-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.tab-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    padding: 10px 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tab-btn:hover, .tab-btn.active {
    color: var(--text-pure);
    border-color: var(--text-pure);
    box-shadow: 0 0 10px var(--white-glow);
}

/* Spotify Showcase Card */
.spotify-showcase {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 35px;
    margin-top: 30px; /* Space between open expanded canvas button and Spotify card */
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    align-items: center;
    transition: var(--transition-smooth);
}

.spotify-showcase:hover {
    border-color: var(--gold);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.15);
}

.spotify-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.spotify-info h3 {
    font-size: 1.4rem;
    color: var(--text-pure);
    margin-bottom: 15px;
    letter-spacing: 0.15em;
    text-shadow: var(--text-glow-white);
}

.spotify-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}

.spotify-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 600;
}

.spotify-embed-container {
    width: 100%;
}

/* Channel Selector Layout */
.channel-selector {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.channel-btn {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    padding: 14px 28px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    transition: var(--transition-smooth);
}

.channel-btn:hover, .channel-btn.active {
    color: var(--text-pure);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.channel-icon {
    width: 16px;
    height: 16px;
    color: var(--gold);
}

.video-thumbnail-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #181818 0%, #080808 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.video-card:hover .video-thumbnail-placeholder {
    background: radial-gradient(circle, #222 0%, #0a0a0a 100%);
}

.thumbnail-play-icon {
    width: 50px;
    height: 50px;
    color: var(--text-muted);
    margin-bottom: 12px;
    transition: var(--transition-smooth);
}

.video-card:hover .thumbnail-play-icon {
    color: var(--gold);
    transform: scale(1.15);
    filter: drop-shadow(0 0 10px var(--gold-glow-intense));
}

.thumbnail-overlay-text {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.video-card:hover .thumbnail-overlay-text {
    color: var(--text-pure);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.video-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
}

.iframe-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-info {
    padding: 25px;
}

.genre-tag {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    display: inline-block;
    margin-bottom: 10px;
}

.video-info h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-pure);
    margin-bottom: 8px;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.25);
}

.video-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ==========================================================================
   SECTION 3: PRAYERS & MOOD SELECTOR
   ========================================================================== */
.mood-selector-container {
    text-align: center;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 35px;
}

.mood-selector-container h3 {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.mood-chips {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
    padding: 10px 5px;
}

.mood-chip {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    padding: 12px 22px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-smooth);
    width: 100%;
}

@media (max-width: 768px) {
    .mood-chips {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

.mood-chip:hover, .mood-chip.active-chip {
    border-color: var(--gold);
    color: var(--text-pure);
    box-shadow: 0 0 15px var(--gold-glow);
    transform: translateY(-2px);
}

.mood-icon {
    width: 14px;
    height: 14px;
}

.mood-display-card {
    background: #050505;
    border-radius: 20px;
    overflow: hidden;
}

.mood-display-card.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    display: none;
}

.mood-card-header {
    background: rgba(255, 255, 255, 0.01);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mood-label-glow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
    text-shadow: 0 0 10px var(--gold-glow);
}

.close-card {
    background: transparent;
    border: 0;
    color: var(--text-muted);
    font-size: 1.4rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.close-card:hover {
    color: var(--text-pure);
}

.mood-card-body {
    padding: 35px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.verse-panel, .prayer-panel, .reflection-panel {
    background: rgba(255, 255, 255, 0.005);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.panel-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.verse-panel h4, .prayer-panel h4, .reflection-panel h4 {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--text-pure);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.scripture-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-primary);
    margin-bottom: 15px;
    flex-grow: 1;
}

.scripture-ref, .prayer-ref {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.1em;
}

.prayer-text {
    font-size: 0.8rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    flex-grow: 1;
}

.reflection-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   SECTION 4: DISCOVER
   ========================================================================== */
.discover-nav {
    display: flex;
    justify-content: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    width: fit-content;
    margin: 0 auto 25px auto;
    padding: 4px;
}

.disc-nav-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: var(--text-muted);
    padding: 10px 25px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 35px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.disc-nav-btn:hover {
    border-color: rgba(212, 175, 55, 0.5);
    color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.disc-nav-btn.active {
    color: var(--text-pure);
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.discover-tab-content {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.discover-tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Tab 1: Core Teachings */
.teachings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.teach-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.teach-card h3 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-pure);
    letter-spacing: 0.15em;
    margin-bottom: 12px;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.25);
}

.teach-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.expandable-text {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    opacity: 0;
}

.teach-card.expanded .expandable-text {
    max-height: 800px;
    opacity: 1;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.expandable-text h4 {
    font-size: 0.7rem;
    color: var(--gold);
    margin-top: 12px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.expandable-text p {
    margin-bottom: 8px;
    font-size: 0.7rem;
}

.btn-read-more {
    background: transparent;
    border: 0;
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition-smooth);
}

.btn-read-more:hover {
    color: var(--text-pure);
}

/* Trinity Shield CSS Visual graphic */
.trinity-visual {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.trinity-shield {
    position: relative;
    width: 200px;
    height: 180px;
    background: transparent;
}

.shield-node {
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #050505;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
}

#node-father { top: 0; left: 0; }
#node-son { top: 0; right: 0; }
#node-spirit { bottom: 0; left: 50%; transform: translateX(-50%); }
#node-god { 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    border-color: var(--gold); 
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4); 
    animation: goldGlowPulse 3s infinite ease-in-out;
}

@keyframes goldGlowPulse {
    0%, 100% { box-shadow: 0 0 10px rgba(212, 175, 55, 0.3); }
    50% { box-shadow: 0 0 18px rgba(212, 175, 55, 0.6); }
}

.shield-link {
    position: absolute;
    font-size: 0.45rem;
    text-transform: uppercase;
    font-weight: 700;
    background: #000;
    padding: 2px 6px;
    border-radius: 5px;
    z-index: 5;
}

.shield-link.is-link {
    color: var(--gold);
}

.shield-link.is-not-link {
    color: var(--text-muted);
}

/* Connecting borders visually representing paths */
.trinity-shield:after {
    content: '';
    position: absolute;
    top: 26px;
    left: 26px;
    width: 148px;
    height: 128px;
    border: 1px dashed rgba(255, 255, 255, 0.04);
    z-index: 1;
}

/* Tab 2: Saints Grid */
.saints-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.saint-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.saint-img-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.01);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.saint-avatar-icon {
    width: 18px;
    height: 18px;
    color: var(--gold);
}

.saint-info h3 {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-pure);
    letter-spacing: 0.08em;
    margin-bottom: 2px;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.25);
}

.saint-title {
    font-size: 0.6rem;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 10px;
}

.saint-info p {
    font-size: 0.7rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Tab 3: Apologetics & Accordion */
.apologetics-container {
    max-width: 800px;
    margin: 0 auto;
}

.subsection-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--text-pure);
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: var(--text-glow-white);
}

.subsection-title.mar-top {
    margin-top: 40px;
}

.accordion-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 20px 25px;
    text-align: left;
    color: var(--text-pure);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.25);
}

.accordion-arrow {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
    color: var(--gold);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: rgba(255, 255, 255, 0.003);
}

.accordion-content p {
    padding: 0 25px 20px 25px;
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.6;
}



/* ==========================================================================
   SECTION 6: MERCH
   ========================================================================== */
.merch-section {
    background: transparent; /* Transparent for particles visibility */
}

.merch-container {
    display: flex;
    justify-content: center;
}

.merch-showcase-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    width: 100%;
    max-width: 750px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.merch-img-box {
    background: radial-gradient(circle, #151515 0%, #050505 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 300px;
    border-right: 1px solid rgba(255, 255, 255, 0.03);
}

.merch-placeholder-icon {
    width: 70px;
    height: 70px;
    color: var(--text-muted);
    opacity: 0.25;
}

.merch-overlay-glow {
    position: absolute;
    bottom: 25px;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-shadow: 0 0 10px var(--gold-glow);
}

.merch-details {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.merch-details h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-pure);
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
}

.price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
}

.merch-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 30px;
}

.merch-btn {
    width: fit-content;
    gap: 8px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 35px 20px;
    text-align: center;
    background: transparent; /* Transparent for particles visibility */
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-links a {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--text-pure);
}

.copyright {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.motto {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 0.05em;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 968px) {
    #home, #home-plain {
        background: var(--bg-black) !important;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 35px;
    }
    
    .hero-left {
        align-items: center;
        background-color: transparent !important; /* Transparent on mobile */
        padding: 0 !important;
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .symbol-box-mock {
        margin: 0 auto 30px auto;
    }
    
    .decorative-icon-left {
        margin: 30px auto 0 auto;
    }
    
    .decorative-icon-right {
        display: none;
    }
    
    .statue-cropped-img, .statue-plain-img {
        display: block !important; /* Show the cropped image fallback on mobile */
        margin: 0 auto;
    }
    
    .liquid-chrome-art-container {
        width: 320px;
        height: 340px;
    }
    
    .quick-highlights {
        grid-template-columns: 1fr;
    }
    
    .spotify-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 25px;
        text-align: center;
    }

    .spotify-info {
        text-align: center;
        align-items: center;
    }

    .spotify-badge {
        justify-content: center;
        margin-bottom: 10px;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .mood-card-body {
        grid-template-columns: 1fr;
    }
    
    .teachings-grid {
        grid-template-columns: 1fr;
    }
    
    .saints-grid {
        grid-template-columns: 1fr;
    }
    

    
    .merch-showcase-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .main-header {
        padding: 8px 15px;
    }
    
    .nav-pills {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .liquid-chrome-art-container {
        width: 270px;
        height: 290px;
    }
}

/* ==========================================================================
   OFFCANVAS VIDEO LIBRARY DRAWER & MODAL
   ========================================================================== */
.offcanvas-drawer {
    position: fixed;
    top: 0;
    right: -460px;
    width: 460px;
    max-width: 100%;
    height: 100vh;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(212, 175, 55, 0.15);
    z-index: 2500;
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.9);
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
}

.offcanvas-drawer.open {
    right: 0;
}

.drawer-header {
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.drawer-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-pure);
}

.close-drawer {
    background: transparent;
    border: 0;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.close-drawer:hover {
    color: var(--text-pure);
}

.drawer-subheader {
    padding: 15px 30px;
    background: rgba(212, 175, 55, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.active-channel-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-shadow: 0 0 10px var(--gold-glow);
}

.drawer-content {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px 30px;
}

.drawer-video-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.drawer-video-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.drawer-video-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(-3px);
}

.drawer-item-num {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    font-family: var(--font-sans);
}

.drawer-item-details {
    flex-grow: 1;
}

.drawer-video-item:hover .drawer-item-num {
    color: var(--gold);
}

.drawer-item-details h4 {
    font-size: 0.8rem;
    color: var(--text-primary);
    margin-bottom: 4px;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.4;
    transition: var(--transition-smooth);
}

.drawer-video-item:hover .drawer-item-details h4 {
    color: var(--text-pure);
}

.drawer-item-details span {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.drawer-item-play {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.drawer-video-item:hover .drawer-item-play {
    color: var(--gold);
    filter: drop-shadow(0 0 5px var(--gold-glow));
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2490;
    display: none;
}

/* Cinema Lightbox Modal Player */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(15px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox-container {
    width: 90%;
    max-width: 960px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.close-lightbox {
    position: absolute;
    top: -45px;
    right: 0;
    background: transparent;
    border: 0;
    color: var(--text-muted);
    font-size: 2.2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.close-lightbox:hover {
    color: var(--text-pure);
}

.lightbox-player-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    border: 1.5px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
}

.lightbox-player-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.lightbox-title {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-pure);
    text-align: center;
}

.library-cta-container {
    display: flex;
    justify-content: center;
    margin-top: 45px;
}

.library-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 0.75rem;
}

@media (max-width: 600px) {
    .offcanvas-drawer {
        width: 100%;
        right: -100%;
    }
    .offcanvas-drawer.open {
        right: 0;
    }
    .drawer-content {
        padding: 15px;
    }
}


/* Custom Hero Gold Pill Button */
.btn-gold-pill {
    background: linear-gradient(135deg, #d4af37 0%, #aa7c11 100%);
    color: #000000 !important;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    border: none;
    padding: 14px 40px;
    border-radius: 30px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.btn-gold-pill:hover {
    background: linear-gradient(135deg, #f3e5ab 0%, #d4af37 100%);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.7);
    transform: translateY(-2px);
    color: #000000 !important;
}

/* Inline Video Wrapper (Faith and Discover sections) */
.inline-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 25px auto;
    padding-top: 45%; /* Wider cinematic aspect ratio */
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.12);
}
.inline-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   GLOW UTILITIES & AD LAYOUTS
   ========================================================================== */
.glow-gold-text {
    color: var(--gold) !important;
    text-shadow: var(--text-glow-gold);
}

.glow-white-text {
    color: var(--text-pure) !important;
    text-shadow: var(--text-glow-white) !important;
}

.glow-gold-border {
    border: 1px solid var(--gold) !important;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.25) !important;
}

/* Google Adsense placeholders styling */
.google-ad-placeholder {
    background: #080808;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 15px;
    margin: 15px auto 25px auto;
    overflow: hidden;
}

.google-ad-label {
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.25em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.google-ad-placeholder.horizontal-ad-placeholder {
    width: 100%;
    max-width: 800px;
    min-height: 140px; /* Fits 728x90 Google ad with padding */
}

.google-ad-placeholder.vertical-ad-placeholder {
    width: 250px;
    min-height: 650px; /* Fits 160x600 Google ad with padding */
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.03);
    background: var(--bg-card);
}

/* Explore layout grid with skyscraper */
.media-layout-wrapper {
    display: grid;
    grid-template-columns: 1fr 250px;
    gap: 30px;
    margin-bottom: 40px;
    align-items: stretch;
}

.video-grid-side {
    width: 100%;
}

@media (max-width: 968px) {
    .media-layout-wrapper {
        grid-template-columns: 1fr;
    }
    .google-ad-placeholder.vertical-ad-placeholder {
        width: 100%;
        min-height: 250px;
        margin-top: 20px;
    }
}

/* Resources Section Details Layout */
.resources-details-content {
    padding: 0 25px 20px 25px;
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.resources-details-content p {
    padding: 0 0 10px 0 !important;
}

.resources-details-content ul {
    padding-left: 20px;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.resources-details-content li {
    margin-bottom: 5px;
    font-size: 0.72rem;
}

/* ==========================================================================
   SACRED CHANTS & TRANSLATION GRID STYLING
   ========================================================================== */
.translation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 25px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
    padding-bottom: 25px;
}

.translation-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.column-header {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
    border-bottom: 1.5px solid rgba(212, 175, 55, 0.25);
    padding-bottom: 6px;
    margin-bottom: 8px;
    text-shadow: var(--text-glow-gold);
}

.chant-text-block {
    font-size: 0.82rem;
    line-height: 1.8;
    white-space: pre-line;
}

.latin-col .chant-text-block {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--text-pure);
}

.english-col .chant-text-block {
    font-family: var(--font-sans);
    color: var(--text-primary);
}

.chant-context-box {
    background: rgba(212, 175, 55, 0.02);
    border-left: 2px solid var(--gold);
    padding: 20px 25px;
    border-radius: 4px;
    margin-top: 15px;
    box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.02);
}

.chant-context-box h4 {
    color: var(--gold);
    font-size: 0.75rem;
    margin-bottom: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.chant-context-box p {
    font-size: 0.72rem;
    line-height: 1.6;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .translation-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* ==========================================================================
   COOKIE CONSENT BANNER STYLING
   ========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 620px;
    background: rgba(5, 5, 5, 0.92);
    backdrop-filter: blur(15px);
    border: 1px solid var(--gold);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.95), 0 0 25px rgba(212, 175, 55, 0.25);
    border-radius: 16px;
    padding: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.5s ease;
}

.cookie-banner.cookie-hidden {
    transform: translate(-50%, 150%);
    opacity: 0;
    pointer-events: none;
}

.cookie-text h4 {
    font-size: 0.85rem;
    color: var(--text-pure);
    margin-bottom: 6px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.cookie-text p {
    font-size: 0.7rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.btn-cookie-accept {
    background: linear-gradient(135deg, #d4af37 0%, #aa7c11 100%);
    color: #000000;
    border: none;
    font-weight: 700;
    font-size: 0.68rem;
    padding: 8px 20px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    transition: var(--transition-smooth);
}

.btn-cookie-accept:hover {
    background: linear-gradient(135deg, #f3e5ab 0%, #d4af37 100%);
    box-shadow: 0 0 18px rgba(212, 175, 55, 0.6);
    transform: translateY(-1px);
}

.btn-cookie-deny {
    background: transparent;
    color: var(--text-pure);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 600;
    font-size: 0.68rem;
    padding: 8px 20px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-cookie-deny:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}

/* ==========================================================================
   CONTACT US FORM STYLING
   ========================================================================== */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 550px;
    margin-top: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-grow: 1;
}

.form-group label {
    font-size: 0.62rem;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.form-control {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-pure);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.72rem;
    font-family: var(--font-sans);
    transition: var(--transition-smooth);
    width: 100%;
}

.form-control:focus {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.02);
    outline: none;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
}

textarea.form-control {
    min-height: 110px;
    resize: vertical;
}

.btn-submit {
    align-self: flex-start;
    margin-top: 10px;
    padding: 10px 24px;
    font-size: 0.68rem;
    border-radius: 20px;
}

.form-success-msg {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--gold);
    border-radius: 8px;
    color: var(--text-pure);
    padding: 15px 20px;
    font-size: 0.72rem;
    text-align: center;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
    margin-top: 15px;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
}

/* 3D Glowing Emoji Class */
.glowing-emoji {
    display: inline-block;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    margin-right: 8px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    text-shadow: 1px 1px 0px #333, 2px 2px 0px #222, 3px 3px 0px #111;
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.35s ease;
}
.mood-chip:hover .glowing-emoji,
.glowing-emoji:hover {
    transform: scale(1.35) translateY(-5px) rotate(8deg);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.45)) drop-shadow(0 0 15px rgba(212, 175, 55, 0.6)) drop-shadow(0 6px 12px rgba(0, 0, 0, 0.7));
    text-shadow: 1px 1px 0px #d4af37, 2px 2px 0px #aa7c11, 3px 3px 5px rgba(0,0,0,0.8);
}


/* ==========================================================================
   BLOG & JOURNAL STYLING
   ========================================================================== */
.blog-search-bar {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 30px auto;
    position: relative;
}
.blog-search-bar input {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 14px 25px;
    color: var(--text-pure);
    font-size: 0.85rem;
    font-family: var(--font-sans);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}
.blog-search-bar input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
    outline: none;
}
.blog-categories {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.blog-cat-pill {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    padding: 8px 20px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.blog-cat-pill:hover, .blog-cat-pill.active {
    color: var(--text-pure);
    border-color: var(--gold);
    box-shadow: 0 0 12px var(--gold-glow);
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}
@media (max-width: 968px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .blog-grid { grid-template-columns: 1fr; }
}
.blog-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    position: relative;
    cursor: pointer;
}
.blog-card:hover {
    border-color: var(--gold);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.18);
    transform: translateY(-5px);
}
.blog-card-emoji {
    font-size: 2.2rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5));
}
.blog-card-meta {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 10px;
}
.blog-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-pure);
    line-height: 1.3;
    margin-bottom: 12px;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.1);
}
.blog-card p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}
.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.03);
    padding-top: 15px;
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--text-muted);
}
.blog-card-date {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Modal Post Viewer */
.modal-viewer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal-viewer-content {
    background: var(--bg-obsidian);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 25px 60px rgba(0,0,0,0.9), 0 0 40px rgba(212, 175, 55, 0.1);
    border-radius: 24px;
    width: 100%;
    max-width: 900px;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    animation: modalSlideUp 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.modal-viewer-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: transparent;
    border: 0;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
}
.modal-viewer-close:hover {
    color: var(--text-pure);
}
.modal-viewer-body {
    padding: 50px;
    overflow-y: auto;
    flex-grow: 1;
}
.modal-post-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px dashed rgba(255,255,255,0.08);
    padding-bottom: 30px;
}
.modal-post-emoji {
    font-size: 3.5rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}
.modal-post-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-pure);
    letter-spacing: 0.05em;
    margin-bottom: 15px;
    text-shadow: var(--text-glow-white);
    line-height: 1.25;
}
.modal-post-meta {
    font-size: 0.72rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
}
.modal-post-blocks {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.modal-post-blocks p {
    font-size: 0.88rem;
    line-height: 1.8;
    color: var(--text-primary);
}
.modal-post-blocks blockquote {
    background: rgba(212,175,55,0.02);
    border-left: 3px solid var(--gold);
    padding: 20px 30px;
    border-radius: 4px;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-pure);
    margin: 15px 0;
}

/* ==========================================================================
   ADMIN LOGIN GATEWAY & POST BUILDER
   ========================================================================== */
.admin-login-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
}
.login-box {
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.95), 0 0 35px rgba(212, 175, 55, 0.1);
    text-align: center;
}
.login-box h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-pure);
    margin-bottom: 25px;
    letter-spacing: 0.1em;
    text-shadow: var(--text-glow-white);
}
.login-err {
    color: #ff4444;
    font-size: 0.72rem;
    font-weight: 600;
    margin-top: 15px;
    display: none;
    text-shadow: 0 0 8px rgba(255, 68, 68, 0.3);
}
.admin-dashboard {
    width: 100%;
    max-width: 1100px;
    margin: 100px auto 50px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: start;
}
@media (max-width: 968px) {
    .admin-dashboard { grid-template-columns: 1fr; margin-top: 80px; }
}
.admin-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}
.admin-card h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-pure);
    margin-bottom: 25px;
    letter-spacing: 0.15em;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    padding-bottom: 15px;
    text-shadow: var(--text-glow-white);
}
.form-row-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.admin-block-builder {
    margin-top: 25px;
    border-top: 1px dashed rgba(255,255,255,0.06);
    padding-top: 25px;
}
.builder-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.btn-block-action {
    background: rgba(255,255,255,0.02);
    border: 1px dashed rgba(255,255,255,0.12);
    color: var(--text-muted);
    padding: 8px 16px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.btn-block-action:hover {
    color: var(--text-pure);
    border-color: var(--gold);
    background: rgba(212,175,55,0.02);
}
.builder-blocks-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.builder-block-item {
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 8px;
    padding: 15px;
    position: relative;
}
.builder-block-item h4 {
    font-size: 0.65rem;
    color: var(--gold);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.remove-block-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: 0;
    color: rgba(255, 68, 68, 0.6);
    cursor: pointer;
    font-size: 0.8rem;
    transition: var(--transition-smooth);
}
.remove-block-btn:hover {
    color: #ff4444;
}
.preview-pane {
    background: #020202;
    border: 1px solid rgba(212,175,55,0.12);
    border-radius: 20px;
    padding: 30px;
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 150px);
    overflow-y: auto;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.8);
}
.preview-empty {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    padding: 40px 0;
}
.admin-instruction-box {
    margin-top: 30px;
    background: rgba(212,175,55,0.02);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 12px;
    padding: 20px 25px;
}
.admin-instruction-box h3 {
    font-size: 0.78rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.admin-instruction-box ol {
    padding-left: 20px;
    color: var(--text-muted);
    font-size: 0.7rem;
    line-height: 1.6;
}
.admin-instruction-box li {
    margin-bottom: 8px;
}
.admin-instruction-box strong {
    color: var(--text-pure);
}

/* ==========================================================================
   LIVE STORE IFRAME & MEDIA INTEGRATIONS
   ========================================================================== */
.live-store-container {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    background: rgba(10, 10, 10, 0.85);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.95), 0 0 35px rgba(212, 175, 55, 0.1);
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(10px);
}

.live-store-iframe {
    width: 100%;
    height: 650px;
    border: none;
    display: block;
    background: transparent;
}

/* Spotify and Google Ad containers inside modal */
.modal-spotify-container {
    margin: 30px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
}

.modal-ad-container {
    margin: 30px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    text-align: center;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.6);
}

.modal-ad-label {
    font-size: 0.55rem;
    color: var(--gold);
    letter-spacing: 0.2em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

/* Social Share Controls */
.modal-share-bar {
    display: flex;
    gap: 12px;
    margin: 30px 0 15px 0;
    padding-top: 20px;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
    justify-content: center;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-muted);
}

.share-btn:hover {
    color: var(--text-pure);
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.share-btn.twitter:hover {
    border-color: #1da1f2;
    background: rgba(29, 161, 242, 0.1);
    box-shadow: 0 0 10px rgba(29, 161, 242, 0.2);
    color: #1da1f2;
}

.share-btn.facebook:hover {
    border-color: #1877f2;
    background: rgba(24, 119, 242, 0.1);
    box-shadow: 0 0 10px rgba(24, 119, 242, 0.2);
    color: #1877f2;
}

/* Read time badge */
.read-time-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--gold);
    font-weight: 600;
}

/* Recover Draft Alert Banner */
.draft-alert-banner {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    animation: pulseGlow 2s infinite alternate;
}

.draft-alert-banner span {
    font-size: 0.78rem;
    color: var(--text-pure);
}

.draft-alert-actions {
    display: flex;
    gap: 10px;
}

.draft-alert-btn {
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    cursor: pointer;
    border: 1px solid transparent;
    text-transform: uppercase;
}

.draft-alert-btn.recover {
    background: var(--gold);
    color: #000;
}

.draft-alert-btn.recover:hover {
    background: #f3e5ab;
}

.draft-alert-btn.dismiss {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-muted);
}

.draft-alert-btn.dismiss:hover {
    border-color: var(--text-pure);
    color: var(--text-pure);
}

@keyframes pulseGlow {
    from { box-shadow: 0 0 10px rgba(212, 175, 55, 0.1); }
    to { box-shadow: 0 0 20px rgba(212, 175, 55, 0.3); }
}

/* ==========================================================================
   SECTION 5.5: THE SACRED VAULT
   ========================================================================== */
.vault-section {
    background: transparent;
}

.prayers-grid {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: 30px;
}

@media (max-width: 768px) {
    .prayers-grid {
        grid-template-columns: 1fr;
    }
}

.prayer-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (max-width: 768px) {
    .prayer-menu {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
    }
}

.prayer-menu-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.18);
    color: var(--text-muted);
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.06);
}

.prayer-menu-item:hover,
.prayer-menu-item.active {
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--gold);
    color: var(--text-pure);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.prayer-display-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
}

.prayer-display-header {
    margin-bottom: 25px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
    padding-bottom: 20px;
}

.prayer-display-header h3 {
    font-size: 1.5rem;
    color: var(--text-pure);
    margin: 10px 0 5px 0;
}

.prayer-display-header p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.prayer-translation-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 600px) {
    .prayer-translation-box {
        grid-template-columns: 1fr;
    }
}

.prayer-lang-side h4 {
    font-size: 0.65rem;
    color: var(--gold);
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.prayer-text {
    font-family: var(--font-serif);
    font-size: 0.85rem;
    color: var(--text-primary);
    line-height: 1.7;
    font-style: italic;
}

/* Patron Saint Generator Card inner adjustments */
.saint-generator-card {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
}

/* Spiritual Combat Grid */
.combat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

@media (max-width: 768px) {
    .combat-grid {
        grid-template-columns: 1fr;
    }
}

.combat-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 25px;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.combat-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.combat-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.sin-label {
    font-size: 0.62rem;
    font-weight: 700;
    color: #ff5555;
    letter-spacing: 0.05em;
}

.virtue-label {
    font-size: 0.62rem;
    font-weight: 700;
    color: #55ff55;
    letter-spacing: 0.05em;
}

.combat-desc {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 15px;
}

.combat-quote {
    font-family: var(--font-serif);
    font-size: 0.72rem;
    color: var(--gold);
    font-style: italic;
    border-left: 1.5px solid var(--gold);
    padding-left: 10px;
}

/* Gregorian Chants 2 per row grid layout */
#chants .apologetics-container {
    max-width: 1400px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
    margin: 0 auto;
}

#chants .accordion-item {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    #chants .apologetics-container {
        grid-template-columns: 1fr;
    }
}

/* Side-by-side video and Google AdSense grid layout */
.video-ad-row {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 30px;
    align-items: stretch;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .video-ad-row {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   LITURGICAL CALENDAR STYLES
   ========================================================================== */
.calendar-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition-smooth);
}

@media (max-width: 992px) {
    .calendar-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 25px;
    }
}

.calendar-wheel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#liturgicalWheel {
    max-width: 320px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.6));
}

.calendar-details-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.season-badge {
    display: inline-block;
    align-self: flex-start;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.season-badge-purple {
    background: rgba(155, 89, 182, 0.12);
    color: #bb8fce;
    border: 1px solid rgba(155, 89, 182, 0.3);
    box-shadow: 0 0 15px rgba(155, 89, 182, 0.1);
}

.season-badge-green {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
    box-shadow: 0 0 15px rgba(46, 204, 113, 0.1);
}

.season-badge-white {
    background: rgba(241, 196, 15, 0.08);
    color: #f1c40f;
    border: 1px solid rgba(241, 196, 15, 0.3);
    box-shadow: 0 0 15px rgba(241, 196, 15, 0.1);
}

.glow-season-purple {
    border-color: rgba(155, 89, 182, 0.35) !important;
    box-shadow: 0 0 30px rgba(155, 89, 182, 0.15) !important;
}

.glow-season-green {
    border-color: rgba(46, 204, 113, 0.35) !important;
    box-shadow: 0 0 30px rgba(46, 204, 113, 0.15) !important;
}

.glow-season-white {
    border-color: rgba(212, 175, 55, 0.35) !important;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15) !important;
}

.calendar-simulator-box {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.02);
    margin-top: 15px;
}

.calendar-simulator-box label {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.calendar-input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 8px 12px;
    color: var(--text-pure);
    font-family: inherit;
    font-size: 0.85rem;
    width: 100%;
    outline: none;
    transition: var(--transition-smooth);
}

.calendar-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

/* ==========================================================================
   HOLY ROSARY GUIDE STYLES
   ========================================================================== */
.rosary-container {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    flex-direction: column;
    gap: 30px;
    transition: var(--transition-smooth);
}

@media (max-width: 768px) {
    .rosary-container {
        padding: 25px;
    }
}

.rosary-setup-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 20px;
}

.rosary-selector {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 8px 15px;
    color: var(--text-pure);
    font-family: inherit;
    font-size: 0.8rem;
    outline: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.rosary-selector:focus {
    border-color: var(--gold);
}

.rosary-active-mystery-panel {
    background: rgba(212, 175, 55, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.rosary-bead-progress-bar {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rosary-bead-track {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50px;
    padding: 10px 20px;
    overflow-x: auto;
    gap: 8px;
}

.rosary-bead {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.rosary-bead.active {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 12px var(--gold);
    transform: scale(1.3);
}

.rosary-bead.completed {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.6);
}

.rosary-bead.our-father {
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--gold);
    border-radius: 4px;
}

.rosary-bead.our-father.active {
    background: var(--gold);
    transform: scale(1.2);
}

.rosary-display-card {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.rosary-display-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding-bottom: 15px;
}

.rosary-controls {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 25px;
}

/* ==========================================================================
   DAILY EXAMEN & CHECKLIST STYLES
   ========================================================================== */
.checklist-container {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (max-width: 768px) {
    .checklist-container {
        padding: 25px;
    }
}

.checklist-progress-wrapper {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.checklist-progress-bar {
    height: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 12px;
}

.checklist-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #d4af37, #f1c40f);
    width: 0%;
    transition: width 0.4s ease;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.checklist-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 18px 25px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.checklist-item:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(212, 175, 55, 0.15);
}

.checklist-item.checked {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.02);
}

.checklist-checkbox {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
}

.checklist-item.checked .checklist-checkbox {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

.checklist-checkbox i {
    opacity: 0;
    color: #000;
    transition: var(--transition-smooth);
}

.checklist-item.checked .checklist-checkbox i {
    opacity: 1;
}

.checklist-item-content {
    flex-grow: 1;
}

.checklist-item-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-pure);
}

.checklist-item.checked .checklist-item-title {
    text-decoration: line-through;
    color: var(--text-muted);
}

.checklist-item-desc {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 3px;
}

.examen-trigger-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px dashed rgba(212, 175, 55, 0.25);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.examen-trigger-card:hover {
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.examen-drawer {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    margin-top: 10px;
    animation: fadeIn 0.4s ease;
}

.examen-steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.examen-step-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 20px;
}

.examen-step-num {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 5px;
}

/* ==========================================================================
   APOLOGETICS Q&A STYLES
   ========================================================================== */
.apologetics-search-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 45px;
}

.apologetics-search-bar {
    position: relative;
    width: 100%;
}

.apologetics-search-bar input {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 15px 25px 15px 50px;
    color: var(--text-pure);
    font-family: inherit;
    font-size: 0.85rem;
    outline: none;
    transition: var(--transition-smooth);
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.5);
}

.apologetics-search-bar input:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

.apologetics-search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    width: 18px;
    height: 18px;
}

.apologetics-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.apologetics-chip {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 6px 16px;
    font-size: 0.72rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.apologetics-chip:hover {
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--text-pure);
}

.apologetics-chip.active {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
    font-weight: 700;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.apologetics-refute-box {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed rgba(255, 255, 255, 0.05);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .apologetics-refute-box {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.refute-column {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    padding: 15px;
}

.refute-column h5 {
    font-family: var(--font-serif);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 6px;
}

.refute-text {
    font-size: 0.72rem;
    color: var(--text-primary);
    line-height: 1.5;
}

.treblelation-embed-box {
    background: rgba(212, 175, 55, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 12px;
    padding: 18px 25px;
    margin-top: 25px;
}

.treblelation-embed-box p {
    font-size: 0.75rem;
    color: var(--text-primary);
    margin: 8px 0 12px 0;
    line-height: 1.5;
}

.treblelation-embed-box a.prayer-menu-item {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--gold);
    transition: var(--transition-smooth);
}

.treblelation-embed-box a.prayer-menu-item:hover {
    background: var(--gold);
    color: #000;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}


/* ==========================================================================
   SACRED VAULT - 8 NEW INTERACTIVE WIDGETS STYLING
   ========================================================================== */

/* 1. Church History Timeline */
.timeline-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px 0;
}
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--gold) 10%, var(--gold) 90%, transparent);
    transform: translateX(-50%);
    z-index: 1;
}
.timeline-events-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.timeline-event-card {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    z-index: 2;
}
.timeline-event-card:nth-child(even) {
    justify-content: flex-end;
}
.timeline-badge {
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    width: 80px;
    height: 35px;
    background: #000;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-weight: 700;
    font-size: 0.72rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    font-family: var(--font-sans);
}
.timeline-card-content {
    width: 42%;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 25px;
    transition: var(--transition-smooth);
}
.timeline-event-card:nth-child(even) .timeline-card-content {
    margin-right: 0;
}
.timeline-tag {
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 12px;
}
.tag-history {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-pure);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.tag-councils {
    background: rgba(212, 175, 55, 0.05);
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.2);
}
.tag-saints {
    background: rgba(255, 255, 255, 0.02);
    color: #e5e5e5;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.timeline-card-content h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-pure);
    margin-bottom: 10px;
}
.timeline-card-content p {
    font-size: 0.72rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}
.timeline-filter-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-muted);
    padding: 6px 16px;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.08);
}
.timeline-filter-btn:hover, .timeline-filter-btn.active {
    border-color: var(--gold);
    color: var(--text-pure);
    background: rgba(212, 175, 55, 0.12);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
}

/* 2. Spiritual Trivia Quiz */
.quiz-container {
    max-width: 650px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 40px;
    transition: var(--transition-smooth);
}
.quiz-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}
.quiz-option-btn {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 15px 20px;
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.quiz-option-btn:hover:not(:disabled) {
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--text-pure);
    background: rgba(255,255,255,0.02);
}
.quiz-option-btn.quiz-correct {
    border-color: #2ec4b6 !important;
    background: rgba(46, 196, 182, 0.05) !important;
    color: #2ec4b6 !important;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(46, 196, 182, 0.2);
}
.quiz-option-btn.quiz-incorrect {
    border-color: #e71d36 !important;
    background: rgba(231, 29, 54, 0.05) !important;
    color: #e71d36 !important;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(231, 29, 54, 0.2);
}

/* 3. Sacred Art Gallery */
.art-deck-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-muted);
    padding: 8px 20px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.08);
}
.art-deck-btn:hover, .art-deck-btn.active {
    border-color: var(--gold);
    color: var(--text-pure);
    background: rgba(212, 175, 55, 0.12);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
}
.art-hotspot {
    position: absolute;
    width: 28px;
    height: 28px;
    background: rgba(212, 175, 55, 0.85);
    border: 2px solid #000;
    border-radius: 50%;
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    z-index: 10;
    box-shadow: 0 0 8px rgba(212,175,55,0.8);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    animation: hotspotPulse 2s infinite;
}
.art-hotspot:hover {
    transform: scale(1.2);
    background: var(--gold);
    box-shadow: 0 0 15px rgba(212,175,55,1);
    animation: none;
}
.art-hotspot.active {
    background: #ffffff;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(255,255,255,0.9);
    animation: none;
}
@keyframes hotspotPulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}
.art-detail-card {
    background: rgba(255,255,255,0.01);
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.art-detail-card:hover, .art-detail-card.active {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.02);
    transform: translateX(3px);
}
.art-detail-card h5 {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-pure);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.art-detail-card h5 span {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.58rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.art-detail-card.active h5 span {
    background: var(--gold);
    color: #000;
}
.art-detail-card p {
    font-size: 0.68rem;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 0;
}

/* 4. Virtue Character Builder */
.virtue-day-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(255,255,255,0.01);
    border: 1px solid rgba(255,255,255,0.02);
    border-radius: 10px;
    padding: 15px 20px;
    transition: var(--transition-smooth);
}
.virtue-day-item.completed {
    border-color: rgba(212, 175, 55, 0.2);
    background: rgba(212, 175, 55, 0.01);
}
.virtue-day-checkbox {
    width: 18px;
    height: 18px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    margin-top: 2px;
}
.virtue-day-checkbox:checked {
    background: var(--gold);
    border-color: var(--gold);
}
.virtue-day-checkbox:checked::after {
    content: "✓";
    font-size: 0.7rem;
    color: #000;
    font-weight: 900;
}
.virtue-day-text {
    flex-grow: 1;
}
.virtue-day-text h5 {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-pure);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.virtue-day-item.completed .virtue-day-text h5 {
    color: var(--gold);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.2);
}
.virtue-day-text p {
    font-size: 0.7rem;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 0;
}

/* 5. Scripture Concordance */
.concordance-tag-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    padding: 5px 14px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.concordance-tag-btn:hover, .concordance-tag-btn.active {
    border-color: var(--gold);
    color: var(--text-pure);
    box-shadow: 0 0 8px rgba(212,175,55,0.2);
}
.concordance-result-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 25px;
    transition: var(--transition-smooth);
}
.concordance-result-card:hover {
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(212,175,55,0.1);
}
.concordance-result-card h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 12px;
}
.concordance-result-card blockquote {
    border-left: 2px solid var(--gold);
    padding-left: 15px;
    margin: 10px 0;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.85rem;
    color: var(--text-pure);
    line-height: 1.6;
}
.concordance-result-card p.commentary {
    font-size: 0.7rem;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 12px 0 0 0;
    border-top: 1px dashed rgba(255, 255, 255, 0.05);
    padding-top: 10px;
}

/* 6. Confession Prep & Examination */
.confession-step-btn {
    background: transparent;
    border: 0;
    border-bottom: 2px solid transparent;
    color: var(--text-muted);
    padding: 8px 10px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.confession-step-btn:hover, .confession-step-btn.active {
    color: var(--gold);
    border-color: var(--gold);
}
.confession-step-panel {
    animation: confFadeIn 0.3s ease;
}
@keyframes confFadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 7. Virtual Vigil Candle Altar */
.vigil-candle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    cursor: pointer;
}
.vigil-candle-body {
    width: 25px;
    height: 60px;
    background: linear-gradient(90deg, #b89326 0%, #d4af37 50%, #9c7b1f 100%);
    border-radius: 3px 3px 0 0;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.6);
    transition: transform 0.2s ease;
}
.vigil-candle-body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255,255,255,0.4);
    border-radius: 3px 3px 0 0;
}
.vigil-candle-wick {
    width: 2px;
    height: 8px;
    background: #111;
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
}
.vigil-candle-flame {
    width: 12px;
    height: 24px;
    background: radial-gradient(circle at bottom, #fff 0%, #ffc300 30%, #ff5733 70%, transparent 100%);
    border-radius: 50% 50% 20% 20%;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    filter: drop-shadow(0 0 8px rgba(255,195,0,0.8));
    animation: flameFlicker 1.5s infinite alternate ease-in-out;
    transform-origin: center bottom;
}
@keyframes flameFlicker {
    0% { transform: translateX(-50%) scale(1) rotate(-1deg); filter: drop-shadow(0 0 6px rgba(255,195,0,0.6)); }
    100% { transform: translateX(-50%) scale(1.08) rotate(1.5deg); filter: drop-shadow(0 0 10px rgba(255,195,0,0.9)); }
}
.vigil-candle-intention-tooltip {
    position: absolute;
    bottom: 80px;
    background: rgba(0,0,0,0.92);
    border: 1px solid var(--gold);
    color: var(--text-pure);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.65rem;
    text-align: center;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform: translateY(5px);
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0,0,0,0.8);
}
.vigil-candle-item:hover .vigil-candle-intention-tooltip {
    opacity: 1;
    transform: translateY(0);
}

/* responsive grids */
@media (max-width: 900px) {
    .reflection-layout, .art-grid-layout, .vigil-layout {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    .art-viewer-side {
        max-width: 100%;
    }
}
@media (max-width: 768px) {
    .timeline-line {
        left: 20px;
    }
    .timeline-event-card {
        justify-content: flex-start !important;
        padding-left: 50px;
    }
    .timeline-card-content {
        width: 100% !important;
    }
    .timeline-badge {
        left: 20px;
        transform: translateX(-50%);
        top: 20px;
        width: 60px;
        height: 30px;
        font-size: 0.65rem;
    }
    .quiz-options-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   SACRED VAULT CATEGORY NAV STYLES
   ========================================================================== */
.vault-category-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.vault-cat-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.vault-cat-btn:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.2);
    color: var(--gold);
}

.vault-cat-btn.active {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

