
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: Nosifer-Regular;
    font-display: swap;font-style: normal;
    font-weight: 400; src: url(./assets/Nosifer-fonts/Nosifer-Regular.ttf);
  }

body {
    background-color: #202020;
    font-family: 'Exo 2', sans-serif;
    color: white;
    font-size: 18px;
}

.hero_section {
    position: relative;
    height: 600px;
    width: 100%;
    text-align: center;
    background-image: url(./assets/imgs/slider.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    padding-top: 150px;
}

.hero_section h1 {
    font-family: Nosifer-Regular;
}

.hero_disc {
    font-size: 18px;
    font-weight: 400;
}

a.btn.btn-outline-primary:hover {
    background: #8405f5;
    box-shadow: 0 0 0 2px #8405f5;
}
.about_content_div p ,.download p ,.footer p, .footer span{
    color: white;
    font-weight: 200;
}
a.btn.btn-outline-primary {
    border-radius: 46px;
    padding: 10px 55px;
    color: white;
    background-color: #f76a10;
    border: 4px solid #0d1650;
    box-shadow: 0px 0px 0px 2px #f76a10;
}

a.btn.btn-outline-info:hover {
    background: #f76a10;
    box-shadow: 0 0 0 2px #f76a10;
}

a.btn.btn-outline-info {
    border-radius: 46px;
    padding: 10px 55px;
    color: white;
    background-color: #8405f5;
    border: 4px solid #323232;
    box-shadow: 0px 0px 0px 2px #8405f5;
}

.item .card {
    padding: 5px;
    border-radius: 10px;
    background: #202020;
    box-shadow: 0 0 0 2px #f76a10;
    position: relative;
    z-index: 5;
    overflow: hidden;
    ;
}

.item .card:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: rgb(247 106 16 / 75%);
    width: 100%;
    z-index: 1;
    border-radius: 10px;
}

.item .card img {
    border-radius: 6px;
    transition: all .3s ease-in-out;
}

.item .card:hover img {
    transform: scale(1.4);
}

section.games,
section.about {
    padding: 50px 0px;
}

.section_h2 {
    color: white;
    font-size: 30px;
    text-align: center;
    margin-bottom: 55px;
    position: relative;
    width: fit-content;
    margin: 0 auto 65px auto;
    font-family: Nosifer-Regular;

}
.heading_h2  {
    color: white;
    font-family: Nosifer-Regular;

}
.section_h2::after {
    content: '';
    position: absolute;
    bottom: -22px;
    left: 50%;
    width: 100%;
    height: 1px;
    background: #f76a10;
    transform: translate(-50%, 0px);
}

.section_h2::before {
    content: '';
    position: absolute;
    bottom: -24px;
    left: 50%;
    border-radius: 30px;
    width: 49px;
    transform: translate(-50%, 0%);
    height: 5px;
    background: #8505f5;
    z-index: 2;
}

.radious_img {
    border-radius: 20px;
}

.about_content_div {
    height: 100%;
    background-color: #323232;
    border-radius: 20px;
    padding: 20px;
}

section.download {
    background-image: url(./assets/imgs/downloadnowphone.webp);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 150px 0;
    text-align: center;
    text-decoration: none;
    margin: 50px 0;
}

section.connnect_with_support a {
    text-decoration: none;
    color: white;
    font-size: 21px;
}

.connnect_with_support .download_div {
    position: relative;
    overflow: hidden;
    border-radius: 50% !important;
    /* padding: 45px; */
   height: 100px;
   width: 100px;
   display: flex;
   justify-content: center;
   align-items: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 5px solid #202020 ;

}

.download_div p svg {
    font-size: 50px;

    text-align: center;
    display: block;

}

.pulse {
    animation: pulse-animation 2s infinite;
  }

  @keyframes pulse-animation {
    0% {
      box-shadow: 0 0 0 0px rgb(255 255 255 / 28%);
    }
    100% {
      box-shadow: 0 0 0 28px rgb(255 255 255 / 0%);
    }
  }

.footer {
    padding-top: 20px;
    text-align: center;
    background: #404040;
}

.footer span {
    padding: 10px;
    background: #323232;
    display: block;
    width: 100%;
}

body{
    overflow-x: hidden;
}
/* falling coins  */

.drop {
    position: fixed;
    z-index: 9;
    top: -1vh;
    font-size: 2rem;
    transform: translateY(0);
    animation: fall 3s linear forwards;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  @keyframes fall {
    to {
      transform: translateY(101vh);
    }
  }

  .modal {
    font-family: "Poppins", sans-serif;
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
    background-color: #492e91;
    padding: 1rem;
    color: #f3f3f3;
    transition: transform 0.1s ease;
    border-radius: 0.5rem 0.5rem 0 0;
  }

  .modal.active {
    transform: translate(-50%, 0);
  }

  .modal a {
    text-decoration: none;
    color: #f3f3f3;
  }

  .modal a:hover {
    color: #c7b3ff;
  }

  @media (max-width:600px){
    .hero_section {
        height: 575px;
        padding-top: 87px;
    }
    a.btn.btn-outline-primary{
        padding: 10px 35px;

    }a.btn.btn-outline-info
    {
        padding: 10px 35px;
    }
    section.download{
        padding: 80px 0;
        margin: 30px 0;
    }
   section.games, section.about {
    padding: 30px 0px;
}
.drop{
    font-size: 1rem;
}
#snowflakeContainer{
    display: none;
}
}

@media (min-width:601px) and (max-width:1224px){
    .hero_section{
        height: 410px;padding-top: 60px;
    }
    #snowflakeContainer{
        display: none;
    }
    section.download{
        padding: 70px 0;
    }
}