body {
            font-family: 'Poppins', sans-serif;
            background-color: #000000;
            color: #E0E0E0;
            cursor: none;
            padding-top: 108px;
        }

        .scroll-container {
            height: 250vh;
            position: relative;
        }

        .sticky-element {
            position: sticky;
            top: 0;
            height: 100vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        #background-video {
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            min-width: 100%; min-height: 100%;
            width: auto; height: auto;
            z-index: 0;
            object-fit: cover;
            opacity: 0.25;
        }
        
        #smoke-canvas {
            position: absolute;
            inset: 0;
            width: 100%; height: 100%;
            z-index: 1;
            opacity: 0.15;
        }
        
        #logo-container {
            position: relative;
            z-index: 2;
            width: 90vw;
            max-width: 600px; 
            mask-image: radial-gradient(ellipse at center, black 0%, transparent 60%);
            -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 60%);
            mask-size: 0%;
            -webkit-mask-size: 0%;
            mask-repeat: no-repeat;
            -webkit-mask-repeat: no-repeat;
            mask-position: center;
            -webkit-mask-position: center;
        }

        #logo-container video {
            width: 100%;
            opacity: 0;
            transform: scale(0.9);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        /* Animated Text Styles */
        #animated-text-container {
            position: absolute;
            z-index: 3;
            width: 100%;
            text-align: center;
            opacity: 1;
        }
        #animated-text {
            font-family: 'Luckiest Guy', cursive;
            font-size: clamp(2rem, 6vw, 4rem);
            color: #fff;
            letter-spacing: 0.05em;
            position: relative;
            display: inline-block;
        }
        #animated-text::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            right: 0;
            height: 3px;
            background-color: white;
            transform: scaleX(var(--underline-scale, 0));
            transform-origin: right;
            transition: transform 0.4s ease;
        }
        
        /* Ember Cursor Styles */
        #ember-cursor {
            position: fixed;
            left: 0; top: 0;
            pointer-events: none;
            z-index: 9999;
            transition: transform 0.2s ease-out;
            width: 40px; 
            height: 40px;
        }
        #cursor-dot {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background-color: #a83279;
            box-shadow: 0 0 15px 5px #a83279, 0 0 25px 10px rgba(168, 50, 121, 0.5);
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%) scale(1);
            transition: transform 0.3s ease, opacity 0.3s ease;
            opacity: 1;
        }
        #cursor-leaf-img {
            position: absolute;
            top: 50%; left: 50%;
            width: 45px;
            height: 45px;
            transform: translate(-50%, -50%) scale(0);
            opacity: 0;
            transition: transform 0.3s ease, opacity 0.3s ease;
            filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.7));
        }
        #ember-cursor.flare #cursor-dot {
            opacity: 0;
            transform: translate(-50%, -50%) scale(0);
        }
        #ember-cursor.flare #cursor-leaf-img {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }

        /* Universal Green Smoke Hover Effect */
        .smoke-hover {
            position: relative;
            z-index: 1;
            overflow: hidden;
        }
        .smoke-hover::before {
            content: '';
            position: absolute;
            top: 50%; left: 50%;
            width: 150%; height: 150%;
            z-index: -1;
            background: radial-gradient(circle, rgba(34, 197, 94, 0.35) 0%, rgba(34, 197, 94, 0) 60%);
            border-radius: 50%;
            transform: translate(-50%, -50%) scale(0);
            opacity: 0;
            filter: blur(20px);
            transition: transform 0.4s ease-out, opacity 0.4s ease-out;
        }
        .smoke-hover:hover::before {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }

        .interactive {
            cursor: pointer;
        }

        /* Desktop Menu Styles */
        .desktop-menu-link {
            padding: 0.5rem 0.75rem;
            color: white;
            font-weight: 500;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 0.5rem;
            transition: color 0.3s ease, border-color 0.3s ease;
        }
        .desktop-menu-link:hover {
            border-color: rgba(255, 255, 255, 0.5);
        }

        /* Mobile Menu Styles */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    text-align: center;
    z-index: 1000;
    padding-top: 60px;
}

.close-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent; /* Changed to transparent */
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    z-index: 1001;
    transition: background 0.3s ease, opacity 0.3s ease; /* Add opacity to transition */
    color: white; /* Ensure the icon color is white */
    font-size: 2rem; /* Make the icon larger */
    opacity: 0; /* Hidden by default */
    pointer-events: none; /* Disable clicks when hidden */
}

.close-icon svg {
    width: 32px; /* Explicit width for SVG */
    height: 32px; /* Explicit height for SVG */
    stroke: currentColor; /* Use stroke for the 'x' */
    fill: none; /* Ensure no fill */
}

.close-icon:hover {
    background: rgba(255, 255, 255, 0.2);
}

#mobile-menu-overlay.open .close-icon {
    opacity: 1; /* Show when overlay is open */
    pointer-events: all; /* Enable clicks when visible */
}

