/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1e1e2f 0%, #2a2a40 100%);
    color: #ffffff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    padding: 20px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

p {
    font-size: 1.2rem;
    color: #b0b0c0;
    margin-bottom: 2rem;
}

/* Progress Bar Styling */
.progress-container {
    width: 100%;
    max-width: 400px;
    background-color: #3e3e5a;
    border-radius: 20px;
    margin: 0 auto 2rem auto;
    overflow: hidden;
}

.progress-bar {
    width: 75%; /* Change this to update progress */
    background-color: #4f46e5;
    color: white;
    padding: 5px 0;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 20px;
    transition: width 0.5s ease-in-out;
}

/* Button Styling */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #4f46e5;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn:hover {
    background-color: #4338ca;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    h1 { font-size: 2rem; }
    p { font-size: 1rem; }
}