* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background:
    linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
    url("img/background-lifeOS.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;

  color: #ffffff;
  font-family: Arial, sans-serif;

  min-height: 100vh;
}


section {
  max-width: 500px;
  margin: auto;
  padding: 20px;
}

h1 {
  margin-bottom: 20px;
}

p {
  margin-bottom: 20px;
  color: #A6A6A6;
}

button{
  width: 100%;
  margin-top: 12px;
  padding: 12px;
  border: none;
  cursor: pointer;
  background: #00FFFF;
  color: black;
  border-radius: 6px;
  font-weight: bold;
  transition: all 0.2 ease;
}

button:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

button:active {
  transform: scale(0.98);
}

#status{
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 20px;
    gap: 10px;
}

#status p {
  background: #0D0D0D;
  padding: 8px;
  border-radius: 5px;
  font-size: 14px;
}

#question{
   font-size: 18px;
   margin: 20px 0;
   font-weight: bold;
   transition: opacity 0.3s ease;
}

#choices {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#final-screen {
  text-align: center;
}

#final-title {
   font-size: 22px;
  margin-bottom: 10px;
}

#final-description {
  margin-bottom: 20px;
  color: #A6A6A6;
}

#final-stats {
  background: #0D0D0D;
  padding: 10px;
  border-radius: 5px;
}

#game-screen, #start-screen, #final-screen{

  background: #1F2937;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}