:root {
    --lp-maroon: #800000;
    --lp-gold: #D4AF37;
    --lp-cream: #FFFDF5;
    --lp-text: #2C1810;
    --lp-white: #ffffff;
    --lp-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --lp-reveal-transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Scroll Reveal Animations */
.lp-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--lp-reveal-transition);
}

.lp-reveal.lp-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Specific directional reveals if needed */
.lp-reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: var(--lp-reveal-transition);
}

.lp-reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: var(--lp-reveal-transition);
}

.lp-reveal-left.lp-visible,
.lp-reveal-right.lp-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered delays */
.lp-delay-1 { transition-delay: 0.1s; }
.lp-delay-2 { transition-delay: 0.2s; }
.lp-delay-3 { transition-delay: 0.3s; }
.lp-delay-4 { transition-delay: 0.4s; }
.lp-delay-5 { transition-delay: 0.5s; }

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--lp-cream);
    background-image: url('../images/lp-silk-texture.png');
    background-attachment: fixed;
    color: var(--lp-text);
    line-height: 1.8;
    overflow-x: hidden;
}

h1,
h2,
h3,
.lp-serif {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    letter-spacing: -0.02em;
}

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

ul {
    list-style: none;
}

.lp-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header & Split-Menu Nav */
.lp-header {
    background: var(--lp-maroon);
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    overflow: visible;
}

.lp-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/lp-rangoli-white.png');
    background-size: 200px;
    background-repeat: repeat-x;
    background-position: center;
    opacity: 0.1;
    pointer-events: none;
}

.lp-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    position: relative;
    z-index: 1;
}

.lp-nav-links-left,
.lp-nav-links-right {
    flex: 1;
    display: flex;
    gap: 30px;
    align-items: center;
    color: var(--lp-white);
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.lp-nav-links-left {
    justify-content: flex-end;
    padding-right: 40px;
}

.lp-nav-links-right {
    justify-content: flex-start;
    padding-left: 40px;
}

/* Dropdown Styles */
.lp-dropdown {
    position: relative;
    display: inline-block;
}

.lp-dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--lp-maroon);
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    top: 100%;
    left: 0;
    padding-top: 10px;
    border-top: 2px solid var(--lp-gold);
}

.lp-dropdown-content a {
    color: var(--lp-white);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.lp-dropdown-content a:hover {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--lp-gold);
}

.lp-dropdown:hover .lp-dropdown-content,
.lp-dropdown.lp-active .lp-dropdown-content {
    display: block;
}

.lp-dropdown-trigger::after {
    content: '▾';
    margin-left: 5px;
    font-size: 0.7rem;
}

.lp-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--lp-gold);
    text-align: center;
    line-height: 1;
    padding: 10px 20px;
    border: 2px solid var(--lp-gold);
}

.lp-nav-link:hover {
    color: var(--lp-gold);
    letter-spacing: 0.15em;
}

.lp-whatsapp-btn {
    background-color: #25D366;
    color: white !important;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--lp-transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.lp-whatsapp-btn::before {
    content: '💬';
    font-size: 1rem;
}

.lp-whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    letter-spacing: 0.08em;
}

.lp-whatsapp-gold {
    background-color: var(--lp-gold) !important;
    color: var(--lp-maroon) !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3) !important;
}

.lp-whatsapp-gold::before {
    content: '💬';
    filter: brightness(0) saturate(100%) invert(10%) sepia(99%) hue-rotate(346deg) brightness(85%) contrast(100%);
    /* Corrected filter typo */
}

.lp-whatsapp-gold:hover {
    background-color: var(--lp-white) !important;
    color: var(--lp-maroon) !important;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5) !important;
}

.lp-ritual-cta {
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed rgba(212, 175, 55, 0.3);
    padding: 30px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px auto 0;
    max-width: 600px;
}

.lp-whatsapp-btn-sm {
    padding: 6px 15px;
    font-size: 0.75rem;
}

.lp-cta-text {
    font-size: 1.1rem;
    color: var(--lp-white);
    margin-bottom: 20px;
    font-style: italic;
    opacity: 0.9;
}

