body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: #f0f4f8;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 50px 60px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    width: 550px;
    backdrop-filter: blur(10px);
}

.logo {
    max-width: 250px;
    height: auto;
    margin-bottom: -100px;
    filter: drop-shadow(0 0 5px #00aaff);
}

h1 {
    color: #00aaff;
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 2.2rem;
}

p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: #d0e6ff;
}

.progress-container {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
}

.progress-bar {
    height: 25px;
    background: linear-gradient(90deg, #00aaff, #005f99);
    color: white;
    text-align: center;
    line-height: 25px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 20px 0 0 20px;
    transition: width 1s ease-in-out;
}

.progress-text {
    font-size: 1.2rem;
    color: #00aaff;
    font-weight: 600;
}
