  /* mainStyle.css: stylesheet page for index.html */

* {
    margin: 0; 
    padding: 0;
    cursor: url("cursor_resized.jpg") 10 10, auto !important;
    box-sizing: border-box;
  }
  
  body {
    background: #404040;
    color: #eee;
    font-family: "Courier New", monospace;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin-bottom: 250px;
  }
  
  /* main container + final score */
  .container {
    width: 600px;
    max-width: 90%;
    text-align: center;
    position: relative;
    overflow: hidden; 
    padding: 20px;
    margin-bottom: 50px;
  }
  
  /* each step of the story */
  .story-line {
    margin: 20px 0;
    font-size: 1rem;
    line-height: 1.6;
    opacity: 1;
    transition: opacity 1s ease, transform 1s ease;
  }
  
  /* fading stuff */
  .fading {
    opacity: 0;
    transform: translateY(-20px);
  }

  .entering {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* button */
  .choice-btn {
    display: inline-block;
    margin: 10px 5px 0 5px;
    padding: 10px 16px;
    border: none;
    background: #444;
    color: #fff;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: background 0.3s;
  }
  
  .choice-btn:hover {
    background: #666;
  }
  
  /* final score */
  #scoreBox {
    margin-top: 30px;
    font-size: 1rem;
    font-weight: bold;
    color: #ffbb00;
    display: none;
    line-height: 1.5;
  }
  
  #scoreBox p {
    margin: 10px 0;
  }
  
  a {
    color: #ffbb00;
    text-decoration: underline;
  }
  
  /* cornor icon link on the right */
#cornerIcon {
  position: fixed;
  top: 10px;
  right: 10px;
  opacity: 0.1;
  transition: opacity 0.3s ease;
  z-index: 999;
}

#cornerIcon:hover {
  opacity: 1;
}

#cornerIcon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

  /* left corner icon */
#cornerIcon2 {
  position: fixed;
  top: 10px;
  left: 10px;
  opacity: 0.1;
  transition: opacity 0.3s ease;
  z-index: 999;
}

#cornerIcon2:hover {
  opacity: 1;
}

#cornerIcon2 img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

#WR_container_wrapper {
  position: fixed;
  bottom: 80px;
  right: 80px;
}

.smallimage {
  width: 50px;
}

#defaultW {
  position: absolute;
  clip-path: polygon(10% 10%, 50% 0%, 50% 100%, 10% 90%, 0% 50%);
}

#defaultR {
  position: absolute;
  clip-path: polygon(50% 0%, 90% 10%, 100% 50%, 90% 90%, 50% 100%);
}

.hoverW {
  opacity: 0;
  width: 50px;
  position: absolute;
  /* text-align: center; */
  margin: 0 auto;
  pointer-events: none;
  /* left: 5px; */
  /* top: 0; */
}

.hoverR {
  opacity: 0;
  width: 50px;
  position: absolute;
  margin: 0 auto;
  pointer-events: none;
}

#defaultW:hover ~ .hoverW {
  opacity: 1;
}

#defaultR:hover ~ .hoverR {
  opacity: 1;
}