/* Hamburger Menu Toggle Button */
        #mobile-menu-overlay {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            z-index: 99;
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: none;
            overflow: hidden;
            background-color: transparent;
            backdrop-filter: blur(0px);
            transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
        }
        #mobile-menu-overlay.open {
             background-color: rgba(0,0,0,0.7);
             backdrop-filter: blur(10px);
             pointer-events: all;
        }
        .mobile-menu-link {
            font-size: clamp(2rem, 6vw, 4rem);
            font-weight: 800;
            color: white;
            opacity: 0;
            filter: blur(10px);
            transition: opacity 0.8s ease, transform 0.8s ease, filter 0.6s ease;
            text-align: center; /* Center the text */
            width: 100%; /* Ensure they take full width */
            transform: translateY(20px); /* Start slightly below */
            position: static; /* Ensure it respects flexbox layout */
        }
        
        #mobile-menu-overlay.open .mobile-menu-link {
            opacity: 1;
            filter: blur(0);
            transform: translateY(0); /* Animate to original position */
        }

        /* Add some delay for a staggered effect */
        #mobile-menu-overlay.open .mobile-menu-link:nth-child(1) { transition-delay: 0.05s; }
        #mobile-menu-overlay.open .mobile-menu-link:nth-child(2) { transition-delay: 0.10s; }
        #mobile-menu-overlay.open .mobile-menu-link:nth-child(3) { transition-delay: 0.15s; }
        #mobile-menu-overlay.open .mobile-menu-link:nth-child(4) { transition-delay: 0.20s; }
        #mobile-menu-overlay.open .mobile-menu-link:nth-child(5) { transition-delay: 0.25s; }
        #mobile-menu-overlay.open .mobile-menu-link:nth-child(6) { transition-delay: 0.30s; }
        #mobile-menu-overlay.open .mobile-menu-link:nth-child(7) { transition-delay: 0.35s; }
        #mobile-menu-overlay.open .mobile-menu-link:nth-child(8) { transition-delay: 0.40s; }
        #mobile-menu-overlay.open .mobile-menu-link:nth-child(9) { transition-delay: 0.45s; }
        #mobile-menu-overlay.open .mobile-menu-link:nth-child(10) { transition-delay: 0.50s; }
        #mobile-menu-overlay.open .mobile-menu-link:nth-child(11) { transition-delay: 0.55s; }
        #mobile-menu-overlay.open .mobile-menu-link:nth-child(12) { transition-delay: 0.60s; }
        #mobile-menu-overlay.open .mobile-menu-link:nth-child(13) { transition-delay: 0.65s; }
        #mobile-menu-overlay.open .mobile-menu-link:nth-child(14) { transition-delay: 0.70s; }
        #mobile-menu-overlay.open .mobile-menu-link:nth-child(15) { transition-delay: 0.75s; }
        #mobile-menu-overlay.open .mobile-menu-link:nth-child(16) { transition-delay: 0.80s; }
        #mobile-menu-overlay.open .mobile-menu-link:nth-child(17) { transition-delay: 0.85s; }
        #mobile-menu-overlay.open .mobile-menu-link:nth-child(18) { transition-delay: 0.90s; }
        #mobile-menu-overlay.open .mobile-menu-link:nth-child(19) { transition-delay: 0.95s; }
        #mobile-menu-overlay.open .mobile-menu-link:nth-child(20) { transition-delay: 1.00s; }

.mobile-menu-links-container {
    display: flex;
    flex-direction: column;
    justify-content: space-around; /* Distribute space evenly */
    gap: 2rem; /* Increased gap between links */
    height: 100%; /* Ensure container takes full height */
}

#mobile-menu-overlay .mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around; /* Changed to space-around */
    height: 100%;
}
        /* Hamburger Menu Toggle Button */
        #hamburger-toggle {
            z-index: 100;
            background: none;
            border: none;
            outline: none; /* Remove default outline */
            position: relative;
            padding: 0.5rem;
            width: 40px;
            height: 40px;
        }

        #hamburger-toggle:focus,
        #hamburger-toggle:active,
        #hamburger-toggle.interactive:hover {
            outline: none !important; /* Ensure no outline on focus/active/hover */
            background: transparent !important; /* Ensure no background on focus/active/hover */
            box-shadow: none !important; /* Ensure no box-shadow on focus/active/hover */
        }
        #hamburger-toggle .line {
            position: absolute;
            left: 50%;
            width: 24px;
            height: 2px;
            background-color: white;
            transform: translateX(-50%);
            transition: transform 0.3s ease, opacity 0.3s ease;
        }
        #hamburger-toggle .line-1 { transform: translate(-50%, -8px); }
        #hamburger-toggle .line-2 { transform: translate(-50%, 0); }
        #hamburger-toggle .line-3 { transform: translate(-50%, 8px); }

        #hamburger-toggle.menu-open .line-1 { transform: translate(-50%, 0) rotate(45deg); }
        #hamburger-toggle.menu-open .line-2 { opacity: 0; }
        #hamburger-toggle.menu-open .line-3 { transform: translate(-50%, 0) rotate(-45deg); }
        
        .main-content {
            background-color: #000;
            position: relative;
            z-index: 20;
        }

        /* Two-Tiered Header Styles */
        .main-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 50;
            background-image: linear-gradient(to right, #2d0c41, #111);
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        .top-bar {
            background-color: rgba(0,0,0,0.2);
            padding: 0.25rem 0;
            overflow: hidden;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .marquee-wrapper {
            position: relative;
            width: 100%;
            height: 1.25rem;
        }
        .bouncing-text {
            position: absolute;
            color: #ccc;
            white-space: nowrap;
            animation: bounce 20s ease-in-out infinite alternate;
        }
        @keyframes bounce {
            0% {
                transform: translateX(0%);
            }
            100% {
                transform: translateX(calc(-100% + 100vw));
            }
        }
        
        .social-icon {
            color: #ccc;
            transition: color 0.3s ease;
            padding: 0 0.75rem;
            border-left: 1px solid #333;
            display: inline-block;
        }
        .social-icon:first-child {
            border-left: none;
        }
        .social-icon:hover {
            color: white;
        }

        .main-header img {
            max-height: 40px; /* Adjust as needed */
            width: auto;
        }

        @media (min-width: 768px) {
            .main-header img {
                max-height: 50px; /* Larger on desktop */
            }
        }

        /* Learn Section Styles */
        .learn-section {
            background-color: #110e13;
            background-image: radial-gradient(circle at top left, rgba(76, 10, 125, 0.2), transparent 40%),
                              radial-gradient(circle at bottom right, rgba(34, 197, 94, 0.1), transparent 50%);
        }
        .phone-mockup {
            background: #111;
            border: 8px solid #333;
            border-radius: 40px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
            aspect-ratio: 9 / 19.5;
            position: relative;
        }
        .phone-mockup-screen {
            border-radius: 32px;
            overflow: hidden;
            width: 100%;
            height: 100%;
            background: #000;
        }
        .phone-mockup-screen video,
        .phone-mockup-screen img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Retro TV Section Styles */
        .humor-section {
            background-color: #1a1a1a;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='%23222' fill-opacity='0.4'%3E%3Crect x='0' y='0' width='100' height='1'/%3E%3Crect x='0' y='25' width='100' height='1'/%3E%3Crect x='0' y='50' width='100' height='1'/%3E%3Crect x='0' y='75' width='100' height='1'/%3E%3C/g%3E%3C/svg%3E");
        }
        .tv-stack-container {
            position: relative;
            width: 100%;
            max-width: 700px;
            aspect-ratio: 16/9;
        }
        .retro-tv {
            position: absolute;
            background: #3a2e28;
            border-radius: 20px 20px 5px 5px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5), inset 0 0 10px rgba(0,0,0,0.5);
            padding: 2.5rem 1.5rem 1.5rem 1.5rem;
        }
        .retro-tv-screen {
            background: #111;
            width: 100%;
            height: 100%;
            border-radius: 5px;
            overflow: hidden;
            position: relative;
        }
        .retro-tv-screen video, .retro-tv-screen img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .static-overlay {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            background-image: url(https://media.giphy.com/media/l41lGvinEgARjB2HC/giphy.gif);
            background-size: cover;
            opacity: 0;
            transition: opacity 0.1s ease-in-out;
            pointer-events: none;
        }
        .static-overlay.active {
            opacity: 0.7;
        }
        .mute-btn {
            position: absolute;
            bottom: 1rem;
            right: 1rem;
            z-index: 10;
            background: rgba(0,0,0,0.5);
            border-radius: 50%;
            padding: 0.5rem;
            color: white;
            opacity: 0.7;
            transition: opacity 0.2s ease;
        }
        .mute-btn:hover {
            opacity: 1;
        }
        .tv-controls {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .tv-knob {
            width: 4rem;
            height: 4rem;
            border-radius: 50%;
            background: linear-gradient(145deg, #444, #222);
            border: 2px solid #555;
            box-shadow: 0 2px 5px rgba(0,0,0,0.5);
            color: #ccc;
            font-size: 0.8rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Blog Section Styles */
        .blog-section {
            background-color: #0d0d0d;
        }
        /* FIX: Updated blog link layout */
        .blog-post-link {
            display: flex; /* Changed to flex */
            align-items: center; /* Vertically align items */
            gap: 1.5rem; /* Space between image and text */
            padding: 2rem;
            border-bottom: 1px solid #333;
            transition: background-color 0.3s ease;
        }
        .blog-post-link:hover {
            background-color: rgba(255,255,255,0.05);
        }
        /* FIX: New style for the thumbnail */
        .blog-post-thumbnail {
            width: 120px;
            height: 120px;
            object-fit: cover;
            border-radius: 0.5rem;
            flex-shrink: 0; /* Prevent image from shrinking */
        }
        .blog-post-title {
            font-family: 'Luckiest Guy', cursive;
            font-size: 2.5rem;
            letter-spacing: 0.05em;
        }
        .blog-post-meta {
            font-size: 0.9rem;
            color: #888;
        }

        /* Hotbox Session Overlay */
        #hotbox-overlay {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            z-index: 101;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.5s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        #hotbox-overlay.open {
            opacity: 1;
            pointer-events: all;
        }
        #hotbox-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            filter: blur(20px);
            transform: scale(1.1);
        }
        #hotbox-content {
            position: relative;
            background: rgba(0,0,0,0.7);
            backdrop-filter: blur(10px);
            border-radius: 1rem;
            padding: 2rem;
            width: 90%;
            max-width: 800px;
            max-height: 90vh;
            overflow-y: auto;
            color: #eee;
        }
        #hotbox-close, .hotbox-nav {
            position: absolute;
            top: 1rem;
            background: rgba(0,0,0,0.5);
            border-radius: 50%;
            color: white;
            width: 40px; height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        #hotbox-close { right: 1rem; }
        .hotbox-nav.prev { left: 1rem; }
        .hotbox-nav.next { left: 4rem; }
      /* Merch "Stash Grid" Section Styles */
.merch-section {
    background-color: #1a1a1a;
    border-top: 1px solid #333;
}
.merch-grid {
    display: grid;

    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    justify-items: center;
}
.merch-card {
    background-color: #222;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.merch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}
.merch-image-container {
    position: relative;
    overflow: hidden;
}
.merch-image-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.5) 0%, rgba(34, 197, 94, 0) 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.merch-card:hover .merch-image-container::after {
    opacity: 1;
}
.merch-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.merch-card-info {
    padding: 1.5rem;
}
.merch-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}
.merch-card-details {
    font-size: 0.9rem;
    color: #a0aec0;
    margin-top: 0.5rem;
    min-height: 40px;
}
.merch-card-buy-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    background-color: #4c0a7d;
    color: white;
    font-weight: 600;
    border-radius: 9999px;
    transition: background-color 0.3s ease;
}
.merch-card-buy-btn:hover {
    background-color: #5f1a91;
}
/* NEW: Strain Carousel Section Styles */
.strain-carousel-section {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 2rem 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    opacity: 0; /* JS will fade this in on scroll */
    transition: opacity 0.5s ease;
}
.carousel-track-container {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.carousel-track {
    display: flex;
    width: fit-content;
    animation: scroll-left 40s linear infinite;
}
.strain-item {
    flex-shrink: 0;
    width: 150px; /* Made items a bit smaller */
    margin: 0 1.5rem;
    text-align: center;
    position: relative;
}
.strain-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #333;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.strain-item:hover .strain-image {
    transform: scale(1.05);
    border-color: #a83279;
}
.strain-name {
    display: block;
    margin-top: 1rem;
    font-weight: 600;
    color: #ccc;
    transition: color 0.3s ease;
}
.strain-item:hover .strain-name {
    color: white;
}
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
/* NEW: Strain Lab Page Styles */
.strain-lab-section {
    background-color: #0d0d0d;
    min-height: 100vh;
}