.lp-mobile-nav .lp-whatsapp-btn {
    margin-top: 10px;
    justify-content: center;
    font-size: 1rem;
    padding: 15px;
}

.lp-cta-btn {
    background-color: var(--lp-gold);
    color: var(--lp-maroon);
    padding: 12px 30px;
    border-radius: 2px;
    font-weight: 700;
    transition: var(--lp-transition);
}

.lp-cta-btn:hover {
    background-color: var(--lp-white);
    transform: scale(1.05);
}

/* Hero Section */
.lp-hero {
    position: relative;
    height: 90vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--lp-white);
}

.lp-hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.lp-hero-video-container iframe {
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.lp-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(128, 0, 0, 0.4) 0%, rgba(128, 0, 0, 0.8) 100%);
    z-index: -1;
}

.lp-hero-content {
    max-width: 1000px;
    padding: 40px;
}

.lp-hero-title {
    font-size: 4.5rem;
    margin-bottom: 30px;
    color: var(--lp-white);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.lp-hero-subtext {
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

/* Hero Section & Buttons */
.lp-hero-content {
    max-width: 1000px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.lp-hero-title {
    font-size: 4.5rem;
    margin-bottom: 0;
    color: var(--lp-white);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.lp-hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.lp-btn-small {
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--lp-white);
    color: var(--lp-maroon);
    border: 1px solid var(--lp-white);
    transition: var(--lp-transition);
}

.lp-btn-small:hover {
    background: var(--lp-gold);
    color: var(--lp-maroon);
    border-color: var(--lp-gold);
    transform: translateY(-2px);
}

.lp-btn-small-outline {
    background: transparent;
    color: var(--lp-white);
    border: 1px solid var(--lp-white);
}

.lp-btn-small-outline:hover {
    background: var(--lp-gold);
    color: var(--lp-maroon);
    border-color: var(--lp-gold);
}

/* Traditional Overlays */
.lp-maroon-band {
    background: var(--lp-maroon);
    color: var(--lp-white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.lp-maroon-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/lp-rangoli-gold.png');
    background-size: 400px;
    opacity: 0.15;
    pointer-events: none;
}

/* Services Grid */
.lp-services {
    padding: 120px 0;
    background-color: #FFFDE7;
    /* Light yellow background */
    position: relative;
    overflow: hidden;
}

.lp-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/lp-rangoli-white.png');
    background-size: 500px;
    opacity: 0.1;
    /* Subtle white rangoli on yellow */
    pointer-events: none;
}

.lp-about {
    padding: 120px 0;
    background-color: var(--lp-white);
    position: relative;
    text-align: center;
    overflow: hidden;
}

.lp-about::before {
    content: '🕉️';
    position: absolute;
    top: -50px;
    right: 150px;
    font-size: 20rem;
    opacity: 0.01;
    color: var(--lp-maroon);
    pointer-events: none;
}

.lp-about-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.lp-about-text {
    font-size: 1.2rem;
    color: var(--lp-text);
    margin-bottom: 30px;
    line-height: 2;
    opacity: 0.9;
}

.lp-about-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    flex-wrap: wrap;
}

.lp-stat-number {
    display: block;
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    color: var(--lp-maroon);
    font-weight: 900;
    margin-bottom: 10px;
}

.lp-stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--lp-gold);
    font-weight: 700;
}

.lp-section-title {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 70px;
    color: var(--lp-maroon);
}

.lp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.lp-service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--lp-transition);
}

.lp-service-card:hover {
    transform: translateY(-15px);
    background: var(--lp-white);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
    border-color: var(--lp-gold);
}

.lp-service-icon {
    font-size: 3.5rem;
    /* Increased size slightly for better impact */
    color: var(--lp-gold);
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lp-icon-svg {
    width: 85px;
    height: 85px;
    transition: var(--lp-transition);
}

.lp-service-card:hover .lp-icon-svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
}

