        /* Custom Tailwind Configuration */
        /* Base Styles */
        body {
            background-color: #000000;
            color: #C084FC;
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            cursor: none; /* Hide default cursor */
        }

        /* Glassmorphism Effect Base */
        .glass {
            background-color: rgba(75, 0, 130, 0.1); /* royal-purple with low opacity */
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(192, 132, 252, 0.3); /* lavender-shine border */
            border-radius: 12px;
            transition: all 0.3s ease-in-out;
        }

        /* Neon Button Style */
        .neon-btn {
            background: linear-gradient(135deg, #7C3AED, #4B0082);
            color: white;
            padding: 10px 24px;
            border-radius: 8px;
            font-weight: 600;
            box-shadow: 0 0 10px #7C3AED;
            transition: all 0.3s ease;
        }
        .neon-btn:hover {
            box-shadow: 0 0 20px #C084FC, 0 0 30px #7C3AED;
            transform: scale(1.05);
        }

        /* Cursive Text Signature Style */
        .cursive-signature {
            font-family: 'Dancing Script', cursive;
            color: #C084FC;
            font-size: 1.5rem;
            text-shadow: 0 0 5px #7C3AED;
            line-height: 1.2;
        }

        /* Shimmer Animation for elements */
        @keyframes shimmer {
            0% { background-position: -1000px 0; }
            100% { background-position: 1000px 0; }
        }
        .shimmer-text {
            background: linear-gradient(90deg, #4B0082 0%, #C084FC 50%, #4B0082 100%);
            background-size: 200% 100%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: shimmer 5s infinite linear;
        }

        /* Glowing Cursor Dot */
        #cursor-dot {
            position: fixed;
            width: 16px;
            height: 16px;
            background-color: #7C3AED;
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            opacity: 0.8;
            mix-blend-mode: screen;
            transition: transform 0.1s ease-out, opacity 0.1s ease-out;
            box-shadow: 0 0 5px #C084FC, 0 0 10px #7C3AED;
        }

        /* Scrollbar Styling for luxury feel */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-thumb {
            background-color: #4B0082;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-track {
            background: #000000;
        }
    .marquee {
    display: inline-block;
    animation: marqueeSlide 18s linear infinite;
}
@keyframes marqueeSlide {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}
.glass {
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(10px);
}

#mobile-menu {
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.marquee-images {
    animation: marqueeImg 2s linear infinite;
}

.marq-img {
    height: 500px;
    width: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(124, 58, 237, 0.4);
    transition: transform 0.2s ease, opacity 0.3s ease;
}

.marq-img:hover {
    transform: scale(1.07);
    opacity: 0.9;
}

@keyframes marqueeImg {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .marq-img {
        height: 140px;
        width: 250px;
        border-radius: 14px;
    }
}

  /* Ensure the popup is centered & hidden by default */
  #global-popup.hidden { display: none; }
  #global-popup { display: flex; }
  .glass { background: rgba(10,10,12,0.55); backdrop-filter: blur(6px); }
  .shadow-neon-lg { box-shadow: 0 8px 30px rgba(124,58,237,0.12); }
  .hover\:text-lavender-shine:hover { color: #C4A3FF; }
  /* Make sure buttons are visually neutral */
  .support-btn { background: transparent; border: none; padding: 0; font: inherit; cursor: pointer; color: inherit; }