.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loader-content {
    text-align: center;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 300px;
}

.loader-logo {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-logo canvas {
    display: block;
    margin: auto;
}

.loader-logo canvas {
    position: absolute;
    top: 0;
    left: 0;
}

.loader-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin-top: 20px;
    background: linear-gradient(45deg, #007bff, #00d4ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.loader-progress {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin: 20px auto;
    overflow: hidden;
}

.loader-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #007bff, #00d4ff);
    transition: width 0.3s ease-out;
}

.loader-container.fade-out {
    opacity: 0;
    pointer-events: none;
}