@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;500&family=Righteous&family=Roboto&display=swap");

/* font-family: 'Poppins', sans-serif;
font-family: 'Righteous', cursive;
font-family: 'Roboto', sans-serif; */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.wrapper {
  display: none;
}

p {
  padding: 0;
  margin: 0;
}

#spin-the-wheel {
  animation: move 5s linear alternate-reverse infinite;
}

@keyframes move {
  0% {
    transform: rotate(-25deg);
  }
  50% {
    transform: rotate(25deg);
  }
  100% {
    transform: rotate(-25deg);
  }
}

.game-section {
  margin-bottom: 30px;
  cursor: pointer;
}

#loader-cont {
  height: 100vh;
  width: 100%;
  background-color: rgb(34, 34, 34);
  display: flex;
  justify-content: center;
  align-items: center;
}
#loader-cont .main-loader {
  height: 60px;
  width: 60px;
  padding: 5px;
  border-top: 5px solid #abdd52;
  border-radius: 50%;
  animation: outer-load 1.2s linear infinite;
}
#loader-cont .main-loader .inner-loader {
  height: 50px;
  width: 50px;
  padding: 1px;
  border-top: 5px solid #ca9c9c;
  border-radius: 50%;
  /* background-color: white; */
  animation: inner-load 1.2s linear infinite;
}
@keyframes outer-load {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes inner-load {
  0% {
    transform: rotate(-360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.game-category {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  border-radius: 15px;
  background: linear-gradient(145deg, #605147, #5e554f);
  box-shadow: -9px -5px 19px #1c0107, -9px -9px 27px #4e363b;
}

.matches-img {
  height: auto;
  width: 100%;
}
.matches-img img {
  width: 45%;
  margin: 15px 0;
}

.owl-controls {
  display: none !important;
}

.owl-item {
  /* border: 1px solid white; */
  /* width: 146.2px !important; */

  margin-right: 20px;
}

/* code for participate section starts here */
.participate-section {
  width: 100%;
  /* background-color: #260109; */
  background-image: url("./Assets/participate.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.participate-section .participate-content {
  /* width: 90%; */
  margin: 0 auto;
  padding: 70px 20px;
  gap: 20px;
  display: grid;
  justify-items: center;
  grid-template-columns: repeat(3, 1fr);
  background: #1b1b1b;
}
.participate-section .participate-content .left-content {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
}
.participate-section .participate-content .right-content {
  background-color: white;
  border-radius: 7px;
  padding: 20px;
}
.participate-section .participate-content .left-content h2 {
  text-align: center;
  margin-bottom: 20px;
  color: rgb(0, 0, 0);
}
.participate-section .participate-content .left-content ol li {
  color: rgb(0, 0, 0);
}
.participate-section .participate-content .right-content h2 {
  text-align: center;
  margin-bottom: 20px;
  color: rgb(0, 0, 0);
}
.participate-section .participate-content .right-content .userData {
  text-align: center;
  /* border: 1px solid white; */
}

.participate-section .participate-content .right-content .userData table {
  width: 100%;
  color: rgb(0, 0, 0);
  /* border: 1px solid red; */
  grid-template-columns: repeat(2, 1fr);
}

.upcoming-title h4 {
  background: rgb(44 42 40);
  text-align: center;
  margin-bottom: 10px;
  padding: 9px 0;
  border-radius: 5px;
}
.live-title h4 {
  background: rgb(44 42 40);
  text-align: center;
  margin-bottom: 10px;
  padding: 9px 0;
  border-radius: 5px;
}

/* code for participate section ends here */

#promotionsWrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 25px;
}

#promotionsWrapper .card{
  gap: 120px;
}


/* some extra css */
.tips-logo .text-image {
  display: flex;
  padding: 15px 0;
  align-items: center;
  flex-direction: column;
  color: rgb(0, 0, 0);
  justify-content: center;
  background-color: #1c1919;
}
.tips-logo .text-image p {
  padding: 5px 0;
  text-align: center;
  font-size: 1rem;
  color: white;
}
.tips-logo .text-image img {
  width: 30%;
}

.hero-section {
  padding: 40px;
  background: white;
  color: rgb(0, 0, 0);
}

.hero-section .content {
  border: 3px solid #071c4daa;
  padding: 40px;
  transition: 0.5s all linear;
  border-radius: 8px;
}
.hero-section .content:hover {
  border: 3px solid rgb(54, 54, 230);
}

.hero-section a {
  font-size: 1.2rem;
  color: black;
}

.hero-section .content p {
  text-align: justify;
  font-size: 1.1rem;
  font-family: "Poppins", sans-serif;
  /* font-family: 'Righteous', cursive; */
}
.hero-section .content h1 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-transform: capitalize;
}
.hero-section .content ul {
  padding: 15px 0;
}

.hero-section .content .box_wrapper {
  display: grid;
  grid-gap: 20px;
  padding: 20px 0;
  grid-template-columns: repeat(2, 1fr);
}
.hero-section .content .box_wrapper .box {
  box-shadow: 1px 1px 4px rgb(16, 17, 16);
  border-radius: 7px;
  padding: 20px;
  background: #1c1919;
  color: #f5e7e7eb;
}
.hero-section .content .box_wrapper .box p {
  font-size: 1rem;
}
.hero-section .content .box_wrapper .box h3 {
  text-align: center;
  padding-bottom: 10px;
  text-decoration: underline;
}

.hero-section .content ul li {
  font-size: 1.1rem;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  text-transform: capitalize;
  list-style-position: inside;
}

.faq-section .faq-img {
  width: 100%;
  display: flex;
  background-color: #171717;
  align-items: center;
  padding: 25px 0;
  justify-content: center;
}

.faq-section .faq-img img {
  width: 60%;
}

.faq-section .accordion-cont {
  display: grid;
  padding: 25px 50px;
  gap: 25px;
  background-color: #171717;
}
.faq-section .accordion-cont .left-accordion {
  display: flex;
  flex-direction: column;
}
.faq-section .accordion-cont .right-accordion {
  display: flex;
  flex-direction: column;
}

.accordion-button {
  background-color: white !important;
  color: black !important;
}

/* Footer starts here */
.footer {
  width: 100%;
  padding: 50px 0;
  background-image: url("./Assets/footerbg.webp");
  text-align: center;
  position: relative;
}
footer ul li {
  list-style-type: none;
}

.footer ul:nth-child(1) {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.footer ul:nth-child(1) li .fa-brands {
  transition: 0.3s all linear;
  color: white;
}
.footer ul:nth-child(1) li .icon1:hover {
  /* background-color: red; */
  transform: translateY(-5px);
  color: #3b5998;
}
.footer ul:nth-child(1) li .icon2:hover {
  /* background-color: red; */
  transform: translateY(-5px);
  color: #8a3ab9;
}
.footer ul:nth-child(1) li .icon3:hover {
  /* background-color: red; */
  transform: translateY(-5px);
  color: #0077b5;
}

.footer::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.658);
}

.footer p {
  color: rgb(226, 223, 223);
  z-index: 99;
}

/* Footer Ends here */

@media (max-width: 1296px) {
  #promotionsWrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 987px) {
  .direct-column {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .direct-column button {
    width: fit-content;
  }

  .participate-section .participate-content {
    grid-gap: 25px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 908px) {
  .hero-section .content .box_wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 828px) {
  #promotionsWrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .faq-section .accordion-cont {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {

  #promotionsWrapper .card{
   gap: 243px;
  }

  .hero-section {
    padding: 0px;
  }
  .hero-section .content {
    border: none !important;
    padding: 18px;
  }
  .hero-section .content .box_wrapper .box {
    border: none;
    margin-top: 10px;
  }
  .hero-section .content .box_wrapper {
    padding: 0;
  }
  #promotionsWrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 734px) {
  .participate-section .participate-content {
    /* width: 90%; */
    margin: 0 auto;
    padding: 50px 20px;

    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .participate-section .participate-content .right-content {
    margin-top: 15px;
  }
}
