/*--------------------------------------------------------------
# Root
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
  --font-default: "Montserrat", sans-serif;
  --font-primary: "Montserrat", sans-serif;
}

body {
	font-family: var(--font-default);
	font-size: 12px;
	color: #fff;
	background-color: #1c1c1c;
}

a {
  text-decoration: none;
  color: #fff;
}

a:hover {
  text-decoration: none;
  color: #ffcb2d;
}

p {
  font-size: 12px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  body {
      font-size: 12px;
  }
}

 /* Large devices (desktops, 992px and up) */
 @media (min-width: 992px) {
  body {
      font-size: 12px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  body {
      font-size: 14px;
  }
}
#section-title h2 {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 10px;
  position: relative;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
}

#section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: #ffcb2d;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

section {
  padding: 50px 0px;
  overflow: hidden;
  overflow: clip;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  position: fixed;
  background: #000;
  width: 100%;
  text-align: center;
}

#header .logo {
  height: 55px;
  padding: 8px;
}


@media screen and (max-width: 768px) {
  [data-aos-delay] {
      transition-delay:0!important
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding-top: 121px;
  position: relative;
  overflow: hidden;
  padding-bottom: 119px;
  background-image: url('/assets/images/amb_bg.jpg');
  background-position: center;
  background-repeat: repeat;
  background-size: contain;
}

.hero .hero-content h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: #fde403;
}

@media (max-width: 992px) {
  .hero .hero-content h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero .hero-content h2 {
    font-size: 2rem;
  }
}

.hero .hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #ffffff;
}

.hero .hero-content .hero-btns {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 576px) {
  .hero .hero-content .hero-btns {
    flex-direction: column;
  }
}

.hero .hero-content .hero-btns .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.hero .hero-content .hero-btns .btn-primary {
  background-color: #fde403;
  border-color: #fde403;
  color: #000000;
}

