body {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    padding: 0;
    background: url('/mnt/data/a_digital_screenshot_of_a_gaming_themed_sign_up_pa.png') no-repeat center center fixed; /* Set the new gaming background */
    background-size: cover;
    color: #fff;
}

.dashboard {
    width: 100%;
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent background for readability */
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.menu {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.menu a {
    padding: 12px 20px;
    background-color: #5c6bc0;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s;
}

.menu a:hover {
    background-color: #3f51b5;
}

.card {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    color: #333;
}

.card h3 {
    color: #5c6bc0;
}

.card p {
    color: #555;
}

.progress-bar {
    width: 100%;
    height: 25px;
    background-color: #f3f3f3;
    border-radius: 5px;
}

.progress {
    height: 100%;
    background-color: #5c6bc0;
    border-radius: 5px;
    width: 40%; /* This will be dynamic based on the progress */
}

.logout {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #f44336;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.logout:hover {
    background-color: #e53935;
}