.strain-card {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strain-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 30px rgba(168, 50, 121, 0.4);
}

.strain-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.strain-card-content {
    padding: 1rem;
}

.strain-card-title {
    font-family: 'Luckiest Guy', cursive;
    font-size: 1.75rem;
    color: white;
}

.strain-card-type {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

.strain-card-type.sativa { color: #f59e0b; }
.strain-card-type.indica { color: #8b5cf6; }
.strain-card-type.hybrid { color: #22c55e; }

.strain-card-thc {
    font-size: 0.9rem;
    color: #a0aec0;
}

/* NEW: Strain Detail Overlay Styles */
#strain-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 101;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
#strain-overlay.open {
    opacity: 1;
    pointer-events: all;
}
#strain-overlay-bg {
    position: absolute;
    inset: 0;
   
    backdrop-filter: blur(15px);
}
#strain-content-wrapper {
    position: relative;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    background: #1a1a1a;
    border-radius: 1rem;
    overflow-y: auto;
    border: 1px solid #333;
}
#strain-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    color: white;
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.tag {
    display: inline-block;
    background-color: rgba(255,255,255,0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.9rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}
/* NEW: Strain Review "Session Report" Styles */
.strain-review-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #444;
}

.review-form-container {
    background: rgba(0,0,0,0.2);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.blaze-scale-container .interactive {
    color: #555;
    transition: color 0.2s ease, transform 0.2s ease;
}

.blaze-scale-container .interactive:hover {
    transform: scale(1.1);
    color: #f59e0b; /* Amber color for hover */
}

.blaze-scale-container .interactive.selected {
    color: #ef4444; /* Red color for selected */
    text-shadow: 0 0 10px #ef4444;
}

.vibe-check-container .vibe-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid #444;
    border-radius: 9999px;
    margin: 0.25rem;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.vibe-check-container input[type="radio"]:checked + .vibe-label {
    background-color: #4c0a7d;
    border-color: #a83279;
    color: white;
}

.review-textarea {
    width: 100%;
    min-height: 100px;
    background: #222;
    border: 1px solid #444;
    border-radius: 0.5rem;
    padding: 0.75rem;
    color: white;
    resize: vertical;
}

.submit-review-btn {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background-color: #16a34a;
    color: white;
    font-weight: 700;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}
.submit-review-btn:hover {
    background-color: #22c55e;
}

.submitted-review {
    background: rgba(255,255,255,0.05);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}
.submitted-review .review-author {
    font-weight: 700;
    color: #a83279;
}
/* NEW: "Sound Off" Audio Review Styles */
.sound-off-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem;
    background-color: #a83279; /* Purple to match cursor */
    color: white;
    font-weight: 700;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}
.sound-off-btn:hover {
    background-color: #8b5cf6;
}

.audio-recorder-ui {
    display: none; /* Hidden by default */
    text-align: center;
    margin-top: 1rem;
    background: #333;
    padding: 1rem;
    border-radius: 0.5rem;
}

.audio-recorder-ui.recording {
    display: block;
}

.recording-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: #ef4444;
    margin-bottom: 1rem;
}
.recording-indicator span {
    width: 10px;
    height: 10px;
    background-color: #ef4444;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.stop-recording-btn {
    padding: 0.5rem 1rem;
    background-color: #ef4444;
    color: white;
    border-radius: 0.5rem;
}

.audio-player {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}
.audio-player button {
    background: #4c0a7d;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.force-reflow {
    /* This rule is designed to force a browser reflow/repaint. */
    /* It should not visually alter the page. */
    transform: translateZ(0); /* Forces a new compositing layer */
}

/* NEW: Vertical video player container for strain overlay */
.vertical-video-container {
    max-width: 350px; /* Controls the width of the video player */
    margin: 0 auto; /* Centers the player horizontally */
    aspect-ratio: 9 / 19.5; /* Creates the tall, phone-like shape */
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
/* NEW: Video overlay for budjar strain overlay */
/* --- START: Strain of the Month Feature Styles --- */

/* --- START: Strain of the Month Feature Styles (Version 3.0 - Corrected) --- */

/* 1. The 3D Jar Container */
#sotm-jar-container {
    position: absolute;
    /* * POSITION FIX: Using viewport width (vw) for better consistency. 
     * 5vw means 5% from the left edge of the screen.
     */
    left: 5vw; 
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    cursor: pointer;
    text-align: center;
    /* SIZE FIX: Reduced the size slightly as requested */
    width: 190px; 
    perspective: 1000px;
}

