
        /* Custom Styles */
        body {
            font-family: 'Inter', sans-serif;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Cormorant Garamond', serif;
        }
        .text-shadow {
            text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }
        .glass-panel {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        .gold-border {
            border-color: rgba(180, 83, 9, 0.3);
        }
        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }
        /* Hide scrollbar for clean aesthetic in some containers */
        .no-scrollbar::-webkit-scrollbar {
            display: none;
        }
        .no-scrollbar {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
    