body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #121212;
    color: white;
}

.buttons-row {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}

.switch {
	color: #fff;
    width: 50px;
    height: 50px;
    background-color: #333;
    border: 2px solid #555;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.switch.active {
    background-color: #888; /* Индикация нажатия кнопки */
}

.center {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 50px 0;
}

.platform {
    width: 100px;
    height: 100px;
    background-color: transparent;
    border: 2px solid #555;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.platform.ghost {
    opacity: 0.5;
    background-color: #666;
}

.platform.fixed {
    opacity: 1;
    background-color: #888;
}
