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

    body {
        background-color: #0f172a;
        color: #fdfbf7;
    }

    /* Custom Scrollbar */
    ::-webkit-scrollbar {
        width: 10px;
    }
    ::-webkit-scrollbar-track {
        background: #0f172a;
    }
    ::-webkit-scrollbar-thumb {
        background: #2c3e50;
        border: 1px solid #d4af37;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #d4af37;
    }

    /* Animation Classes */
    .reveal-up, .reveal-left, .reveal-right {
        opacity: 0;
        transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
    }

    .reveal-up {
        transform: translateY(40px);
    }
    
    .reveal-left {
        transform: translateX(-40px);
    }
    
    .reveal-right {
        transform: translateX(40px);
    }

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

    /* Form Focus States */
    input:focus, select:focus, textarea:focus {
        outline: none;
    }

    /* Mobile Menu Animation */
    #mobile-menu.open {
        opacity: 1;
        pointer-events: all;
    }