#sotm-jar-container span {
    display: block;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-top: 15px;
    text-shadow: 0 0 8px rgba(0, 0, 0, 1);
    transition: color 0.4s ease, text-shadow 0.4s ease;
}

/* 2. The Jar Image - With a refined 3D effect */
#sotm-jar-container img {
    width: 100%;
    /* * SHADOW FIX: Refined the drop-shadow for a more realistic, less "oval" look.
     * Layer 1: A sharper, closer shadow to define the edge.
     * Layer 2: A softer, more subtle glow.
     */
    filter: drop-shadow(4px 6px 8px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 10px rgba(147, 51, 234, 0.4));
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
}

/* 3. The "Glass Glare" */
#sotm-jar-container::before {
    content: '';
    position: absolute;
    top: 5%;
    left: 20%;
    width: 50%;
    height: 80%;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.05));
    border-radius: 50%;
    transform: rotate(20deg);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 0.5;
}

/* 4. The HOVER Effects */
#sotm-jar-container:hover img {
    transform: scale(1.1) translateY(-10px) rotateY(-12deg);
    /* SHADOW FIX: The shadow on hover is also tighter and more defined now. */
    filter: drop-shadow(8px 15px 15px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 20px rgba(34, 197, 94, 0.6));
}

#sotm-jar-container:hover::before {
    opacity: 0.2;
    transform: rotate(10deg) translateX(-10px);
}

#sotm-jar-container:hover span {
    color: #6ee7b7;
    text-shadow: 0 0 15px rgba(34, 197, 94, 1);
}


/* 5. The Video Overlay Styles (Unchanged) */
#sotm-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

#sotm-overlay .overlay-content {
    background-color: #18181b;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #4ade80;
    max-width: 800px;
    width: 100%;
    position: relative;
    text-align: center;
    color: #e2e8f0;
}

#sotm-overlay #sotm-close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    border: none;
    background: none;
    line-height: 1;
}

#sotm-overlay #sotm-title {
    font-family: 'Luckiest Guy', cursive;
    color: #4ade80;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

#sotm-overlay .video-container {
    width: 100%;
    margin-bottom: 20px;
}

#sotm-overlay .video-container video {
    width: 100%;
    border-radius: 5px;
}
        
#sotm-overlay #sotm-description {
    margin-bottom: 25px;
    line-height: 1.6;
}

#sotm-overlay .cta-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #4ade80;
    color: #18181b;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

#sotm-overlay .cta-button:hover {
    background-color: #6ee7b7;
}

/* 6. Mobile Responsiveness */
@media (max-width: 768px) {
    #sotm-jar-container {
        /* SIZE & POSITION FIX: Adjusted for mobile */
        width: 100px; 
        left: 10px;
    }
    #sotm-jar-container span {
        display: none;
    }
}

/* --- END: Strain of the Month Feature Styles (Version 3.0 - Corrected) --- */

/*
--- Hero Ad Banner Styles ---
*/
.hero-ad-banner {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 160px;
    height: 600px;
    background-color: #000; /* Black background as a fallback */
    border: 2px solid #444;
    border-radius: 10px;
    z-index: 10; /* Sits above the video but below the header/overlays */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-ad-banner:hover {
    transform: translateY(-50%) scale(1.03); /* Slight zoom effect on hover */
    box-shadow: 0 15px 40px rgba(138, 248, 115, 0.3); /* Greenish glow effect */
}

.hero-ad-banner.left {
    left: 40px; /* Spacing from the left edge of the screen */
}

.hero-ad-banner.right {
    right: 40px; /* Spacing from the right edge of the screen */
}

.hero-ad-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures your image fills the banner perfectly */
}

/* Hides the banners on tablets and mobile phones to prevent clutter */
@media (max-width: 1300px) {
    .hero-ad-banner {
        display: none;
    }
}
/*END AD BANNER*/
/*STYLE LOGO TEXT*/
   @keyframes gradient-animation {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    .animated-background {
        /* This is the line we changed for the new colors */
        background: linear-gradient(-45deg, #9333ea, #2563eb, #065f46, #4c1d95);
        
        background-size: 300% 300%;
        animation: gradient-animation 18s ease infinite;
        border-radius: 1rem; /* 16px */
        border: 1px solid rgba(255, 255, 255, 0.1); /* Optional: Adds a subtle border */
    }

/* Smoky Nebula Background */
.hero-video-banners {
    background-color: #0d0d0d; /* Dark base color */
    background-image: 
        radial-gradient(ellipse at 70% 30%, rgba(147, 51, 234, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 70%, rgba(34, 197, 94, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
    background-size: 100% 100%;
    position: relative;
    overflow: hidden;
}

.hero-video-banners::before, .newsletter-banner-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 800'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    z-index: 0;
}

/* Newsletter Banner Section */
.newsletter-banner-section {
    font-family: 'Poppins', sans-serif;
}

.newsletter-input {
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.newsletter-input:focus {
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.5); /* Emerald glow */
}

.newsletter-button {
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

#newsletter-feedback.success {
    color: #10B981; /* Emerald 500 */
    font-weight: 600;
}

#newsletter-feedback.error {
    color: #EF4444; /* Red 500 */
    font-weight: 600;
}

/* Global Search Styles */
#global-search-input {
    transition: all 0.3s ease;
}

#global-search-input:focus {
    border-color: #10B981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.5);
}

#search-results-dropdown {
    position: relative; /* Crucial for absolute positioning of children */
    border: 1px solid #333;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.search-result-item {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #222;
    color: #eee;
    transition: background-color 0.2s ease;
}

