@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(45deg, #1a237e, #4a148c);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    text-align: center;
}

.container {
    background: rgba(0, 0, 0, 0.3);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    width: 90%;
}

h1 {
    font-size: 3em;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
}

p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.progress-bar-container {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    margin-bottom: 10px;
    overflow: hidden;
}

.progress-bar {
    width: 25%;
    height: 20px;
    background: linear-gradient(90deg, #007bff, #8a2be2);
    border-radius: 25px;
    transition: width 0.5s ease-in-out;
}

.progress-text {
    font-size: 1em;
    margin-bottom: 40px;
}

.links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.2em;
    padding: 10px 20px;
    border: 2px solid transparent;
    background: linear-gradient(45deg, #007bff, #8a2be2);
    border-radius: 25px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
}

.links a:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.8);
}
