
        /* Full Background Image for Pages */
.page-with-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    position: relative;
}

.page-with-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.88);
    z-index: 1;
}

.page-with-bg > * {
    position: relative;
    z-index: 2;
}

/* Page-specific overlay adjustments */
.page-with-bg .bg-gray-50,
.page-with-bg .bg-gray-50\/60 {
    background-color: rgba(255, 255, 255, 0.6) !important;
    backdrop-filter: blur(4px);
}

.page-with-bg .bg-black {
    background-color: rgba(0, 0, 0, 0.85) !important;
}

.page-with-bg .border-gray-100,
.page-with-bg .border-gray-200 {
    border-color: rgba(0, 0, 0, 0.06) !important;
}
        body {
            font-family: 'Tenor Sans', sans-serif;
            background-color: #cbf8ce;
            color: #000000;
            overflow-x: hidden;
        }

        /* Pure Typographic Outline Styling */
        .text-outline-dark {
            color: transparent;
            -webkit-text-stroke: 1px #000000;
        }

        /* Full Background Image for Pages */
.page-with-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    position: relative;
}

.page-with-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

.page-with-bg > * {
    position: relative;
    z-index: 2;
}
        
        .text-outline-light {
            color: transparent;
            -webkit-text-stroke: 1px #FFFFFF;
        }

        /* Smooth Custom Editorial Scrollbar */
        ::-webkit-scrollbar {
            width: 5px;
        }
        ::-webkit-scrollbar-track {
            background: #FFFFFF;
        }
        ::-webkit-scrollbar-thumb {
            background: #499A13;
        }

        /* Columnar Hover Transformations (Image Frame Slide Effect) */
        .poster-frame {
            overflow: hidden;
            position: relative;
        }
        .poster-frame img {
            transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .poster-frame:hover img {
            transform: translateY(-20px);
        }

        /* Left Column Navigation Growth Indicator */
        .indicator-link {
            position: relative;
            transition: color 0.4s ease;
        }
        .indicator-link::before {
            content: '';
            position: absolute;
            left: -15px;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 0;
            background-color: #00E0BA;
            transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .indicator-link:hover::before {
            height: 100%;
        }

        /* Seamless Component Page Views Switcher Engine */
        .editorial-page-housing {
            display: none;
            opacity: 0;
            transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
            transform: translateX(15px);
        }
        .editorial-page-housing.page-rendered {
            display: block;
            opacity: 1;
            transform: translateX(0);
        }

        /* Floating Kinetic Element Modifiers */
        .floating-texture {
            animation: floatSlow 8s ease-in-out infinite alternate;
        }
        @keyframes floatSlow {
            0% { transform: translateY(0px) rotate(0deg); }
            100% { transform: translateY(-15px) rotate(3deg); }
        }