.search-result-item:hover {
    background-color: #333;
    cursor: pointer;
}

.search-result-item:last-child {
    border-bottom: none;
}

#search-results-dropdown #search-close-btn {
    position: absolute; /* Ensure it's absolutely positioned */
    top: 0.5rem; /* Adjust as needed */
    right: 0.5rem; /* Adjust as needed */
    z-index: 30; /* Ensure it's above search results */
    background: none; /* Remove temporary red background */
    border: none; /* Remove any border */
    color: #a0aec0; /* Restore original color */
    width: 24px; /* Restore original size */
    height: 24px; /* Restore original size */
    display: flex; /* Use flex to center the SVG */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: color 0.2s ease;
}

#search-results-dropdown #search-close-btn:hover {
    color: white;
}
/* Custom styles to enhance Tailwind and Swiper */

/* Article Card Styles for Cannabis 101 */
.article-card {
    background-color: #1a1a1a; /* Darker background for cards */
    border: 1px solid #333; /* Subtle border */
    border-radius: 0.75rem; /* Rounded corners */
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.4); /* Green glow on hover */
}

.article-card img {
    width: 100%;
    height: 200px; /* Fixed height for images */
    object-fit: cover; /* Ensure images cover the area */
}

.article-card .p-6 {
    padding: 1.5rem; /* More padding inside the card */
}

.article-card h3 {
    font-family: 'Luckiest Guy', cursive;
    font-size: 1.75rem;
    color: white;
    margin-bottom: 0.5rem;
}

.article-card p {
    font-size: 0.95rem;
    color: #a0aec0;
    line-height: 1.5;
}

.article-card a {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    text-decoration: none;
}

.article-card .play-audio-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background-color: #4c0a7d; /* Purple background for audio button */
    color: white;
    border-radius: 9999px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.article-card .play-audio-btn:hover {
    background-color: #5f1a91;
}

.article-card .play-audio-btn svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: currentColor;
}


        

        /* Style for the Swiper navigation arrows */
        .swiper-button-next,
        .swiper-button-prev {
            color: #ffffff;
            background-color: rgba(0, 0, 0, 0.3);
            width: 50px;
            height: 50px;
            border-radius: 9999px;
            transition: background-color 0.3s ease;
        }
        
        .swiper-button-next:hover,
        .swiper-button-prev:hover {
            background-color: rgba(0, 0, 0, 0.6);
        }

        .swiper-button-next::after,
        .swiper-button-prev::after {
            font-size: 20px;
            font-weight: 800;
        }

        /* Style for the Swiper pagination dots */
        .swiper-pagination-bullet {
            background-color: rgba(255, 255, 255, 0.7);
            width: 10px;
            height: 10px;
            opacity: 1;
        }

        .swiper-pagination-bullet-active {
            background-color: #ffffff;
        }
        
        /* Ensure video is not interactive behind the content */
        .swiper-slide video {
            pointer-events: none;
        }
        /* ================================================================== */
/* START: Disable Sticky Scroll Effect on Mobile */
/* ================================================================== */

@media (max-width: 1023px) {
    
    /* 1. Reset the main scroll container */
    .scroll-container {
        height: auto; /* Remove the large fixed height that enables the effect */
    }

    /* 2. Un-stick the element and turn it into a normal section */
    .sticky-element {
        position: relative; /* Change from 'sticky' to normal positioning */
        top: auto;
        height: auto;
        display: flex;
        flex-direction: column; /* Stack the content vertically */
        align-items: center;
        gap: 2rem; /* Add some space between the stacked items */
        padding: 4rem 1rem; /* Add some vertical padding for breathing room */
    }

    /* 3. Hide elements that only work with the scroll effect */
    #smoke-canvas {
        display: none; /* The smoke effect doesn't make sense without the scroll */
    }

    /* 4. Reset positions of animated elements */
    #logo-container,
    #sotm-jar-container,
    #animated-text-container {
        position: relative;
        transform: none;
        opacity: 1;
        width: 100%;
        text-align: center;
    }

    #revealed-logo {
        max-width: 250px;
        margin: 0 auto;
    }

    /* 5. Ensure the carousel looks good in a static layout */
    #strain-carousel {
        margin-top: 2rem;
        width: 100%;
    }
}

