        body {
            font-family: 'Open Sans', sans-serif;
            background-color: #FFFAF0;
            color: #443199;
            overflow-x: hidden;
            cursor: none; /* Custom premium cursor */
        }
        
        /* Smooth Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #FFFAF0;
        }
        ::-webkit-scrollbar-thumb {
            background: #443199;
            border-radius: 9999px;
        }

        /* Hover states with elastic feeling */
        .elastic-hover {
            transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .elastic-hover:hover {
            transform: translateY(-12px) scale(1.03);
            box-shadow: 0 30px 60px rgba(68, 49, 153, 0.18);
        }

        /* Custom cursor styling */
        .custom-cursor {
            width: 10px;
            height: 10px;
            background-color: #443199;
            border-radius: 50%;
            position: fixed;
            transform: translate(-50%, -50%);
            pointer-events: none;
            z-index: 9999;
            transition: width 0.2s, height 0.2s, background-color 0.2s;
        }
        .custom-cursor-glow {
            width: 44px;
            height: 44px;
            border: 1px solid rgba(68, 49, 153, 0.3);
            border-radius: 50%;
            position: fixed;
            transform: translate(-50%, -50%);
            pointer-events: none;
            z-index: 9998;
            transition: transform 0.1s ease-out, width 0.3s, height 0.3s;
        }

        /* Diagonal Hero Background Split */
        .hero-diagonal-split {
            background: linear-gradient(135deg, #C1EBE9 55%, #443199 55%);
        }
        @media (max-width: 1024px) {
            .hero-diagonal-split {
                background: linear-gradient(180deg, #C1EBE9 50%, #443199 50%);
            }
        }
        
        /* Glass blur navigation utility */
        .glass-nav {
            background: rgba(255, 250, 240, 0.7);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
        }

        /* Hide Scrollbar for Story horizontal scroll track */
        .no-scrollbar::-webkit-scrollbar {
            display: none;
        }
        .no-scrollbar {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        /* Custom marquee track */
        .marquee-track {
            display: flex;
            width: 200%;
        }

        /* Active navigation line effect */
        .nav-link {
            position: relative;
            overflow: hidden;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 100%;
            transform: scaleX(0);
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #443199;
            transform-origin: bottom right;
            transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
        }
        .nav-link:hover::after {
            transform: scaleX(1);
            transform-origin: bottom left;
        }
        
        /* Image masking and parallax */
        .image-parallax {
            background-attachment: fixed;
            background-position: center;
            background-size: cover;
        }
