
        /* --- 1. SINGLE THEME VARIABLES (Royal Dark) --- */
        :root {
            /* Brand Colors */
            --maroon: #800000;      
            --sand: #EDC9AF;        
            --royal-blue: #4169E1;
            
            /* UNIFIED DARK THEME PALETTE */
            --bg-body: #0f1115;     /* Very Dark (Almost Black) */
            --bg-card: #1a1f2b;     /* Dark Gray/Blue */
            --text-main: #ffffff;   /* Pure White */
            --text-muted: #9ca3af;  /* Light Gray */
            --border-color: #374151;
            --input-bg: #252b3b;
            --shadow-card: 0 10px 25px -5px rgba(0, 0, 0, 0.6), 0 8px 10px -6px rgba(0, 0, 0, 0.4);
        }

        /* --- 2. BASE STYLES & OVERRIDES --- */
        
        /* Smooth Scrolling */
        html { scroll-behavior: smooth; }

        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 10px; }
        ::-webkit-scrollbar-track { background: var(--bg-body); }
        ::-webkit-scrollbar-thumb { background: var(--maroon); border-radius: 5px; border: 2px solid var(--bg-body); }

        /* Selection Color */
        ::selection { background-color: var(--maroon); color: #ffffff; }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--bg-body);
            color: var(--text-main);
            background-image: url('https://www.transparenttextures.com/patterns/dark-denim-3.png');
            overflow-x: hidden;
        }

        h1, h2, h3, .font-cinzel { font-family: 'Cinzel Decorative', cursive; }

        /* --- 3. CRITICAL OVERRIDES (Fixing Tailwind Classes) --- */
        /* This forces all "light mode" classes to look dark */
        
        .bg-white, .bg-gray-50, .bg-gray-100 {
            background-color: var(--bg-card) !important;
            color: var(--text-main) !important;
            border: 1px solid var(--border-color);
        }

        .text-gray-600, .text-gray-700, .text-gray-800, .text-gray-900 {
            color: #d1d5db !important; /* Light Gray text */
        }
        
        .shadow-lg, .shadow-xl {
            box-shadow: var(--shadow-card) !important;
        }

        /* --- 4. COMPONENTS --- */

        /* Sidebar */
        #sidebar-nav {
            background-color: #000000 !important; /* Pure black sidebar */
            border-right: 1px solid var(--maroon);
        }
        .nav-link {
            display: block; padding: 0.75rem 1.5rem; border-radius: 0.5rem;
            color: rgba(255,255,255,0.7) !important; transition: all 0.3s ease;
        }
        .nav-link:hover { background-color: rgba(255, 255, 255, 0.1); color: white !important; }
        .nav-link.active { background-color: var(--sand); color: var(--maroon) !important; font-weight: 800; }

        /* Hero Background */
        .hero-bg {
            background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://www.indianexcursions.co/wp-content/uploads/2020/12/jaisalmer-orange-sunset-camel-scaled.jpg');
            background-size: cover; background-position: center 70%; background-attachment: fixed;
        }
        @media (max-width: 768px) { .hero-bg { background-attachment: scroll; } }

        /* Inputs */
        input, select, textarea {
            background-color: var(--input-bg) !important; 
            color: white !important;
            border: 1px solid var(--border-color) !important;
            border-radius: 0.5rem;
        }
        input:focus, select:focus, textarea:focus {
            outline: none; border-color: var(--maroon) !important;
            box-shadow: 0 0 0 3px rgba(128, 0, 0, 0.3) !important;
        }
        /* Autofill Fix */
        input:-webkit-autofill {
            -webkit-box-shadow: 0 0 0px 1000px var(--input-bg) inset;
            -webkit-text-fill-color: white;
        }

        /* Headings */
        .section-heading { position: relative; padding-bottom: 1rem; margin-bottom: 3rem; }
        .section-heading::after {
            content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
            width: 100px; height: 3px; background-color: var(--sand);
        }

        /* Utility Text Colors */
        .text-maroon { color: #ff4d4d !important; /* Brighter maroon for dark mode readability */ }
        .text-sand { color: var(--sand) !important; }
        .text-royal-blue { color: #60a5fa !important; /* Brighter blue for dark mode readability */ }
        .bg-maroon { background-color: var(--maroon) !important; }
        .bg-sand { background-color: var(--sand) !important; }
        .bg-royal-blue { background-color: var(--royal-blue) !important; }

        /* --- 5. MODALS --- */
        .modal-overlay {
            position: fixed; top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.9); display: flex; align-items: center; justify-content: center;
            z-index: 100; opacity: 0; visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s; padding: 1rem; backdrop-filter: blur(8px);
        }
        .modal-overlay.active { opacity: 1; visibility: visible; }
        .modal-content {
            padding: 2rem; border-radius: 1rem; width: 100%; max-width: 600px;
            transform: scale(0.95); transition: transform 0.3s;
            max-height: 90vh; overflow-y: auto; position: relative;
            border: 1px solid var(--border-color);
        }
        .modal-overlay.active .modal-content { transform: scale(1); }
        .modal-content.modal-blog { max-width: 48rem; text-align: left; }

        .close-modal-btn {
            position: absolute; top: 1rem; right: 1.5rem; font-size: 2rem;
            line-height: 1; color: var(--text-muted); background: none; border: none; cursor: pointer;
        }
        .close-blog-modal-btn {
            position: absolute; top: 1.5rem; right: 2rem; font-size: 3rem;
            color: white; opacity: 0.8; z-index: 110;
        }

        /* --- 6. SPECIAL SECTIONS --- */

        /* Gallery Filter Buttons */
        .filter-btn {
            padding: 0.5rem 1.5rem; border: 2px solid var(--sand); color: var(--sand);
            border-radius: 9999px; font-weight: 600; background: transparent; margin: 0.25rem; cursor: pointer;
        }
        .filter-btn:hover, .filter-btn.active { background: var(--sand); color: var(--maroon); }

        /* Gallery Card */
        .gallery-card { border-radius: 1rem; overflow: hidden; position: relative; margin-bottom: 1.5rem; break-inside: avoid; }
        .gallery-card img { width: 100%; display: block; transition: transform 0.5s; }
        .gallery-card:hover img { transform: scale(1.1); }
        .gallery-overlay {
            position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
            opacity: 0; transition: opacity 0.3s; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem;
        }
        .gallery-card:hover .gallery-overlay { opacity: 1; }

        /* Royal Curtain Section */
        .royal-curtain-section {
            position: relative; background: linear-gradient(to bottom, var(--maroon), #2a0000);
            color: #FEFBF6; padding: 8rem 1rem 6rem; margin-top: 4rem; text-align: center;
        }
        .royal-curtain-section::before {
            content: ''; position: absolute; top: -30px; left: 0; right: 0; height: 60px;
            background-color: var(--bg-body);
            background-image: radial-gradient(circle at 50% 100%, transparent 35px, var(--bg-body) 36px);
            background-size: 80px 80px; background-repeat: repeat-x; background-position: center bottom;
        }
        .btn-royal-gold {
            border: 2px solid var(--sand); color: var(--sand); padding: 1rem 3rem;
            border-radius: 50px; font-family: 'Cinzel Decorative', cursive; font-size: 1.25rem;
            background: transparent; transition: all 0.3s;
        }
        .btn-royal-gold:hover { background: var(--sand); color: var(--maroon); box-shadow: 0 0 30px rgba(237, 201, 175, 0.4); }

        /* Grand Launch Overlay */
        #launch-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 99999; display: flex; overflow: hidden; }
        .curtain-panel {
            width: 50%; height: 100%; background: linear-gradient(90deg, #2a0000 0%, #800000 50%, #2a0000 100%);
            position: relative; transition: transform 2.5s cubic-bezier(0.25, 1, 0.5, 1);
            box-shadow: inset 0 0 80px rgba(0,0,0,0.8);
        }
        .curtain-open .left-panel { transform: translateX(-100%); }
        .curtain-open .right-panel { transform: translateX(100%); }
        
        #launch-controls {
            position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
            z-index: 100000; background: var(--bg-card); padding: 3rem; border-radius: 1rem;
            border: 4px solid var(--sand); width: 90%; max-width: 400px; text-align: center;
            transition: opacity 0.5s;
        }
        .curtain-open #launch-controls { opacity: 0; pointer-events: none; }
        .curtain-border {
            position: absolute; top: 0; bottom: 0; width: 40px;
            background-color: var(--maroon); border-right: 4px solid var(--sand); border-left: 4px solid var(--sand);
            background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20 L40 0 L40 40 Z' fill='%23EDC9AF' fill-opacity='0.2'/%3E%3C/svg%3E");
        }
        .left-panel .curtain-border { right: 0; } .right-panel .curtain-border { left: 0; }

        /* Form & Other Styles */
        .form-section { transition: all 0.3s ease-in-out; }
        .form-section.hidden-section { display: none; opacity: 0; }
        .form-section.visible-section { display: block; opacity: 1; animation: fadeIn 0.4s; }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
        
        .checkbox-wrapper { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.5rem; border-radius: 0.5rem; cursor: pointer; }
        .checkbox-wrapper:hover { background-color: rgba(255,255,255,0.05); }
        .checkbox-input { margin-top: 0.25rem; width: 1.25rem; height: 1.25rem; accent-color: var(--maroon); }

        .marquee-wrapper { overflow: hidden; width: 100%; }
        .marquee-content { display: flex; animation: marquee 40s linear infinite; }
        .marquee-content:hover { animation-play-state: paused; }
        .marquee-item { flex-shrink: 0; width: 100%; padding: 0 1rem; }
        @media (min-width: 768px) { .marquee-item { width: 50%; } }
        @media (min-width: 1024px) { .marquee-item { width: 33.3333%; } }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        .live-dot { height: 8px; width: 8px; background-color: #22c55e; border-radius: 50%; display: inline-block; margin-right: 6px; animation: pulse-green 2s infinite; }
        @keyframes pulse-green { 0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); } 70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); } 100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); } }
        
        .grow-card { border: 1px solid var(--border-color); transition: all 0.4s ease; position: relative; overflow: hidden; z-index: 1; }
        .grow-card::before { content: ""; position: absolute; top: 0; left: 0; width: 0%; height: 100%; background: rgba(128, 0, 0, 0.1); z-index: -1; transition: width 0.4s ease; }
        .grow-card:hover::before { width: 100%; }
        .grow-card:hover { transform: translateY(-8px); border-color: var(--maroon); box-shadow: var(--shadow-card); }
        
        .polaroid-card { background-color: var(--bg-card); padding: 1rem 1rem 3rem 1rem; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); transform: rotate(-2deg); transition: transform 0.3s ease, z-index 0.3s; border: 1px solid var(--border-color); }
        .polaroid-card:nth-child(even) { transform: rotate(2deg); }
        .polaroid-card:hover { transform: rotate(0deg) scale(1.05); z-index: 10; box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5); }

        /* Fix for Tables in Dark Mode */
        .schedule-table th { background-color: rgba(237, 201, 175, 0.1) !important; color: var(--sand) !important; }
        .schedule-table td { color: var(--text-muted) !important; }
  










        /* --- ROOTS & WISDOM SECTION --- */
        .idiom-card {
            background-color: var(--bg-card);
            border-left: 4px solid var(--maroon);
            padding: 1.5rem;
            border-radius: 0 0.5rem 0.5rem 0;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .idiom-card::after {
            /* Subtle pattern watermark */
            content: '❝';
            position: absolute;
            right: 10px;
            bottom: -10px;
            font-size: 6rem;
            color: var(--maroon);
            opacity: 0.05;
            font-family: serif;
        }
        .idiom-card:hover {
            transform: translateX(5px);
            background-color: rgba(237, 201, 175, 0.1); /* Sand tint */
            box-shadow: var(--shadow-card);
        }
        
        /* Map Container Styling */
        .map-container svg {
            filter: drop-shadow(0 10px 15px rgba(0,0,0,0.2));
            transition: transform 0.5s ease;
        }
        .map-container:hover svg {
            transform: scale(1.02);
        }
        
        /* Tooltip Customization */
        #map-tooltip {
            background-color: var(--maroon);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            font-family: 'Poppins', sans-serif;
            font-size: 0.875rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.2);
            border: 1px solid var(--sand);
            z-index: 50;
        }
        /* Tooltip Styling */
        #map-tooltip {
            position: absolute; /* Critical for movement */
            background-color: var(--maroon);
            color: var(--sand);
            padding: 0.5rem 1rem;
            border-radius: 4px;
            font-family: 'Poppins', sans-serif;
            font-size: 0.875rem;
            font-weight: bold;
            box-shadow: 0 4px 6px rgba(0,0,0,0.3);
            border: 1px solid var(--sand);
            pointer-events: none; /* Prevents tooltip from blocking the mouse */
            opacity: 0; /* Hidden by default */
            transition: opacity 0.2s ease; /* Smooth fade in/out */
            z-index: 50;
            white-space: nowrap; /* Prevents text wrapping */
        }

        /* Interactive Paths */
        #RajasthanMap svg path {
            cursor: pointer;
            transition: fill 0.3s ease, transform 0.3s ease;
            transform-origin: center;
        }
        /* Native hover effect (fallback) */
        #RajasthanMap svg path:hover {
            fill: var(--maroon);
            stroke: var(--sand);
            stroke-width: 2px;
            filter: drop-shadow(0 0 5px rgba(128, 0, 0, 0.5));
            transform: scale(1.01); /* Subtle pop */
        }













        /* --- ROYAL CAT INVITATION SECTION --- */
        
        .cat-invite-section {
            /* "Royal Velvet" Background */
            background-color: #2a0a0a; /* Very dark maroon */
            background-image: radial-gradient(circle at 50% 50%, #4a0e0e 0%, #2a0a0a 100%);
            padding: 6rem 1rem;
            position: relative;
            overflow: hidden;
            border-top: 4px solid var(--sand);
            border-bottom: 4px solid var(--sand);
        }

        /* Decorative Pattern Overlay */
        .cat-invite-section::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23EDC9AF' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            pointer-events: none;
        }

        /* The Main Card Container */
        .invite-card-container {
            display: flex;
            flex-direction: column;
            md-flex-direction: row;
            max-width: 1000px;
            margin: 0 auto;
            background: #fff; /* Fallback */
            background: url('https://www.transparenttextures.com/patterns/cream-paper.png');
            background-color: #fffbf0; /* Warm paper color */
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
            border-radius: 8px;
            overflow: hidden;
            position: relative;
            transform: rotate(-1deg); /* Slight playful tilt */
            transition: transform 0.3s ease;
        }
        .invite-card-container:hover {
            transform: rotate(0deg) scale(1.01);
        }

        /* Left Side: The Cat Image */
        .cat-frame-wrapper {
            flex: 1;
            position: relative;
            min-height: 400px;
            overflow: hidden;
            border-right: 4px double var(--maroon);
        }
        .cat-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1s ease;
        }
        .invite-card-container:hover .cat-image {
            transform: scale(1.05);
        }

        /* Right Side: The Invitation Text */
        .invite-content {
            flex: 1;
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
            color: #4a0e0e; /* Dark Maroon Text */
        }

        /* The Wax Seal Effect */
        .wax-seal {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #d32f2f, #b71c1c);
            border-radius: 50%;
            box-shadow: 0 4px 6px rgba(0,0,0,0.3), inset 0 2px 5px rgba(255,255,255,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(0,0,0,0.3);
            font-family: 'Cinzel Decorative', cursive;
            font-size: 2.5rem;
            font-weight: bold;
            border: 2px dashed rgba(0,0,0,0.1);
            position: absolute;
            top: -40px;
            right: 20px;
            z-index: 10;
            transform: rotate(15deg);
        }

        /* Typography tweaks for this section */
        .handwritten-font {
            font-family: 'Dancing Script', cursive; /* Fallback if not loaded, usually works on modern systems or defaults to cursive */
            font-size: 1.5rem;
            color: #666;
            margin-bottom: 1.5rem;
        }
        .invite-title {
            font-family: 'Cinzel Decorative', cursive;
            font-size: 2.5rem;
            line-height: 1.2;
            margin-bottom: 1rem;
            color: var(--maroon);
            text-shadow: 1px 1px 0px rgba(237, 201, 175, 0.5);
        }
        
        /* Decorative corner borders */
        .corner-decor {
            position: absolute;
            width: 40px;
            height: 40px;
            border: 2px solid var(--sand);
            transition: all 0.3s ease;
        }
        .top-left { top: 15px; left: 15px; border-right: none; border-bottom: none; }
        .bottom-right { bottom: 15px; right: 15px; border-left: none; border-top: none; }


        /* --- ANIMAL LOVE TRIBUTE SECTION --- */
        
        .animal-love-section {
            background-color: #1a0505; /* Deepest Maroon/Black */
            background-image: radial-gradient(circle at center, #2d0808 0%, #1a0505 70%);
            padding: 6rem 1rem;
            text-align: center;
            border-top: 1px solid var(--maroon);
            border-bottom: 1px solid var(--maroon);
        }

        /* The "Art Frame" for your image */
        .royal-frame {
            display: inline-block;
            position: relative;
            padding: 1rem;
            background-color: #fff; /* White matting */
            border: 2px solid var(--sand); /* Outer Gold Line */
            box-shadow: 0 20px 50px rgba(0,0,0,0.8); /* Deep shadow for depth */
            transform: rotate(-1deg); /* Subtle artistic tilt */
            transition: transform 0.5s ease;
            max-width: 800px; /* Limits width for large screens */
            width: 100%;
        }
        .royal-frame:hover {
            transform: rotate(0deg) scale(1.02);
        }

        /* Inner Gold Border */
        .royal-frame::before {
            content: '';
            position: absolute;
            top: 6px; left: 6px; right: 6px; bottom: 6px;
            border: 1px solid var(--maroon);
            pointer-events: none;
            z-index: 2;
        }

        /* Your Image Styling */
        .royal-frame img {
            display: block;
            width: 100%;
            height: auto;
            filter: sepia(10%); /* Slight vintage warmth */
        }

        /* The "Love" Icon */
        .heart-badge {
            position: absolute;
            top: -20px;
            right: -20px;
            background: var(--maroon);
            color: var(--sand);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            border: 3px solid #fff;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            z-index: 10;
            animation: heartbeat 2s infinite;
        }

        @keyframes heartbeat {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }