body {
  display: flex;
  flex-direction: column;
  align-items: center;

  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  background-image: linear-gradient(-200deg, #013d19 50%, #10f07c 180%);
  background-attachment: fixed;
}

header {
  position: relative;
  width: 100%;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px;
}

.title-icon-text {
  display: flex;
  align-items: center; /* Align items vertically in the center */
}

.icon-bok-img {
  display: flex; /* Ensure the <a> tag is a flex container */
  align-items: center;
}

.icon-bok {
  width: auto; /* Adjust as necessary */
  height: 50px; /* Adjust as necessary */
  vertical-align: middle;
}

.title-text {
  text-align: left;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  color: white;
  font-size: 2em;
  padding-left: 5px;
}

.help-icon {
  display: flex;
  align-items: center;
  margin-right: 10px;
}

.help-icon img {
  width: auto;
  height: 20px;
  cursor: pointer;
}

hr {
  border: 0.1px solid rgba(76, 175, 80, 0.1);
}


/* New styles for the ad banner */
.lb-1{
  display: flex;
  justify-content: center; /* Center the banner horizontally */
  align-items: center; /* Center the banner vertically if needed */
  width: 100%; /* Ensure the container takes full width */
  margin: 5px 0; /* Add some margin to separate from other content */
  margin-bottom: 10px;
 display: none; /* Remove once ads are enabled. */
}

.lb-1 img  {
  max-width: 90%; /* Ensure the image does not overflow the container */
  height: auto; /* Maintain the aspect ratio */
}

.mrec-1{
  display: flex;
  justify-content: center; /* Center the banner horizontally */
  align-items: center; /* Center the banner vertically if needed */
  width: 300px; /* Ensure the container takes full width */
  margin: 5px 0; /* Add some margin to separate from other content */
  display: none; /* Remove once ads are enabled. */
}

.mrec-1 img  {
  max-width: 90%; /* Ensure the image does not overflow the container */
  height: auto; /* Maintain the aspect ratio */
}


label {
  color: white;
  padding-bottom: 10px;
  text-align: center;
  align-content: center;
  align-items: center;
  align-self: center;
}

.player-guess {
  color: black;
  display: block;
}

.guess-block {
  width: 30%;
  background-color: white;
  border-radius: 20px;
  text-align: center;
  display: block;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .guess-block {
    width: 70%;
    background-color: white;
    border-radius: 20px;
    text-align: center;
    display: block;
  }

}

.image-container {
  position: relative;
  display: inline-block; /* Ensures container only takes as much space as needed */
  margin: 0 auto; /* Center align horizontally */
}

.hidden-man {
  width: 40%; /* Adjust as needed */
  padding-top: 15px;
  padding-bottom: 10px;
  border-radius: 20%; /* Adjust as needed */
  display: block;
  margin: 0 auto; /* Center align horizontally */
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0); /* Transparent background */
  z-index: 2; /* Ensure it's above the image */
  margin: 0 auto; /* Center align horizontally */
}

.all-attempts {
  max-height: 60vh; /* Adjust the maximum height as needed */
  overflow-y: auto; /* Enable vertical scroll if content overflows */
  width: 100%; /* Make the div take the full width */
  margin-top: 20px; /* Add spacing at the top */
}

.attempt-1 {
  display: flex;
  justify-content: center; /* Center the circles horizontally */
}

.attempt-1-container {
  /* Add padding between attempts */
  padding-bottom: 10px;
}

.circle-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 4px;
  margin-left: 4px;
  
  
}

.circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: grey;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 14px;
  /* Adjust font size and colors if needed */
  overflow: hidden;
  padding: 5px;
}

.circle img {
  max-width: 100%;
  max-height: 100%;
}

.label {
  font-size: 12px;
  color: white;
}

.player-name-label {
  margin-top: 10px;
  font-weight: bold;
  /* Set the player's name as bold */
  text-align: center;
  /* Center the player's name */
  color: white;
}

.autocomplete {
  position: relative;
  display: block;
  align-content: center;
  text-align: center;
  padding-bottom: 20px;
}

.options-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 4px;
  max-height: 150px;
  overflow-y: auto;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 1;
}

.option {
  padding: 8px 12px;
  cursor: pointer;
}

.option:hover {
  background-color: #ddd;
}

/* Styling for the text input */
#player-guess {
  padding: 10px;
  border: 2px solid #007bff;
  /* Set the border color */
  border-radius: 8px;
  font-size: 16px;
  outline: none;
}

/* Styling for the attempt container */
.attempt {
  margin-top: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
  /* Set the background color */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

/* Styling for the player name and surname */
.player-info {
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  margin-bottom: 10px;
}

/* Styling for the circles in each attempt */
.circle-attempt {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 10px;
}

.attempt-container {
  margin-top: 20px;
  /* Adjust the margin as needed */
}

.main-attempts {
  display: none;
}

/* Styling for the modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  /* Transparent black background with 10% opacity */
  justify-content: center;
  align-items: center;
  z-index: 9999;
  /* Place the modal on top of other content */
}

.modal-heading {
  margin-block-start: 0em !important;
}

.modal-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Styling for the Close button */
#close-modal {
  margin-top: 10px;
  padding: 8px 12px;
  background-color: #B2B2B2;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#close-modal:hover {
  background-color: #d2d2d2;
}