.lp-service-name {
    margin-bottom: 20px;
    color: var(--lp-maroon);
    font-size: 1.8rem;
}

/* Budget Tool Section */
.lp-budget-wrap {
    padding: 120px 0;
    background: var(--lp-maroon);
    background-image: url('../images/lp-rangoli-white.png');
    background-size: 300px;
    background-repeat: repeat;
    color: var(--lp-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lp-budget-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(128, 0, 0, 0.4) 0%, var(--lp-maroon) 100%);
    pointer-events: none;
}

.lp-budget-section {
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(212, 175, 55, 0.5);
    padding: 80px 40px;
    position: relative;
    z-index: 1;
    background: rgba(128, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lp-budget-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 10px var(--lp-gold));
}

.lp-budget-title {
    font-size: 3.5rem !important;
    margin-bottom: 20px !important;
    line-height: 1.1 !important;
    color: var(--lp-gold);
    font-family: 'Playfair Display', serif !important;
}

.lp-budget-copy {
    font-size: 1.25rem !important;
    max-width: 650px;
    margin: 0 auto 45px !important;
    opacity: 0.9;
    font-weight: 300;
}

.lp-budget-btn {
    display: inline-block;
    background: var(--lp-gold);
    color: var(--lp-maroon);
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    transition: var(--lp-transition);
}

.lp-budget-btn:hover {
    background: var(--lp-white);
    color: var(--lp-maroon);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

/* Footer */
.lp-footer {
    background: var(--lp-maroon);
    color: var(--lp-white);
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
}

.lp-footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background-image: url('../images/lp-rangoli-white.png');
    background-size: 400px;
    opacity: 0.05;
    pointer-events: none;
}

.lp-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.lp-footer-title {
    color: var(--lp-gold);
    margin-bottom: 25px;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
}

.lp-footer-p {
    opacity: 0.8;
    line-height: 1.6;
}

.lp-footer-links {
    opacity: 0.8;
    line-height: 2.2;
}

.lp-footer-link {
    transition: var(--lp-transition);
}

.lp-footer-link:hover {
    color: var(--lp-gold);
    padding-left: 8px;
}

.lp-btn-outline-gold {
    display: inline-block;
    margin-top: 20px;
    color: var(--lp-gold);
    border: 1px solid var(--lp-gold);
    padding: 10px 25px;
    transition: var(--lp-transition);
}

.lp-btn-outline-gold:hover {
    background: var(--lp-gold);
    color: var(--lp-maroon);
}

.lp-copyright {
    text-align: center;
    padding-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Specific Mobile Fixes Base Styles */
.lp-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 10002;
    padding: 0;
}

.lp-menu-icon,
.lp-menu-icon::before,
.lp-menu-icon::after {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--lp-gold);
    transition: var(--lp-transition);
    position: absolute;
}

.lp-menu-icon {
    top: 50%;
    transform: translateY(-50%);
}

.lp-menu-icon::before {
    content: '';
    top: -8px;
}

.lp-menu-icon::after {
    content: '';
    bottom: -8px;
}

/* Mobile & Media Queries */
@media (max-width: 1024px) {

    .lp-nav-links-left,
    .lp-nav-links-right {
        display: none;
    }

    .lp-menu-toggle {
        display: block;
    }

    .lp-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        min-height: 80px;
        /* Ensure enough height for logo */
    }

    .lp-logo {
        font-size: 1.1rem;
        padding: 5px 15px;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
        white-space: nowrap;
        border: 1.5px solid var(--lp-gold);
        /* Thinner border for mobile elegance */
    }
}

