        
        /* Custom Styles for luxury look and animations */
        body {
            background-color: #FAFAFA;
            color: #1F2937;
            font-family: 'Inter', sans-serif;
            scroll-behavior: smooth;
        }

        .gold-underline {
            position: relative;
        }
        .gold-underline::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            left: 0;
            bottom: -5px;
            background-color: #C9A24D;
            transition: width 0.3s ease-out;
        }
        .gold-underline:hover::after {
            width: 100%;
        }

        /* Scroll-reveal effect setup */
        .reveal-item {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        .reveal-item.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Glassmorphism for Empire Tools */
        .glass-panel {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            border: 1px solid rgba(201, 162, 77, 0.4); /* Gold border */
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        /* Custom SVG for Logo (Minimal crown + upward arrow) */
        .logo-svg {
            display: inline-block;
            width: 24px;
            height: 24px;
            margin-right: 8px;
            vertical-align: middle;
        }