/* Center the modal content horizontally and vertically */
.modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 300px;
  /* Adjust the width as needed */
  max-width: 80%;
  /* Adjust the maximum width as needed */
  min-height: 200px;
  /* Adjust the height as needed */
}

/* Define the pop animation */
@keyframes pop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Apply the animation to the circle-container elements */
.circle-container.pop-animation {
  animation: pop 0.5s ease-in-out;
}

/* Modal styles */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 999999;
}

.modal-instructions {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  width: 80%;
  font-size: 0.8em;
}

.modal-instructions h2 {
  margin-top: 0;
}

.modal-instructions img {
  width: auto;
  height: 20px;
  cursor: pointer;
}

.attempt-0 {
  display: flex;
  justify-content: center; /* Center the circles horizontally */
}

.attempt-0-container {
  /* Add padding between attempts */
  padding-bottom: 10px;
}

.attempt-0-container .label {
  color: black;
}

.attempt-0-container {
  margin-top: 20px;
  /* Adjust the margin as needed */
}
.player-0-name-label {
  margin-top: 10px;
  font-weight: bold;
  /* Set the player's name as bold */
  text-align: center;
  /* Center the player's name */
  color: black;
}

.attempt-0 {
  display: flex;
  justify-content: center; /* Center the circles horizontally */
}

.attempt-0-container {
  /* Add padding between attempts */
  padding-bottom: 10px;
}

.circle-container-0 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 4px;
  margin-left: 4px;
}

.circle-0 {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: grey;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 14px;
  /* Adjust font size and colors if needed */
  overflow: hidden;
  padding: 5px;
}

.circle-0 img {
  max-width: 100%;
  max-height: 100%;
}

/* Close button styles */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ff0000;
  color: white;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 20px;
  line-height: 30px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.close-btn:hover {
  background: #cc0000;
}

.circle.correct {
  background-color: green;
  color: white;
}

.circle.incorrect {
  background-color: grey;
  color: white;
}

.pop-animation {
  animation: pop 2s ease-in-out forwards;
}

@keyframes pop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.share-buttons {
  margin-top: 20px;
}

.share-buttons button {
  margin: 2px;
  padding: 5px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer !important;
  height: 40px;
  width: 40px;
}

.share-buttons button:hover {
  background-color: #45a049;
}

.share-icons {
  width: 70%;
}

.share-buttons a {
  text-decoration: none;
  text-decoration-line: none;
}

.share-whatsapp {
  background-color: #25d366 !important;
}

.share-facebook {
  background-color: #1877F2 !important;
}

.share-twitter {
  background-color: #000 !important;
}

.share-email {
  background-color: rgb(98, 36, 36) !important;
}

.share-copy {
  background-color: grey !important;
  cursor: pointer;
}

.blur-transition {
  transition: filter 1.5s ease-in;
}

.widget {
  width: 28%;
  height: auto;
  background-color: rgba(255, 255, 255, 0.245);
  border-radius: 20px;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative; /* Add relative positioning */
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .widget {
      width: 66%;
  }
}

.widget-label-container {
  position: absolute;
  top: -10px; /* Adjust positioning to align properly */
  left: 50%; /* Adjust positioning to center properly */
  transform: translateX(-50%); /* Center horizontally */
  width: 30%;
}

.widget-label {
  background-color: rgba(255, 255, 255, 1); /* Adjust background color */
  color: #333; /* Adjust text color */
  font-weight: bold;
  text-align: center;
  padding: 5px;
  border-radius: 10px;
  font-size: 0.4em;
}

.team-info {
  display: flex;
  align-items: center;
}

.team-logo {
  width: 20px; /* Adjust size as needed */
  height: auto;
  margin-right: 10px;
}

.team-name {
  font-weight: bold;
  color: white;
  font-size: 0.8em;
}

.match-details {
  text-align: center;
  font-size: 0.6em;
  font-weight: bold;
  margin: auto 0;
}

.match-details p {
  padding: 0;
  color: rgba(255, 255, 255, 0.495);
}

@media (min-width: 500px) {}
.all-time-stats-container {
align-self: center;
}

.all-time-stats-container {
  display: flex;
  width: 100%;
  margin-bottom: 10px;
  }

  .all-time-stats {
    flex: 1;
    display: inline-grid;
   /* margin-left: 12px; */
    }

  ol, ul {
    list-style: none;
    }

    ul {
      padding-inline-start: 0px !important;
      margin-block-start: 0em !important;
      margin-block-end: 0em !important;
    }


      @media (min-width: 500px) {}
      .all-time-stats .single-stat:not(.Stats-module_small__zkkbW) {
      font-size: 34px;
      font-weight: 500;
      }
      .all-time-stats .single-stat {
      font-size: 24px;
      font-weight: 400;
      display: flex;
     /* align-items: center; */
      justify-content: center;
      text-align: center;
      letter-spacing: .05em;
      font-variant-numeric: proportional-nums;
      line-height: 34px;
      }

      @media (min-width: 500px) {}
.all-time-stats .stat-label {
margin-top: 4px;
}
.all-time-stats .stat-label {
color: gray;
font-size: 12px;
font-weight: 400;
display: flex;
/* align-items: center; */
justify-content: center;
text-align: center;
line-height: 14px;
letter-spacing: .1em;
}

.privacy-policy {
  background-color: white;
  margin: 20px;
  padding: 10px;
  border-radius: 20px;
}