body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url('/back8.jpg'); /* Háttérkép beállítása */
    background-size: cover; /* Teljes képernyős méret */
    background-position: center; /* Középre igazítás */
    background-repeat: no-repeat; /* Nem ismétlődik */
    font-family: Monospace;
    overflow: hidden;
    margin: 0;
    transform: translate(0, 0);
}

.slot-machine {
    display: flex;
    gap: 10px;
}

.slot-container {
    width: 50px;
    height: 75px;
    overflow: hidden;
    background: transparent; /* Teljes átlátszóság a háttérhez */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 48px;
    font-weight: bold;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0,0,0,0.3);
    position: relative;
}

/* Új áttetsző réteg */
.slot-container::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #00ff00;
    border-radius: 10px;
}

.slot {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slot-inner {
    display: flex;
    flex-direction: column;
    transition: transform 2s ease-out;
}

.server-message {
    color: #00ff00;
    font-family: monospace;
    text-align: center; /* Középre igazítja a szöveget */
    margin-bottom: 20px; /* Kicsit eltávolítja a tárcsáktól */
    font-size: 15px;
}