* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: black;
  background-image: url(img/mixwheel.svg);
  color: white;
  font-family: 'Arial', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.screen {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.screen.active {
  display: flex;
}

.wheel-container {
  overflow: hidden;
  height: 100px;
  width: 200px;
  margin-bottom: 40px;
}

.wheel {
  display: flex;
  flex-direction: column;
  transition: transform 3s cubic-bezier(0.33, 1, 0.68, 1);
}

.wheel-item {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: bold;
  opacity: 0.3;
}

.wheel-item.active {
  opacity: 1;
}

.main-button {
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  background-color: rgb(231, 183, 63);
  border: none;
  color: white;
  border-radius: 8px;
  cursor: pointer;
}

.main-button:hover {
  background-color: rgb(174, 136, 41);
}

.sipped-button {
  position: fixed;
  top: 20px;
  left: 20px;
  background: white;
  color: black;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;
  text-align: center;
  cursor: pointer;
  z-index: 1000;
  border: none;
  font-family: inherit;
}

.title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.type {
  font-size: 32px;
  font-weight: bold;
  color: #9b59ff;
  margin-bottom: 20px;
}

.question-card {
  background-color: #f2f2f2;
  color: black;
  padding: 30px;
  border-radius: 16px;
  max-width: 600px;
  margin: 0 20px 40px 20px;
}

.turn {
  font-weight: bold;
  margin-bottom: 20px;
}

.question-text {
  font-size: 20px;
}

.button-row {
  display: flex;
  gap: 40px;
}

.button {
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  color: white;
  border-radius: 8px;
  cursor: pointer;
}

.purple {
  background-color: #9b59ff;
}

.purple:hover {
  background-color: #7e44d3;
}

.pink {
  background-color: #f77ca2;
}

.pink:hover {
  background-color: #e96391;
}

.drink-text {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 40px;
}


.start-title {
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-weight: bold;
}

.welcome-headline {
  font-size: 64px;
  color: #f77ca2;
  font-weight: bold;
  margin: 10px 0;
}

.welcome-subline {
  font-size: 24px;
  color: #f77ca2;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.start-button {
  background-color: #e0e0e0;
  border: none;
  padding: 16px 32px;
  font-size: 20px;
  font-weight: bold;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.start-button:hover {
  background-color: #d1d1d1;
}

/* Seiten Farbe Blau*/
body.dare .type { color: #5EC6D9; }
body.dare .button { background-color: #5EC6D9; }
body.dare {background: url("img/blautarget.svg") no-repeat center center / cover; }

/* Seiten Farbe Violett*/
body.spill .type { color: #743FE7; }
body.spill .button { background-color: #743FE7; }
body.spill {background: url("img/violetttruth.svg") no-repeat center center / cover; }

/* Seiten Farbe Grün*/
body.choose .type { color: #80AE64; }
body.choose .button { background-color: #80AE64; }
body.choose {background: url("img/gruenchoose.svg") no-repeat center center / cover; }

/* Seiten Farbe Pink*/
body.guilty .type { color: #FF759A; }
body.guilty .button { background-color: #FF759A; }
body.guilty {background: url("img/pinkguilty.svg") no-repeat center center / cover; }

/* Seiten Farbe Gelb*/
body.risk .type { color: #E7B73F; }
body.risk .button { background-color: #E7B73F; }
body.risk {background: url("img/gelbrisk.svg") no-repeat center center / cover; }





/* ---------------------------- */
/* 📱 Responsive für max. 460px */
/* ---------------------------- */

@media (max-width: 460px) {
 /* .welcome-headline {
    font-size: 32px;
  }*/

  .welcome-subline {
    font-size: 16px;
  }

  .start-title {
    font-size: 20px;
  }

  /*.start-button { 
    font-size: 14px;
    padding: 12px 20px;
  }
    */

  .drink-text {
    font-size: 28px;
  }

  .question-card {
    padding: 16px;
    margin: 0 8px 24px 8px;
    max-width: 400px;
    min-width: 400px;
  }

  .question-text {
    font-size: 16px;
  }

 
  .title {
    font-size: 20px;
  }

  .button {
    font-size: 14px;
    padding: 10px 20px;
    font-weight: bold;
    width: 100%;
  }

  .button-row {
    gap: 60px;
  }

 
}