.score-card {
    background-color: #333; /* Dark grey background */
    padding: 7px 0; /* Reduced padding to decrease the height */
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: nowrap; /* Prevent items from wrapping to the next line */
  }
  
  .score-item {
    color: #f0f0f0; /* Brighter font color */
    font-size: 16px; /* Clean, readable font size for text */
    text-align: center;
    line-height: 1.2;
    padding: 3px 5px; /* Reduced padding */
    font-weight: bold;
    flex: 0 0 auto; /* Prevent flex items from growing */
  }
  
  .score-item .number {
    font-size: 22px; /* 1.5 times the font size of the text */
    display: block; /* Ensure the number is on a separate line */
  }
  
  @media (max-width: 1100px) {
    .score-card {
      justify-content: space-between; /* Adjust the space between items on smaller screens */
      flex-wrap: wrap; /* Allow wrapping */
    }
    .score-item {
      font-size: 14px; /* Slightly smaller font on smaller screens */
      padding: 2px 3px; /* Reduced padding */
      flex: 0 1 48%; /* Take up approximately half the width */
    }
    .score-item .number {
      font-size: 21px; /* Adjust number font size for smaller screens */
    }
  }
  
  @media (max-width: 768px) {
    .score-item {
      font-size: 14px; /* Slightly smaller font on smaller screens */
      padding: 2px 3px; /* Reduced padding */
      flex: 0 1 48%; /* Take up approximately half the width */
    }
    .score-item .number {
      font-size: 21px; /* Adjust number font size for smaller screens */
    }
  }
  
  @media (max-width: 480px) {
    .score-card {
      justify-content: space-between; /* Adjust the space between items on smaller screens */
      flex-wrap: wrap; /* Allow wrapping */
    }
    .score-item {
      font-size: 12px; /* Smaller font on very small screens */
      padding: 1px 2px; /* Reduced padding */
      flex: 0 1 48%; /* Take up approximately half the width */
    }
    .score-item .number {
      font-size: 18px; /* Adjust number font size for very small screens */
    }
  }
  

/* Keyframe for the fade-in animation */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Keyframe for the rotating animation */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Container for the rotating circle */
.rotating-circle {
  position: relative;
  display: inline-block; /* Keeps the list inline */
  margin: 20px;
}

.rotating-circle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 1px solid #FFA500;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: rotate 5s linear infinite;
}

/* Style for the link with fade-in animation */
.animated-link {
  background-color: #FFA500;
  color: #04538f;
  font-family: 'Tenor Sans', sans-serif;
  padding: 10px 20px;
  text-decoration: none;
  display: inline-block;
  border-radius: 4px;
  animation: fadeInLeft 2s ease-in-out;
}