.hero .hero-content .hero-btns .btn-primary:hover {
  background-color: color-mix(in srgb, #fde403, #000 10%);
  border-color: color-mix(in srgb, #fde403, #000 10%);
}

.hero .hero-content .hero-btns .btn-outline {
  background-color: transparent;
  border: 2px solid #fde403;
  color: #fde403;
}

.hero .hero-content .hero-btns .btn-outline:hover {
  background-color: #fde403;
  color: #000000;
}

.hero .hero-content .hero-stats {
  display: flex;
  gap: 2.5rem;
}

@media (max-width: 576px) {
  .hero .hero-content .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}

.hero .hero-content .hero-stats .stat-item h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #fde403;
  margin-bottom: 0.5rem;
}

.hero .hero-content .hero-stats .stat-item p {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: var(--default-color);
}

.hero .hero-image {
  position: relative;
  overflow: hidden;
}

.hero .hero-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.hero .hero-image img:hover {
  transform: scale(1.03);
}

@media (max-width: 992px) {
  .hero {
    padding: 80px 0;
  }

  .hero .hero-content {
    margin-bottom: 3rem;
    text-align: center;
  }

  .hero .hero-content .hero-btns {
    justify-content: center;
  }

  .hero .hero-content .hero-stats {
    justify-content: center;
  }
}

.blink-button {
  animation: blinkAnimation 1.5s infinite;
}

@keyframes blinkAnimation {
  0%   { opacity: 1; transform: scale(1); }
  50%  { opacity: 0.8; transform: scale(1.1); }
  100% { opacity: 1; transform: scale(1); }
}

/*--------------------------------------------------------------
# Scroll Down
--------------------------------------------------------------*/

.scrolldown {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.chev {
  cursor: pointer;
  position: absolute;
  width: 2.1rem;
  height: 0.48rem;
  opacity: 0;
  transform: scale(0.3);
  -webkit-animation: move-chevron 3s ease-out infinite;
  animation: move-chevron 3s ease-out infinite;
}

.chev:first-child {
  -webkit-animation: move-chevron 3s ease-out 1s infinite;
  animation: move-chevron 3s ease-out 1s infinite;
}

.chev:nth-child(2) {
  -webkit-animation: move-chevron 3s ease-out 2s infinite;
  animation: move-chevron 3s ease-out 2s infinite;
}

.chev:before,
.chev:after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 50%;
  background: #ffcb2d;
}

.chev:before {
  left: 0;
  transform: skewY(30deg);
}

.chev:after {
  right: 0;
  width: 50%;
  transform: skewY(-30deg);
}

@-webkit-keyframes move-chevron {
  25% {
      opacity: 1;
  }
  33.3% {
      opacity: 1;
      transform: translateY(2.28rem);
  }
  66.6% {
      opacity: 1;
      transform: translateY(3.12rem);
  }
  100% {
      opacity: 0;
      transform: translateY(4.8rem) scale(0.5);
  }
}

@keyframes move-chevron {
  25% {
      opacity: 1;
  }
  33.3% {
      opacity: 1;
      transform: translateY(2.28rem);
  }
  66.6% {
      opacity: 1;
      transform: translateY(3.12rem);
  }
  100% {
      opacity: 0;
      transform: translateY(4.8rem) scale(0.5);
  }
}

/*--------------------------------------------------------------
# Modal
--------------------------------------------------------------*/

.login-modal {
	padding: 0px;
	width: 100%;
}

.login-modal .modal-body {
	padding: 0px;
	position: relative;
}

.modal-dialog.login-modal {
	max-width: 464px;
}

.login-modal .modal-content {
	background: none;
	border: none;
}

.login-modal .close {
	position: absolute;
	z-index: 1;
	right: 8px;
	color: #ffcb2d;
	font-size: 2.5rem;
	font-weight: 400;
	background-color: transparent;
	border: 0;
}

.login-modal .modal-body {
	background: #1e2024;
	border-radius: 20px;
}

.mdl-box {
	top: 35%;
	width: 100%;
	padding: 15px;
	background: #272a30;
	border-radius: 0 0 20px 20px;
  text-align: center;
}

.mdl-box p {
  font-size: 16px;
  font-weight: 600;
	padding: 10px;
}

.btn-inn {
	background: #ffcb2d;
	color: #000;
	font-weight: 600;
	padding: 6px 25px;
  margin: 0px 4px 20px 0px;
	border-radius: 20px;
	font-size: 14px;
	text-transform: uppercase;
	border: none;
}

.btn-inn:hover {
	background: #fff;
	color: #000;
}

.alt_img {
  max-width: 100%;
  border-radius: 20px 20px 0 0;
}

.alt_text {
  margin-top: 20px;
	font-size: 13px;
	color: #c9c9c9;
}

.alt_text a {
	color: #ffcb2d;
  font-weight: 500;
  text-decoration: underline;
}

.oth-modal .close {
	position: absolute;
	z-index: 1;
	right: 8px;
  top: 0;
	color: #ffcb2d;
	font-size: 2.5rem;
	font-weight: 400;
	background-color: transparent;
	border: 0;
}

.oth-modal .modal-body {
	text-align: center;
}

.oth-modal .modal-content {
	border-radius: 20px;
  border: 1px solid #ffca2d80;
}

.oth-modal .modal-body h3 {
  font-size: 34px;
  font-weight: 700;
  padding: 30px 20px 20px;
}

.oth-modal .modal-body h4 {
  font-size: 18px;
  color: #cecece;
  font-weight: 600;
  padding-bottom: 8px;
}

#oth_button {
  padding: 5px 0;
}

.btn-oth {
	background: #ffcb2d;
	color: #000;
	font-weight: 600;
	padding: 5px 18px;
  margin: 0px 4px;
	border-radius: 20px;
	font-size: 13px;
	text-transform: uppercase;
	border: none;
}

.btn-oth:hover {
	background: #f09217;
	color: #000;
}

.oth_text {
  padding: 25px 0 5px;
	font-size: 13px;
	color: #c9c9c9;
}

.oth_text a {
	color: #ffcb2d;
  font-weight: 500;
  text-decoration: underline;
}

.usdt {
	padding: 35px 15px 0px;
}

.usdt span {
  height: 35px;
  font-weight: 400;
  font-size: 16px;
}

