@font-face {
  font-family: ExoRegular;
  src: url('../fonts/Exo-Regular.otf');
}
@font-face {
  font-family: ExoBold;
  src: url('../fonts/Exo-Bold.otf');
}
body {
  font-family: ExoRegular, sans-serif;
  background-color: #0b2943;
}
main {
  background-image: url('../img/bg.png');
  background-repeat: no-repeat;
  background-size: cover;
}
header {
  background-color: #3a73c5;
  position: relative;
}
#dropdownMenu {
  background-color: #3a73c5;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all 2s ease;
  display: none;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
#dropdownMenu.show {
  display: block;
}
.menu-list {
  margin: 0;
  padding: 15px;
  list-style: none;
}
.menu-list .item-title-highlighting {
  color: yellow;
  font-weight: bold;
}
.menu-list .item-title {
  color: #fff;
  text-transform: uppercase;
}
.menu-list .item-title .hint-info {
  font-size: 16px;
  text-transform: none;
}
.menu-list .item-link {
  color: #FBB03B;
  padding-left: 20px;
  margin: 10px;
  border-bottom: 1px solid;
}
.menu-list .item-link a {
  color: inherit;
  text-decoration: none;
}
.license-block {
  color: #fff;
  padding: 0 15px 15px 15px;
}
.license-block .license-text {
  font-size: 14px;
}
.license-block .mpesa-logo {
  margin-left: 10px;
}
footer {
  background-image: url('../img/footer_bg.png');
  background-repeat: no-repeat;
  background-size: cover;
}
.main-logo {
  width: 160px;
  height: auto;
  margin: 0 auto;
}
.menu-logo {
  width: 25px;
  filter: invert(1);
}
.main-menu {
  margin-left: 10px;
}
main {
  padding-top: 10px;
}
.iframeWrapper {
  padding: 5px;
  background: #3173c7;
  border-radius: 10px;
}
.iframeWrapper h6 {
  font-family: ExoBold, sans-serif;
  margin-top: 5px;
}
#lobbyIframe {
  min-height: 245px;
  max-height: 270px;
}
@media screen and (max-width: 400px) {
  #lobbyIframe {
    min-height: 260px;
    max-height: 270px;
  }
}
footer {
  box-shadow: inset 0px 105px 40px -9px #ffffffde;
  background-color: #e8e8e8a8;
}
.lookup-ticket {
  background: #3173c7;
}
.lookup-ticket h6 {
  font-family: ExoBold;
}
.lookup-ticket input {
  background: #00204F;
  color: #fff;
}
.lookup-ticket input::placeholder {
  color: #FBB03B;
}
.lookup-ticket .btn {
  color: #000;
  background: #FBB03B;
}
.contact-block {
  background-color: #3173c7;
}
.contact-block .btn {
  background: #FBB03B;
  color: #00204F;
}
.contact-block h6 {
  font-family: ExoBold;
  color: #fff;
}
.mpesa-logo {
  background-color: #fff;
}
.banner-img {
  content: url("../img/banner_desktop.webp");
}
@media (max-width: 1024px) {
  .banner-img {
    content: url("../img/banner_pad.webp");
  }
}
@media (max-width: 600px) {
  .banner-img {
    content: url("../img/banner_mobile.webp");
  }
}
.test {
  color: #ffff;
}
/*modal*/
/* === ФОН МОДАЛКИ === */
.play-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  /* затемнення */
  display: flex;
  justify-content: center;
  align-items: flex-end;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 9999;
}
/* Коли показується */
.play-modal.show {
  visibility: visible;
  opacity: 1;
}
/* === ВІКНО (контент) === */
.play-modal-content {
  background-color: #3173c7;
  color: white;
  text-align: center;
  width: 100%;
  max-width: 480px;
  border-radius: 20px 20px 0 0;
  padding: 15px;
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
}
/* Анімація виїзду */
.play-modal.show .play-modal-content {
  transform: translateY(0);
}
/* Хедер */
.play-modal-header {
  display: flex;
  justify-content: center;
  position: relative;
  padding: 5px;
}
.drag-handle {
  width: 50px;
  height: 5px;
  background: #ccc;
  border-radius: 3px;
  margin: 5px auto;
}
.close-btn {
  position: absolute;
  right: 10px;
  top: 5px;
  font-size: 24px;
  background: none;
  border: none;
  color: #eee;
  cursor: pointer;
}
/* Тіло */
.play-modal-body {
  padding: 10px;
}
/* Поле телефону */
.phone-input {
  background: #00204F;
  color: #fff;
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #444;
  text-align: center;
}
.phone-input::placeholder {
  color: #FBB03B;
}
/* Опції ставок */
.bet-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.bet-btn {
  background: #28a745;
  border: none;
  color: #fff;
  padding: 15px;
  font-size: 16px;
  border-radius: 12px;
  transition: background 0.2s;
  cursor: pointer;
}
.bet-btn:hover {
  background: #218838;
}
.aviator-logo-title {
  width: 50%;
  background-color: #fff;
  height: auto;
  margin: 0 auto;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 10px;
}
.aviator-logo-icon {
  width: 50px;
  height: auto;
  margin-left: 5px;
}
.play-now-btn {
  background: #28a745;
  color: #fff;
  font-size: 18px;
  padding: 14px;
  width: 100%;
  border-radius: 12px;
  border: none;
  font-weight: bold;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.play-now-btn.disabled {
  background: #555 !important;
  cursor: not-allowed;
  opacity: 0.7;
}
.bet-btn.active {
  background: #ffc107;
  color: #000;
}
.play-now-btn:hover {
  background: #218838;
}
/*
aviator modal*/
.aviator-modal {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 10000;
  display: none;
  flex-direction: column;
}
.aviator-modal.show {
  display: flex;
}
.aviator-modal iframe {
  flex: 1;
  width: 100%;
  height: 100%;
  border: none;
}
.aviator-close {
  position: absolute;
  z-index: 10001;
  font-size: 32px;
  color: #fff;
  background-color: #3173c7;
  border: none;
  cursor: pointer;
  width: 100%;
}
.policy-container {
  color: #fff;
}
.policy-link {
  color: #ffc107;
}
#aviatorModal .modal-content {
  font-family: ExoRegular, sans-serif;
  background-color: #3a73c5;
  background: url("../img/abg.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  color: #fff;
}
#aviatorModal .modal-content phone-input {
  background: #00204F;
  color: #fff;
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #444;
  text-align: center;
}
/*# sourceMappingURL=main.css.map */