/* Game Choices Text */
.rock, .paper, .scissors {
  font-size: 32px;
  font-weight: 700;
  color: white;
  letter-spacing: 3px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Score Text */
.score-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-family: var(--font-score);
  color: #252525;
  letter-spacing: 1.5px;
  font-weight: 600;
  line-height: 1.2;
}

#cscore, #mscore {
  font-size: 64px;
  font-weight: 800;
  font-family: var(--font-score);
  color: #252525;
  margin: 5px 0;
}

/* Lines connecting choices */
.line1 {
    width: 210px;
    position: absolute;
    top: 50px;
    left: 60px;
    border-bottom: 15px solid rgba(0, 0, 0, 0.6);
    transform: rotate(0deg);
    transform-origin: left;
}
  
.line2 {
    width: 200px;
    position: absolute;
    top: 50px;
    left: 80px;
    border-bottom: 15px solid rgba(0, 0, 0, 0.6);
    transform: rotate(-60deg);
    transform-origin: right;
}
  
.line3 {
    width: 200px;
    position: absolute;
    top: 50px;
    left: 40px;
    border-bottom: 15px solid rgba(0, 0, 0, 0.6);
    transform: rotate(55deg);
    transform-origin: left;
}

/* Game Circles */
.outer-circle {
  height: 110px;
  width: 110px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1001;
}

.shape {
  height: 85px;
  width: 85px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  cursor: pointer;
}

/* Colors */
.blue { background-color: var(--color-rock); } /* Rock is usually associated with blue in this design */
.orange { background-color: var(--color-paper); } /* Paper */
.purple { background-color: var(--color-scissors); } /* Scissors */

/* Positioning of circles */
.upper {
  display: flex;
  gap: 110px;
}

.lower {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 70px;
  margin-left: 10px;
}

.dist {
  position: relative;
  bottom: 0px;
}

/* Picked Text */
.left, .right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
}

#you-picked, #pc-picked {
    position: relative;
    top: 0;
    left: 0;
    bottom: 0;
    text-transform: uppercase;
    font-family: var(--font-score);
    color: white;
    font-weight: 1000;
    margin-bottom: 20px;
    z-index: 2000;
}


/* Win/Loss Text */
.answertext {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    z-index: 1002;
    margin: 0 40px;
    text-transform: uppercase;
    color: white;
}

.answertext h1 {
  font-size: 55px;
  margin: 0;
  white-space: nowrap;
  font-family: var(--font-score);
}

.answertext h2 {
  font-size: 22px;
  margin: 0;
  letter-spacing: 2px;
  font-family: var(--font-score);
}




/* Winner Celebration Effect - Modern Triple Pulse */
.rounded-gradient-borders {
    position: relative;
    z-index: 100;
    box-shadow: 0 0 0 25px rgba(255, 255, 255, 0.07),
                0 0 0 50px rgba(255, 255, 255, 0.04),
                0 0 0 80px rgba(255, 255, 255, 0.02);
    animation: winnerPulse 2s infinite ease-out;
}

@keyframes winnerPulse {
    0% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.08),
                    0 0 0 45px rgba(255, 255, 255, 0.05),
                    0 0 0 75px rgba(255, 255, 255, 0.02);
    }
    50% {
        box-shadow: 0 0 0 35px rgba(255, 255, 255, 0.12),
                    0 0 0 70px rgba(255, 255, 255, 0.08),
                    0 0 0 110px rgba(255, 255, 255, 0.04);
    }
    100% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.08),
                    0 0 0 45px rgba(255, 255, 255, 0.05),
                    0 0 0 75px rgba(255, 255, 255, 0.02);
    }
}

/* Winner Celebration Screen (Container 2) */
.cup {
    position: relative;
    bottom: 0;
    max-width: 120px;
    max-height: 120px;
    margin: 10px 0 30px 0;
} 
.cup img { width: 100%; height: auto; display: block; }

.first {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    top: 0;
    gap: -5px;
}
.first img {
    max-width: 300px;
    height: auto;
    width: 100%;
    margin-bottom: -15px;
    position: relative;
    z-index: 2;
}

.second, .third {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px 0;
    position: relative;
    bottom: 0;
}
.second img, .third img {
    max-width: 300px;
    height: auto;
    width: 100%;
}