.usdt img {
  height: 25px;
  padding: 0 3px;
  margin-bottom: 7px;
}


/*--------------------------------------------------------------
# section-2 Top Games
--------------------------------------------------------------*/

#section-2 {
  background-color: #161616;
}

#section-2 img {
  border-radius: 10px;
}

/*--------------------------------------------------------------
# games_slide provider 
--------------------------------------------------------------*/

#games_slide .carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #7a7979;
  background-clip: padding-box;
  border: 0;
  opacity: .5;
  transition: opacity .6s ease;
}

#games_slide .carousel-indicators .active {
  background-color: #ffcb2d;
  opacity: 1;
}

#games_slide .appbanner img {
  border-radius: 10px;
}

#games_slide .swiper {
  padding-bottom: 40px;
  width: 100%;
}

#games_slide .swiper-slide {
  text-align: center;
  justify-content: center;
  align-items: center;
}

#games_slide .swiper-slide img {
  display: block;
  width: 100%;
  object-fit: cover;
}

#games_slide .swiper-pagination-bullet {
  background: #ffcb2d;
  margin-left: 10px !important;
  margin-right: 10px !important;
  height: 5px;
  width: 5px;
}

#games_slide h3 {
  font-size: 16px;
  text-transform: uppercase;
  padding: 10px 0px;
}

#games_slide i {
  color: #ffcb2d;
}


/*--------------------------------------------------------------
# section-3 Promotion
--------------------------------------------------------------*/
#section-3 .promo-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}
#section-3 .promo-card img {
  width: 100%;
  display: block;
  border-radius: 15px;
}
#section-3 .promo-button {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffcb2d;
  color: #000;
  padding: 8px 20px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
}
#section-3 .promo-button:hover {
  background: #ffffff;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  background-color: #131313;
  padding: 30px 0;
  border-top: 1px solid #2b2b2b;
  color: white;
}

.footer .footer-info .logo {
  line-height: 0;
  max-width: 370px;
  margin-bottom: 18px;
}

.footer .footer-info .logo img {
  max-width: 120px;
}

.footer .footer-info .logo h4 {
  font-size: 14px;
  letter-spacing: 1px;
  color: #fff;
}

.footer .footer-info p {
  max-width: 370px;
  font-size: 12px;
  color: #afafaf;
}

.footer .social-links a {
  align-items: center;
  width: 30px;
  height: 30px;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.7);
}

.footer .social-links a:hover {
  color: #fff;
  border-color: #fff;
}

.footer h4 {
  font-size: 14px;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-res {
  line-height: 0;
  max-width: 370px;
  margin-bottom: 18px;
}

.footer .footer-res img {
  max-width: 45px;
  max-height: 30px;
  padding-left: 5px;
  margin-bottom: 10%;
}

.footer .footer-res p {
  line-height: 13px;
  font-size: 11px;
  text-align: justify;
  color: #afafaf;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  color: rgba(0, 131, 116, 0.8);
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #fff;
}

.footer .footer-contact p {
  line-height: 26px;
  font-size: 12px;
}

.footer .copyright {
  text-align: left;
  font-size: 11px;
}

.footer .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
}

.footer .credits a {
  color: #fff;
}

.footer-page {
  background-color: #131313;
  padding: 15px 0 20px;
}

.footer-page .footer-link {
  margin-right: auto !important;
}

.footer-page .footer-link ul {
  list-style: none;
  padding: 0;
  margin: 2px 0 0 0;
}

.footer-page .footer-link ul li{
  float: left;
  display: inline;
  padding: 0px 6px;
  line-height: 12px;
  border-right: solid 1px #b9b9b9;
  color:#818181;
}

.footer-page .footer-link ul li:first-child{
  padding: 0px 6px  0 0 ;
}
.footer-page .footer-link ul li:last-child{
  border-right: none;
}
.footer-page .footer-link ul li a{
  padding: 0 10px;
  font-size: 12px;
  color:#bbbbbb;
}
.footer-page .footer-link ul li a:first-child{
  padding-left: 0;
}
.footer-page .footer-link ul li a:hover{
  color:#ffe600;
}
