* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    height: 100vh;
    background: url('../img/star-citizen-procedural-planets-uhd-4k-wallpaper.jpg') center center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(3px);
}

.container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 500px;
    padding: 40px;
    border-radius: 20px;
    background: rgba(15, 15, 15, 0.75);
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: white;
    box-shadow: 0 0 30px rgba(0,0,0,0.6);
}

h1 {
    font-size: 42px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 18px;
    margin-bottom: 35px;
    color: #cccccc;
}

.progress-box {
    width: 100%;
    height: 28px;
    background: rgba(255,255,255,0.08);
    border-radius: 50px;
    overflow: hidden;
}

.progress-bar {
    width: 20%;
    height: 100%;
    background: linear-gradient(90deg, #1e90ff, #00c3ff);
    border-radius: 50px;
}

.progress-text {
    margin-top: 15px;
    font-size: 16px;
    color: #bbbbbb;
}