.TopBanner {
    position: relative;
    height: 100vh;
}


.ToggleBtn {
    display: none;
}

.TopBanner .container {
    position: relative;
    z-index: 1;
}

.BrandVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: -1;
}
.close {
    float: right;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-shadow: 0 1px 0 #fff;
    width: 30px;
    float: right;
    position: absolute;
    right: 8px;
    top: 10px;
    background: none;
    outline: none;
    border: none;
    opacity: 0.6;
}
.close:hover {
    opacity: 0.8;
    color: #fff;
}
.BannerLogo {
    height: 100%;
    width: 100%;
    max-width: 500px;
}

.BannerBottom {
    position: absolute;
    bottom: -10px;
    width: 100%;
}

.BannerInfo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 100px 0;
}

.brandLogo {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Abouttext h1 {
    font-size: 64px;
}

.AboutSubHead p {
    font-size: 24px;
    line-height: 15px;
}

.VerfiySection .verify-box {
    margin-top: 25px;
    max-width: 450px;
}

.bottom-img {
    position: absolute;
    bottom: -80px;
    left: 0;
}

.bottom-img.grass {
    bottom: -230px;
}

.NewsLetterSection .AboutSubHead {
    justify-content: center;
}

.NewsLetterSection {
    background: linear-gradient(180deg, #E76100 0%, #E66100 12.5%, rgba(229, 96, 1, 0.00) 100%);
    /* margin-top: -115px; */
    padding-top: 120px;
}


.newsletter-box h2 {
    margin-bottom: 35px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.newsletter-box {
    padding: 145px 0px 95px;
    margin-top: -94px;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23E8E8E8FF' stroke-width='4' stroke-dasharray='6%2c 14' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
}

.news-inner {
    max-width: 500px;
    margin: auto;
    position: relative;
}

.news-inner button {
    position: absolute;
    top: 0;
    right: 0;
    height: 45px;
    border-radius: 50px;
    border: 0px;
    padding: 0 25px;
    background: linear-gradient(#FF9040, #A34400);
    color: #fff;
    text-transform: uppercase;
}

.news-inner input {
    border-radius: 50px;
    height: 45px;
    padding: 0px 20px;
    font-size: 14px;
}

.news-top {
    position: absolute;
    right: -20vw;
    top: 0;
}

.eapps-instagram-feed-title {
    display: none !important;
}

.VerfiySection.custom-space {
    padding: 50px 0;
}

.SpinSection.custom-space {
    /* padding-top: 50px; */
    padding: 50px 0 0px;
    margin-top: -90px;
    /* height: 100vh; */
    background: #0f1111;
}


.text-modal {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}


.text-modal h6 {
    color: var(--clr-white);
    font-weight: 600;
    font-size: 18px;
}

.btn-row {
    padding-top: 10px;
    display: flex;
    gap: 20px;
}

.btn-row button {
    border: 0px;
}

.text-modal h6,
.text-modal h1 {
    margin: 0px;
}

.follow-us {
    padding-bottom: 30px;
}

.spin-canvas {
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding: 50px 0; */
}

#game-container {
    position: relative;
}

#game-container canvas {
    width: 100% !important;
    height: 100% !important;
    position: relative;

}

@keyframes borderAnimation {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  
    /* Additional styling for the canvas */
    canvas {
      width: 400px;
      height: 300px;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      border: 4px solid;
      border-image: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000) 1;
      border-image-slice: 1;
      animation: borderAnimation 10s infinite linear;
    }
  }
  