body {
  background-color: #ffffff;
}

.top-panel {
    background: #333;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    display: flex;
}

.top-panel a {
    float: left;
    color: #f2f2f2;
    padding: 14px 16px;
    text-decoration: none;
    font: bold 17px/1.5 "Helvetica Neue",Helvetica,Arial,sans-serif;
}

.description {
    margin-top: 10px;
    background: #333;
    align-items: center;
    display: flex;
    justify-content: center;
}

.description a {
    font: 17px/1.5 "Helvetica Neue",Helvetica,Arial,sans-serif;
    padding: 5px;
    color: white;
}

.text a {
    font: 17px/1.5 "Helvetica Neue",Helvetica,Arial,sans-serif;
    padding: 5px;
    color: white;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.icon {
    width: 70%;
    height: auto;
}

.block {
    width: 200px;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px;

    opacity: 0;
    transform: scale(0.95);
    animation: fadeInZoom 1s ease-out forwards;
    animation-delay: 0.1s;
}

@keyframes fadeInZoom {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1.0);
    }
}

.block a {
    text-align: center;
    font: 14px/1.5 "Helvetica Neue",Helvetica,Arial,sans-serif;
    color: black;
}

.hoverable {
    transition: 0.1s ease-in-out;
}

.hoverable:hover {
    opacity: 1;
    transform: scale(1.1);
}

.container {
  perspective: 1000px;
  margin: 100px auto;
}

.SlotMachine {
  background-color:#333;
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 30px;
}

.Wheel{
  width: 100px;
  height: 100px;
  margin-left: 10px;
  margin-right: 10px;
  position: relative;
  transform-style: preserve-3d;
  animation: spin 10s infinite linear;
}

.Side1, .Side2, .Side3 {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 2px solid black;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  font-weight: bold;
  color: white;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
  opacity: 0.9;
}

.Side1 {
  background-color: yellow;
  transform: rotateX(0deg) translateZ(50px);
}

.Side2 {
  background-color: blue;
  transform: rotateX(120deg) translateZ(50px);
}

.Side3 {
  background-color: green;
  transform: rotateX(240deg) translateZ(50px);
}

@keyframes spin {
  from {
    transform: rotateX(0deg) rotateY(0deg);
  }
  to {
    transform: rotateX(360deg) rotateY(0deg);
  }
}

.spin-button {
    margin: 10px;
    padding: 15px 30px;
    font-size: 1.2em;
    background: linear-gradient(145deg, #ff9f43, #ff6b6b);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.spin-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.spin-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(255, 107, 107, 0.3);
}