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

body {
   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   background: linear-gradient(135deg, #00D4FF 0%, #001014 100%);
   min-height: 100vh;
   display: flex;
   justify-content: center;
   align-items: center;
   text-align: center;
   padding: 20px;
}

nav {
   width: 3rem;
   height: 3rem;
   background: #001014;
   margin: 10px;
   border-radius: 100%;
   aspect-ratio: 1;
   display: flex;
   justify-content: center;
   align-items: center;
   color: white;
   font-size: 1.5rem;
   padding: 10px;
   position: fixed;
   top: 0;
   right: 0;
   z-index: 1000;
   transition: all 300ms;

   &:hover {
      background: #0ea5e9;
      /* color: #001014; */
   }
}

main {
   background-color: rgba(255, 255, 255, 0.9);
   box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
   width: 90%;
   max-width: 500px;
   padding: 25px;
   border-radius: 16px;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   gap: 25px;
}

h1 {
   color: #333;
   font-size: 2rem;
}

.score-container {
   display: flex;
   justify-content: space-between;
   flex-wrap: wrap;
   width: 100%;
}

.score-box {
   background-color: #f8f9fa;
   border-radius: 10px;
   padding: 10px;
   width: 45%;
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}

.score-title {
   font-size: 1rem;
   color: #555;
}

.score {
   font-size: 2rem;
   font-weight: bold;
   color: red;
}

#PlayerScore {
   color: green;
}

.choices {
   display: flex;
   justify-content: space-evenly;
   align-items: center;
   width: 100%;
}

.choice-btn {
   border: none;
   border-radius: 50%;
   width: 30%;
   max-width: 80px;
   aspect-ratio: 1;
   cursor: pointer;
   transition: all 0.3s ease;
   font-size: 2.5rem;
   display: flex;
   justify-content: center;
   align-items: center;
}

.choice-btn:hover {
   transform: scale(1.1);
   box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.choice-btn:active {
   transform: translateY(0);
}

.choice-btn.rock {
   background-color: #6c757d;
}

.choice-btn.paper {
   background-color: #17a2b8;
}

.choice-btn.scissors {
   background-color: #fd7e14;
}

.results {
   padding: 15px;
   background-color: #f8f9fa;
   border-radius: 10px;
   width: 100%;
   /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}

.result-text {
   font-size: 1.5rem;
   font-weight: bold;
   margin: 10px 0;
}

.win {
   color: #28a745;
}

.lose {
   color: #dc3545;
}

.tie {
   color: #17a2b8;
}

.selections {
   display: flex;
   justify-content: space-around;
}

.selection {
   font-size: 1.1rem;
   color: #555;
}

.reset-btn {
   padding: 12px 24px;
   font-size: 1.1em;
   cursor: pointer;
   border-radius: 8px;
   outline: 0;
   border: none;
   color: white;
   transition: all 0.3s ease-in-out, transform 0.2s ease;
   box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
   background: linear-gradient(135deg, #00D4FF 0%, #00BFFF 100%);

   &:hover {
      transform: translateY(-2px);
      background: linear-gradient(135deg, #00BFFF 0%, #001014 100%);
   }
}