.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    font-family: Arial, sans-serif;
}

.loading-container {
    text-align: center;
    color: white;
    max-width: 400px;
    padding: 20px;
}

.loading-text {
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
}

.loading-bar {
    width: 300px;
    height: 20px;
    background: #333;
    border-radius: 10px;
    margin: 20px auto;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #4CAF50, #45a049);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 10px;
}

.loading-status {
    font-size: 16px;
    margin: 10px 0;
    color: #ccc;
}

.loading-percentage {
    font-size: 18px;
    font-weight: bold;
    color: #4CAF50;
}