.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-name {
    font-size: 2em;
    font-weight: bold;
    color: #333333;
    margin-bottom: 10px;
}

.loading-text {
    font-size: 1em;
    color: #666666;
    margin-bottom: 20px;
}

.progress-container {
    width: 80%;
    max-width: 300px;
    height: 8px;
    background-color: #f0f0f0;
    border-radius: 5px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0;
    background-color: #ea384c;
    border-radius: 5px;
    transition: width 0.3s ease;
}

.road {
    width: 100%;
    height: 8px;
    background-color: #ddd;
    position: relative;
    overflow: hidden;
}

.road-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #ddd, #ea384c, #ddd);
    background-size: 200% 100%;
    animation: roadAnimation 3s linear infinite;
}

@keyframes roadAnimation {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.preloader-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 30px;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(234, 56, 76, 0.3);
}

.preloader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #f0f0f0;
    border-top: 4px solid #ea384c;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-top: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}