
        .font-anton {
            font-family: 'Anton', sans-serif !important;
            letter-spacing: 0.05em;
        }

        h1, h2, h3, h4, h5, h6, .nav-logo {
            font-family: 'Anton', sans-serif;
            font-weight: 400 !important; 
            letter-spacing: 0.05em !important; 
            text-transform: uppercase;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 8px; height: 8px; }
        ::-webkit-scrollbar-track { background: #000; }
        ::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
        ::-webkit-scrollbar-thumb:hover { background: #e9e629; }
        
        /* Hide scrollbar for gallery but keep functionality */
        .scrollbar-hide::-webkit-scrollbar {
            display: none;
        }
        .scrollbar-hide {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        /* Animations */
        .fade-in-up { animation: fadeInUp 0.8s ease-out forwards; opacity: 0; transform: translateY(20px); }
        .delay-100 { animation-delay: 0.1s; }
        .delay-200 { animation-delay: 0.2s; }
        
        @keyframes fadeInUp {
            to { opacity: 1; transform: translateY(0); }
        }

        /* 3D Flip Card Styles */
        .perspective-1000 { perspective: 1000px; }
        .transform-style-3d { transform-style: preserve-3d; }
        .backface-hidden { backface-visibility: hidden; -webkit-backface-visibility: hidden; }
        .rotate-y-180 { transform: rotateY(180deg); }

        /* Text Outline Utility */
        .text-outline-muse {
            -webkit-text-stroke: 1px #e9e629;
            color: transparent;
        }
        /* -------------------------------------------------------------------------- */
/* PRELOADER (Fixes FOUC)                       */
/* -------------------------------------------------------------------------- */

#preloader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #050505; /* Matches your dark theme */
    z-index: 9999; /* Ensures it sits on top of everything */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    width: 150px;       /* Keep your size */
    height: auto;
    
    /* NEW: This forces the image to center itself */
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px; /* Keeps the space below the logo */
    
    /* Keep the pulse animation */
    animation: pulse 2s infinite; 
}

.preloader-text {
    font-family: 'Inter', sans-serif; /* Your site font */
    color: #e8e623; /* Your yellow brand color */
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Optional: A moving loading line */
.loading-bar {
    width: 0%;
    height: 2px;
    background-color: #e8e623;
    margin: 0 auto;
    animation: loadProgress 2s ease-in-out infinite;
    border-radius: 2px;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes loadProgress {
    0% { width: 0%; opacity: 1; }
    50% { width: 100%; opacity: 1; }
    100% { width: 0%; opacity: 0; }
}

/* Class to hide the loader */
.preloader-hidden {
    opacity: 0;
    visibility: hidden;
}