body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, black, black);
    font-family: 'Arial', sans-serif;
}

.container {
    text-align: center;
}

.loader {
    width: 80%;
    background: #f3f3f3;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.loader-bar {
    height: 20px;
    background: #ff6f61;
    transition: width 0.4s ease-in-out;
}

.loading-text {
    margin-top: 20px;
    font-size: 1.5rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
