    /* Custom Styles */
    html {
        scroll-behavior: smooth;
    }

    body {
        background-color: #1a0d14;
        color: #ffffff;
    }

    /* Custom Scrollbar */
    ::-webkit-scrollbar {
        width: 10px;
    }
    ::-webkit-scrollbar-track {
        background: #1a0d14;
    }
    ::-webkit-scrollbar-thumb {
        background: #2d1220;
        border-radius: 5px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #d97706;
    }

    /* Animations */
    .reveal-left {
        opacity: 0;
        transform: translateX(-50px);
        transition: all 0.8s ease-out;
    }
    .reveal-right {
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.8s ease-out;
    }
    .reveal-up {
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.8s ease-out;
    }

    .reveal-left.active,
    .reveal-right.active,
    .reveal-up.active {
        opacity: 1;
        transform: translate(0, 0);
    }

    /* Gold Gradient Text */
    .text-gold-gradient {
        background: linear-gradient(to right, #fbbf24, #d97706);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
