body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    padding: 20px;
    text-align: center;
}

h1 {
    color: #333;
    margin-bottom: 30px;
}

.door-container {
    position: relative;
    width: 300px;
    height: 400px;
    cursor: pointer;
    margin-bottom: 20px;
}

.door {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: opacity 0s ease-in-out;
}

.door-closed {
    background-image: url('assets/images/door-closed.png');
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.door-open {
    background-image: url('assets/images/door-open.png');
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.door-creep {
    /* Das Hintergrundbild wird dynamisch in JavaScript gesetzt */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hidden {
    opacity: 0;
}

.stats {
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
}

.progress-container {
    margin-top: 10px;
    background-color: #e0e0e0;
    border-radius: 10px;
    height: 20px;
    width: 100%;
}

.progress-bar {
    height: 100%;
    border-radius: 10px;
    background-color: #4CAF50;
    width: 0%;
    transition: width 0.3s;
}