@media (max-width: 768px) {
    .lp-hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .lp-btn-small {
        width: 100%;
        font-size: 0.75rem;
        padding: 12px 15px;
    }

    .lp-budget-section {
        padding: 50px 25px;
        margin: 0 10px;
        border: 1px solid rgba(212, 175, 55, 0.4);
        /* Simplified single border */
    }

    .lp-budget-section::after {
        display: none !important;
        /* Remove secondary border */
    }

    .lp-budget-icon {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }

    .lp-budget-title {
        font-size: 1.8rem !important;
        /* Elegant scaling */
        margin-bottom: 20px !important;
        line-height: 1.3 !important;
    }

    .lp-budget-copy {
        font-size: 0.95rem !important;
        margin-bottom: 35px !important;
        line-height: 1.6 !important;
    }

    .lp-budget-btn {
        padding: 14px 25px;
        font-size: 0.75rem;
        width: auto;
        min-width: 220px;
        max-width: 100%;
        line-height: 1.4;
        border-radius: 50px !important;
        white-space: normal;
        /* Allow 2 lines max */
    }

    .lp-hero-title {
        font-size: 2rem;
        /* Scaled down */
    }

    .lp-hero-subtext {
        font-size: 0.95rem;
    }

    .lp-section-title {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }

    .lp-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .lp-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .lp-about-stats {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        margin-top: 40px;
        padding-top: 40px;
    }

    .lp-stat-item {
        flex: 1 1 100%;
        text-align: center;
    }

    .lp-stat-number {
        font-size: 3rem;
        /* Keep them big and impactful even on mobile */
        margin-bottom: 5px;
        display: block;
    }

    .lp-stat-label {
        font-size: 0.9rem;
        display: block;
    }

    .lp-about-text {
        font-size: 1.1rem;
        line-height: 1.8;
        text-align: justify;
        /* Better for long text on mobile */
        padding: 0 10px;
    }
}



/* Active State for Toggle */
.lp-menu-toggle.lp-active .lp-menu-icon {
    background: transparent;
}

.lp-menu-toggle.lp-active .lp-menu-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.lp-menu-toggle.lp-active .lp-menu-icon::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Mobile Nav Drawer */
.lp-mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background: var(--lp-maroon);
    z-index: 10001;
    transition: var(--lp-transition);
    padding: 100px 40px;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.3);
}

.lp-mobile-nav.lp-active {
    left: 0;
}

.lp-mobile-nav-inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.lp-mobile-nav .lp-nav-link {
    font-size: 1.2rem;
    color: var(--lp-white);
    display: block;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding-bottom: 15px;
}

.lp-mobile-nav .lp-dropdown-content {
    position: static;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: none;
    padding: 0;
    margin-bottom: 10px;
    display: block;
    /* Show menu items directly in mobile drawer or handle with clicks */
}

/* Overlay for Mobile Menu */
.lp-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--lp-transition);
}

.lp-mobile-overlay.lp-active {
    opacity: 1;
    visibility: visible;
}

/* --- Blog Page Specifics & Elegance --- */
.lp-blog-post-card {
    text-align: left;
    background: rgba(255, 255, 255, 1);
    padding: 70px 80px;
    max-width: 1300px;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    z-index: 10;
}

.lp-blog-post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/lp-silk-texture.png');
    opacity: 0.05;
    pointer-events: none;
    border-radius: 8px;
}

.lp-blog-header h1 {
    font-size: 4rem;
    color: var(--lp-gold);
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.lp-blog-header .entry-meta {
    margin-bottom: 40px;
}

/* Mobile Optimizations for Blog Page */
@media (max-width: 768px) {
    .lp-maroon-band {
        padding: 50px 0 !important;
    }

    .lp-blog-header h1 {
        font-size: 2.2rem;
        padding: 0 15px;
    }

    .lp-blog-post-card {
        padding: 40px 20px;
        margin: 0 auto;
        width: 98%;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    }
    
    .entry-content {
        font-size: 1.1rem !important;
        line-height: 1.7 !important;
        text-align: left !important;
    }

    .post-thumbnail img {
        border-radius: 8px !important;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2) !important;
    }

    .post-navigation {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
        padding: 0 20px;
    }

    .post-navigation div {
        width: 100%;
    }
    
    .post-navigation a {
        display: block;
        padding: 12px;
        background: rgba(255,255,255,0.05);
        border: 1px solid var(--lp-gold);
        color: var(--lp-gold);
        border-radius: 50px;
        font-size: 0.85rem;
    }
}