/* Loader Styles */
#loader {
    opacity: 1;
    transition: opacity 0.5s ease;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#loader.fade-out {
    opacity: 0;
    pointer-events: none;
}

#loader-video {
    width: 500px;
    height: 300px;
    object-fit: contain;
    background-color: transparent;
}

#g {
    font-size: 1.5rem;
    margin: 0 auto;
    color: #2c2727;
}

#main-content {
    display: none;
    padding: 20px;
    text-align: center;
    font-size: 24px;
    color: #333;
}
