*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}

:root {
            --gold: #D4AF37;
            --gold-light: #F5E050;
            --dark-bg: #05080f;
            --card-bg: rgba(15, 23, 42, 0.6);
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--dark-bg);
            color: #f8fafc;
            overflow-x: hidden;
        }

        .heading-font { font-family: 'Playfair Display', serif; }

        /* Custom Selection */
        ::selection {
            background: var(--gold);
            color: #000;
        }

        /* Modern Scrollbar */
        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: var(--dark-bg); }
        ::-webkit-scrollbar-thumb { background: #1e293b; border-radius: 10px; }
        ::-webkit-scrollbar-thumb:hover { background: var(--gold); }

        /* Glassmorphism */
        .glass-card {
            background: var(--card-bg);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .glass-card:hover {
            border-color: var(--gold);
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        }

        /* Gold Aesthetics */
        .gold-gradient {
            background: linear-gradient(135deg, #D4AF37 0%, #F5E050 50%, #B8860B 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .btn-gold {
            background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .btn-gold:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
        }

        /* Animations */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Morphing Image Shape */
        .hero-shape {
            border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
            background: linear-gradient(45deg, var(--gold), #1e293b);
            animation: morph 8s ease-in-out infinite alternate;
        }

        @keyframes morph {
            0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
            100% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
        }

        .mobile-menu {
            transition: clip-path 0.6s ease-in-out;
            clip-path: circle(0% at 100% 0%);
        }
        .mobile-menu.open {
            clip-path: circle(150% at 100% 0%);
        }

        /* Custom Cursor for Desktop */
        @media (min-width: 1024px) {
            #cursor {
                width: 20px;
                height: 20px;
                border: 2px solid var(--gold);
                border-radius: 50%;
                position: fixed;
                pointer-events: none;
                z-index: 9999;
                transition: transform 0.1s ease;
            }
        }