
body {
  margin: 0;
  padding: 0;
  /* min-height: 100vh; */
  background: linear-gradient(to bottom right, #2c3e50, #4ca1af); /* التدرج */
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: sans-serif;
}

.container{
    background-color: cadetblue;
    text-align: center;
    margin: 50px auto;
    padding: 20px;
    border-radius: 20px;
    color: white;
   width: 500px;
}

.rps{
    background-color: forestgreen;
    border-radius: 20px;
}

.content , .contentt{
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}
.icon p ,.iicon p{
    display: inline-block;
    margin: 10px;
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.2s ease;
    border: 3px solid #ccc;
     margin: 15px;
  padding: 15px;
  background-color: #2c2c3e;  /* لون خفيف ورائع للخلفية */
  border-radius: 50%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.icon p:hover {
  transform: scale(1.2);
}

.choice:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

#result {
  font-size: 24px;
  margin: 20px 0;
  font-weight: bold;
}
.score-wrapper {
  background-color: #2c2c3e;
  padding: 20px 30px;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
  text-align: center;
  width: fit-content;
  margin: 30px auto;
}

.score-row {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
  margin-bottom: 15px;
}

.score-row h3 {
  color: white;
  font-size: 18px;
  flex: 1;
  text-align: center;
  margin: 0;
}

.score-circle {
  width: 60px;
  height: 60px;
  background-color: #ffffff22;
  color: white;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  margin: auto;
}

.vs{
    color: red;
    font-size: 25px;
    font-weight: bold;
}


#reset {
  padding: 10px 20px;
  background-color: crimson;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  margin-top: 20px;
  cursor: pointer;
  transition: 0.3s;
}

#reset:hover {
  background-color: darkred;
}