
body {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Tahoma, sans-serif, sans-serif;
  color: #000000;
  background: #101010;
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  width: 100%;
  max-width: 420px;
  margin: 0 12px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 20px rgba(0,0,0,0.1);
}

h1 {
  text-align: center;
  font-size: 24px;
}

select, button {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  margin-top: 12px;
  border-radius: 8px;
  border-width:#101010, 2px;
  color: #000000;
  
}


#start-btn {
    background-color: #050505;
    color: white;
    border-width:#101010, 2px;
}

#next-btn {
    background-color: #050505;
    color: white;
    border-width:#101010, 2px;
}

.secondary-btn {
  background-color: #050505;
    color: white;
  margin-top: 2px;
}

.secondary-btn:hover {
  background: #cc2014;
}


.question {
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .container {
    max-width: 520px;
  }

  h1 {
    font-size: 28px;
  }
}

.score {
  text-align: center;
  font-weight: bold;
  margin-top: 10px;
}

.celebration {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.celebration img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.stats {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-weight: bold;
  font-size: 14px;
}

.danger-btn {
  background: #000000;
  margin-top: 10px;
  color: #ffffff;
}

.danger-btn:hover {
  background: #000;
}

.summary {
  position: fixed;
  inset: 0; /* replaces top, left, width, height */

  background: white;
  z-index: 2000;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  padding: 20px;

  min-height: 100dvh; /* dynamic viewport height */
}


.summary h2 {
  margin-bottom: 20px;
}

.summary button {
  margin-top: 12px;
  width: 80%;
}

#share-canvas {
  display: none;
}

.hidden {
  display: none;
}