body {
    background: #212121;
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.slotcontainer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.slot {
    width: 190px;
    height: 170px;
    border: 1px solid black;
    border-radius: 10px;
    display: inline-block;
    overflow: hidden;
    position: relative;
    background: #fafafa;
    box-shadow: -4px 0 4px rgba(0, 0, 0, 0.4), 
                4px 0 4px rgba(0, 0, 0, 0.4); /* Schatten nur links und rechts */
}
.slot_BACKUP {
    width: 190px;
    height: 170px;
    border: 1px solid black;
    border-radius: 10px;
    display: inline-block;
    overflow: hidden;
    position: relative;
    background: #fafafa;
    box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.4) inset;
}

.slot .symbols {
    position: absolute;
    top: 0;
    left: 10px;
    transition: top 5s;
}

.slot .symbol {
    width: 170px;
    height: 170px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slot .symbol img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

button {
    margin: 0 10px;
    padding: 10px 20px;
    font-size: 16px;
}