/* ================================================================== */
/* END: Disable Sticky Scroll Effect on Mobile */
/* ================================================================== */
<!-- === UPDATED STYLES for the 3D Cube Carousel === -->
    <style>
        .cube-carousel-wrapper {
            padding: 4px; /* The "thickness" of our border */
            background: linear-gradient(45deg, #34D399, #8B5CF6);
            border-radius: 1rem; /* 16px */
            box-shadow: 0 10px 25px -5px rgba(0,0,0,0.5), 0 0 15px rgba(52, 211, 153, 0.5);
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        }

        /* --- NEW: Hover effect for the whole cube --- */
        .cube-carousel-wrapper:hover {
            transform: scale(1.03);
            box-shadow: 0 20px 35px -10px rgba(0,0,0,0.6), 0 0 25px rgba(139, 92, 246, 0.7);
        }

        .cube-container {
            perspective: 1500px;
        }

        .cube {
            width: 100%;
            height: 100%;
            position: relative;
            transform-style: preserve-3d;
            transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
            /* --- NEW: Makes sure only the front face is clickable --- */
            pointer-events: none;
        }

        .cube-face {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            background-color: #1f2937; /* bg-gray-800 */
            border-radius: 0.75rem; /* 12px */
            overflow: hidden;
            /* --- NEW: Allows clicks on the faces --- */
            pointer-events: auto;
        }
        
        /* Position each face of the cube */
        .cube-face-1 { transform: rotateY(0deg) translateZ(200px); }
        .cube-face-2 { transform: rotateY(90deg) translateZ(200px); }
        .cube-face-3 { transform: rotateY(180deg) translateZ(200px); }
        .cube-face-4 { transform: rotateY(270deg) translateZ(200px); }
        /* Note: The translateZ value (200px) is adjusted for the new column layout */

        .cube-media {
            width: 100%;
            height: 180px; /* Adjusted height */
            object-fit: cover;
        }
        
        .youtube-embed {
            width: 100%;
            height: 180px; /* Must match .cube-media height */
            border: none;
        }

        .cube-btn {
            background-color: #10B981; /* Emerald-500 */
            transition: all 0.3s ease;
        }

        /* --- NEW: Enhanced button hover effect --- */
        .cube-btn:hover {
            background-color: #059669; /* Emerald-600 */
            transform: scale(1.05);
            box-shadow: 0 0 15px 5px rgba(16, 185, 129, 0.6);
        }

        .cube-nav {
            position: absolute;
            bottom: 1rem; /* 16px */
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 1.5rem; /* 24px */
            z-index: 20; /* Ensure buttons are on top */
        }

        .cube-nav-btn {
            background-color: rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(5px);
            border-radius: 9999px;
            width: 2.5rem; /* 40px */
            height: 2.5rem; /* 40px */
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s;
        }
        .cube-nav-btn:hover {
            background-color: #10B981;
            transform: scale(1.1);
        }
        .cube-nav-btn svg {
            width: 1.25rem; /* 20px */
            height: 1.25rem; /* 20px */
        }
       /* Hide custom cursor on devices that primarily use touch (like phones/tablets) */
@media (pointer: coarse) {
    #ember-cursor {
        display: none;
    }
}
/* === NEW STYLES FOR DYNAMIC ARTICLE PREVIEW SECTION === */
        .article-preview-card {
            background-color: #1f2937; /* bg-gray-800 */
            border-radius: 1rem; /* rounded-xl */
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        .article-preview-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 25px -5px rgba(0,0,0,0.4), 0 8px 10px -6px rgba(0,0,0,0.4);
        }
        .article-preview-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .article-preview-content {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        .article-preview-title {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 1.25rem; /* text-xl */
            line-height: 1.4;
            color: #fff;
            margin-bottom: 0.5rem;
        }
        .article-preview-meta {
            font-size: 0.875rem; /* text-sm */
            color: #9ca3af; /* text-gray-400 */
            margin-bottom: 1rem;
        }
        .article-preview-excerpt {
            color: #d1d5db; /* text-gray-300 */
            flex-grow: 1;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        .article-preview-read-more {
            display: inline-block;
            font-weight: 600;
            color: #34d399; /* text-emerald-400 */
            transition: color 0.2s ease;
        }
        .article-preview-read-more:hover {
            color: #6ee7b7; /* text-emerald-300 */
        }
        /*
  FIX: Ensure cursor is a pointer for all clickable elements
  inside the login modal, overriding any conflicting styles.
*/
#login-modal a,
#login-modal button {
    cursor: pointer !important;
}
/* --- Theme: Modern Clarity --- */
.theme-modern-clarity {
    background-color: rgba(18, 18, 18, 0.97); /* Dark charcoal background */
    color: #EAEAEA; /* Off-white text for better readability */
}
.theme-modern-clarity .description-text {
    font-family: 'Inter', sans-serif; /* A clean, modern font */
    color: #EAEAEA;
    font-size: 1.05rem; /* Slightly larger font size */
    line-height: 1.6;   /* More space between lines */
}
.theme-modern-clarity .card-bg {
    background-color: #282828; /* A slightly lighter charcoal for cards */
}
.theme-modern-clarity .header-text {
    color: #ffffff;
}
.theme-modern-clarity .tag {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}
.theme-modern-clarity .stat-label {
    color: #a1a1aa; /* A muted gray for labels */
}
/* --- Forceful Box Style Fix --- */
.theme-modern-clarity .card-bg { 
    background-color: #282828 !important;
    border: 1px solid #444 !important; /* This should override any conflicting styles */
}


/* =================================================================== */
/* COMPLETE CSS FOR ALL STRAIN OVERLAY THEMES              */
/* =================================================================== */

/* --- Theme 1: Midnight Slate --- */
.theme-midnight-slate {
    background-color: rgba(17, 24, 39, 0.97);
    color: #d1d5db;
}
.theme-midnight-slate .description-text { font-family: 'Lato', sans-serif; color: #d1d5db; }
.theme-midnight-slate .card-bg { background-color: #374151; }
.theme-midnight-slate .header-text { color: #ffffff; }
.theme-midnight-slate .tag { background-color: rgba(255, 255, 255, 0.1); color: #fff; }
.theme-midnight-slate .stat-label { color: #9ca3af; }

/* --- Theme 2: Forest Depths --- */
.theme-forest-depths {
    background-color: rgba(16, 29, 23, 0.97);
    color: #e2e8f0;
}
.theme-forest-depths .description-text { font-family: 'Open Sans', sans-serif; color: #e2e8f0; }
.theme-forest-depths .card-bg { background-color: #1a3a2a; }
.theme-forest-depths .header-text { color: #a7f3d0; }
.theme-forest-depths .tag { background-color: rgba(255, 255, 255, 0.1); color: #fff; }
.theme-forest-depths .stat-label { color: #94a3b8; }

/* --- Theme 3: Deep Indigo --- */
.theme-deep-indigo {
    background-color: rgba(25, 24, 45, 0.97);
    color: #e0e7ff;
}
.theme-deep-indigo .description-text { font-family: 'Roboto', sans-serif; color: #e0e7ff; }
.theme-deep-indigo .card-bg { background-color: #3730a3; }
.theme-deep-indigo .header-text { color: #c7d2fe; }
.theme-deep-indigo .tag { background-color: rgba(255, 255, 255, 0.1); color: #fff; }
.theme-deep-indigo .stat-label { color: #c7d2fe; }

/* --- Theme 4: Modern Clarity (with box fix) --- */
.theme-modern-clarity {
    background-color: rgba(18, 18, 18, 0.97);
    color: #EAEAEA;
}
.theme-modern-clarity .description-text { font-family: 'Inter', sans-serif; color: #EAEAEA; font-size: 1.05rem; line-height: 1.6; }
.theme-modern-clarity .card-bg { 
    background-color: #282828;
    border: 1px solid #444; /* This border makes the boxes visible */
}
.theme-modern-clarity .header-text { color: #ffffff; }
.theme-modern-clarity .tag { background-color: rgba(255, 255, 255, 0.1); color: #fff; }
.theme-modern-clarity .stat-label { color: #a1a1aa; }

/* --- Theme 5: Crisp & Clean (Light) --- */
.theme-crisp-clean {
    background-color: #ffffff;
    color: #1f2937;
}
.theme-crisp-clean .description-text { font-family: 'Inter', sans-serif; color: #374151; font-size: 1.05rem; line-height: 1.6; }
.theme-crisp-clean .card-bg { background-color: #f3f4f6; }
.theme-crisp-clean .header-text { color: #111827; }
.theme-crisp-clean .tag { background-color: #e5e7eb; color: #1f2937; }
.theme-crisp-clean .stat-label { color: #6b7280; }

/* --- Theme 6: Warm Paper (Light) --- */
.theme-warm-paper {
    background-color: #FDFBF5;
    color: #4d443a;
}
.theme-warm-paper .description-text { font-family: 'Lato', sans-serif; color: #5e5146; font-size: 1.05rem; line-height: 1.6; }
.theme-warm-paper .card-bg { background-color: #F5F1E9; }
.theme-warm-paper .header-text { color: #3a322a; }
.theme-warm-paper .tag { background-color: #EAE4D9; color: #4d443a; }
.theme-warm-paper .stat-label { color: #7a6d61; }
 /* START: Strain Overlay Readability Fix */
        #strain-content-wrapper p {
            font-weight: 400 !important; /* Force normal font weight */
            line-height: 1.7 !important; /* Increase space between lines */
            color: #d1d5db !important; /* Lighter text color for readability */
        }
        /* END: Strain Overlay Readability Fix */
/* === NEW: FLOATING PROMOTIONAL CAROUSEL STYLES === */
        #floating-promo-carousel-container {
            /* Positioning is handled by Tailwind classes */
            transition: all 0.3s ease-in-out;
        }
        .promo-swiper {
            border-radius: 1rem; /* 16px */
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.1);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
        }
        .promo-slide-content {
            position: relative;
            width: 100%;
            height: 120px;
            background-color: #1f2937; /* Fallback bg */
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 2rem;
            color: white;
        }
        .promo-video-bg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            z-index: 1; /* Behind the text and button */
        }
        .promo-slide-content::before { /* Dark overlay for text readability */
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            z-index: 2;
        }
        .promo-text, .promo-btn {
            position: relative;
            z-index: 3;
        }
        .promo-text h3 {
            font-family: 'Luckiest Guy', cursive;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .promo-btn {
            background-color: #10B981; /* emerald-600 */
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 9999px; /* rounded-full */
            font-weight: bold;
            text-decoration: none;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        .promo-btn:hover {
            background-color: #059669; /* emerald-700 */
            transform: scale(1.05);
        }

        /* Custom arrows for the promo swiper */
        .promo-arrow-next, .promo-arrow-prev {
            color: #fff;
            width: 36px;
            height: 36px;
            background-color: rgba(0,0,0,0.3);
            border-radius: 50%;
            transition: background-color 0.3s ease, opacity 0.3s ease;
        }
        .promo-arrow-next:hover, .promo-arrow-prev:hover {
            background-color: rgba(16, 185, 129, 0.8);
        }
        .promo-arrow-next::after, .promo-arrow-prev::after {
            font-size: 16px;
            font-weight: 900;
        }
        .promo-arrow-prev { left: 10px; }
        .promo-arrow-next { right: 10px; }

        /* Responsive adjustments for promo carousel */
        @media (max-width: 768px) {
            #floating-promo-carousel-container {
                top: 1rem; /* Move it up on mobile */
                width: 95%;
            }
            .promo-slide-content {
                height: 150px; /* Taller on mobile */
                flex-direction: column;
                justify-content: center;
                align-items: center;
                text-align: center;
                gap: 0.75rem;
                padding: 1rem;
            }
            .promo-text h3 { font-size: 1.25rem; } /* text-xl */
            .promo-text p { font-size: 0.875rem; } /* text-sm */
            .promo-arrow-next, .promo-arrow-prev {
                display: none; /* Hide arrows on mobile, rely on swipe */
            }
        }
        