@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Poppins:300,regular,500,600,700,800,900&display=swap);
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a,
button {
  cursor: revert;
}

ol,
ul,
menu {
  list-style: none;
}

img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

table {
  border-collapse: collapse;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
  appearance: revert;
}

:where(pre) {
  all: revert;
}

html,
body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #fff;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background: linear-gradient(135deg, #1b1a18 0%, #2d2b28 50%, #1b1a18 100%);
  background-attachment: fixed;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(7, 186, 219, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(249, 160, 29, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(16, 149, 181, 0.08) 0%, transparent 50%);
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
}
body::after {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(7, 186, 219, 0.03) 2px, rgba(7, 186, 219, 0.03) 4px);
  z-index: 0;
  pointer-events: none;
}

p {
  line-height: 180%;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 1;
}

h1 {
  font-size: 38px;
  font-weight: 600;
  text-align: center;
  margin: 25px 0;
}

h2 {
  font-size: 32px;
  font-weight: 600;
  margin: 20px auto;
  text-align: center;
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, transparent, #07badb, #f9a01d, #07badb, transparent) 1;
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding-bottom: 10px;
  background: linear-gradient(135deg, #ffffff 0%, #07badb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

h3 {
  font-size: 26px;
  font-weight: 600;
  margin: 15px 0;
  color: #07badb;
  position: relative;
  padding-left: 15px;
}
h3::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: #f9a01d;
}

ol {
  list-style: decimal;
  padding: 15px 25px;
}

ul {
  list-style: disc;
  padding: 15px 25px;
}

li {
  line-height: 150%;
}

ol li::marker,
ul li::marker {
  color: #07badb;
  font-weight: 600;
  font-size: 1.2em;
}
li {
  transition: all 0.3s ease;
  padding: 5px 0;
}
li:hover {
  padding-left: 10px;
  color: #f9a01d;
}

.header {
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  background: #ffffff;
  backdrop-filter: blur(10px);
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 10px rgba(7, 186, 219, 0.1);
  border-bottom: 2px solid rgba(7, 186, 219, 0.2);
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.header .container .logo {
  flex: 0 0 150px;
}
.header .container .auth {
  display: flex;
  gap: 15px;
}
.header .container .auth .btn-1 {
  background: #f9a01d;
}
.header .container .auth .btn-2 {
  background: #07badb;
}   

.btn {
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 150px;
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  color: #000000;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}
.btn:hover::before {
  left: 100%;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(249, 160, 29, 0.5);
}

.main {
  height: 100%;
  flex: 1 1 auto;
  padding: 0 0 50px;
  position: relative;
  z-index: 1;
}
.main .banner {
  padding: 50px 0;
  position: relative;
  background: linear-gradient(135deg, #1b1a18 0%, #2d2b28 30%, #07badb 60%, #f9a01d 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  height: 400px;
  display: flex;
  z-index: 1;
  overflow: hidden;
}
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.main .banner::before {
  content: "";
  background: 
    radial-gradient(circle at 80% 20%, rgba(7, 186, 219, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(249, 160, 29, 0.2) 0%, transparent 50%);
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  opacity: 0.6;
  animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}
.main .banner .container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  margin: 0 50px;
  position: relative;
  z-index: 2;
}
.main .banner .item {
  flex: 0 0 60%;
}
.main .banner .item img {
  animation: transform 5s infinite;
  max-width: 400px;
}
.main .banner__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.main .banner__text h1 {
  margin: 0;
  text-align: left;
  background: linear-gradient(135deg, #ffffff 0%, #07badb 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(7, 186, 219, 0.5);
  font-weight: 700;
  z-index: 2;
  position: relative;
}
.banner-title {
  color: #f9a01d !important;
  background: linear-gradient(135deg, #ff8c00 0%, #f9a01d 50%, #ffa500 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  text-shadow: 0 0 20px rgba(249, 160, 29, 0.6), 0 0 40px rgba(249, 160, 29, 0.4) !important;
  font-weight: 700 !important;
  filter: brightness(1.2) saturate(1.3);
}
.main .banner__img {
  text-align: center;
}
.main .banner__btn a {
  position: relative;
  transition: all 0.3s ease-in-out;
  background: linear-gradient(135deg, #07badb 0%, #1095b5 50%, #f9a01d 100%);
  max-width: 300px;
  white-space: nowrap;
  font-size: 20px;
  overflow: hidden;
  width: auto;
  color: #000000;
  padding: 15px 30px;
  box-shadow: 0 8px 20px rgba(7, 186, 219, 0.4), 0 0 30px rgba(7, 186, 219, 0.2);
  animation: glowing 1300ms infinite;
  border: 2px solid rgba(255, 255, 255, 0.3);
  z-index: 2;
}
.main .banner__btn a:hover {
  background: linear-gradient(135deg, #f9a01d 0%, #1095b5 50%, #07badb 100%);
  color: #000000;
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 12px 30px rgba(249, 160, 29, 0.6), 0 0 40px rgba(249, 160, 29, 0.3);
}
.main.banner__btn a::after {
  content: "";
  position: absolute;
  width: 142px;
  height: 100%;
  top: 0;
  left: -142px;
  animation: animation-15c8vog 3s infinite ease-in-out forwards;
  filter: drop-shadow(0px 0px 5px #fff);
}
.main .games-wrap {
  padding: 75px 16px;
  box-shadow: 0 0 5px #000000;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, transparent 0%, rgba(7, 186, 219, 0.02) 50%, transparent 100%);
}
.main .games-wrap h2 {
  margin: 0 auto 70px;
}
.main .games-wrap .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  justify-content: center;
  gap: 20px;
}
.main .games-wrap .cards .card {
  background: linear-gradient(135deg, rgba(7, 186, 219, 0.1) 0%, rgba(249, 160, 29, 0.1) 100%);
  border-radius: 16px;
  padding: 24px;
  height: 200px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(7, 186, 219, 0.2);
  transition: all 0.4s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.main .games-wrap .cards .card:hover {
  transform: translateY(-10px) scale(1.02);
  background: linear-gradient(135deg, rgba(7, 186, 219, 0.2) 0%, rgba(249, 160, 29, 0.2) 100%);
  border-color: rgba(7, 186, 219, 0.5);
  box-shadow: 0 10px 30px rgba(7, 186, 219, 0.3), 0 0 20px rgba(7, 186, 219, 0.2);
}
.main .games-wrap .cards .card::before {
  content: "";
  position: absolute;
  right: -50%;
  bottom: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(7, 186, 219, 0.1) 0%, transparent 70%);
  z-index: -1;
  transition: all 0.4s ease;
}
.main .games-wrap .cards .card:hover::before {
  right: -30%;
  bottom: -30%;
}

.main .games-wrap .cards .card__title {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}
.main .games-wrap .cards .card__subtitle {
  font-size: 20px;
  font-weight: 600;
  width: 100%;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
}
.main .content {
  padding: 50px 0;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, transparent 0%, rgba(249, 160, 29, 0.02) 50%, transparent 100%);
}
.main .content p {
  margin: 15px 0;
}
.main .content img {
  display: flex;
  margin: 0 auto;
  max-width: 500px;
}
.main .payments {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.main .payments .payment {
  cursor: pointer;
  transition: filter 0.4s ease-in-out;
}
.main .payments .payment svg path {
  transition: fill 0.4s ease-in-out;
}

.footer {
  background: linear-gradient(180deg, #1095b5 0%, #0d7a94 100%);
  padding: 40px 0 25px;
  border-top: 2px solid rgba(7, 186, 219, 0.3);
  position: relative;
  z-index: 1;
  margin-top: 20px;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #07badb, #f9a01d, #07badb, transparent);
}
.footer__icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}
.footer__icon {
  font-size: 28px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}
.footer__icon:hover {
  transform: translateY(-5px) scale(1.15);
}
.footer__copyright {
  text-align: center;
}
.footer__copyright p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  margin: 0;
  line-height: 1.6;
}
.footer p {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.faq-section {
  margin: 50px 0 20px 0;
  padding: 40px 0 20px 0;
  position: relative;
}
.faq-section h2 {
  margin-bottom: 40px;
}
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  background: linear-gradient(135deg, rgba(7, 186, 219, 0.1) 0%, rgba(249, 160, 29, 0.1) 100%);
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid rgba(7, 186, 219, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.faq-item:hover {
  border-color: rgba(7, 186, 219, 0.4);
  box-shadow: 0 5px 20px rgba(7, 186, 219, 0.2);
}
.faq-item.active {
  border-color: rgba(249, 160, 29, 0.5);
  box-shadow: 0 5px 25px rgba(249, 160, 29, 0.3);
}
.faq-question {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
.faq-question:hover {
  background: rgba(7, 186, 219, 0.05);
}
.faq-item.active .faq-question {
  background: rgba(249, 160, 29, 0.1);
}
.faq-icon {
  font-size: 24px;
  flex-shrink: 0;
}
.faq-question h3 {
  flex: 1;
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  padding: 0;
  padding-left: 0;
}
.faq-question h3::before {
  display: none;
}
.faq-toggle {
  font-size: 28px;
  font-weight: 300;
  color: #07badb;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 186, 219, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  background: rgba(249, 160, 29, 0.3);
  color: #f9a01d;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  padding: 0 25px;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 25px 25px;
}
.faq-answer p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
  padding-top: 15px;
}
.faq-answer strong {
  color: #07badb;
}

.container {
  max-width: 90vw;
  margin: 0 auto;
  padding: 0 16px;
}

@media (max-width: 768px) {
  h1 {
    margin: 20px 0;
    font-size: 30px;
  }
  h2 {
    font-size: 24px;
    margin: 15px 0;
  }
  h3 {
    font-size: 20px;
    margin: 10px 0;
  }
  .container {
    max-width: 100%;
  }
  .btn {
    padding: 10px 15px;
  }
  .header .container {
    justify-content: center;
    gap: 15px;
    flex-direction: column;
    gap: 20px;
  }
  .header .container .logo {
    flex: auto;
  }
  .header .container .logo img {
    width: 120px;
  }
  .main {
    padding: 0 0 30px;
  }
  .main .banner {
    height: auto;
    min-height: auto;
    padding: 40px 0;
    background-size: cover;
  }
  .main .banner::after {
    display: none;
  }
  .main .banner .container {
    gap: 25px;
    flex-direction: column;
    z-index: 3;
    padding: 20px 16px;
    margin: 0;
  }
  .main .banner__img {
    max-width: 250px;
    margin: 0 auto;
  }
  .banner__img.item {
    flex: 0 0 auto !important;
    order: -1;
    margin-bottom: 10px;
  }
  .banner__img.item div {
    width: 150px !important;
    height: 150px !important;
    animation: rotate 10s linear infinite !important;
  }
  .banner__img.item div div {
    font-size: 50px !important;
  }
  .main .banner .item {
    flex: 1 1 auto;
  }
  .main .banner .banner__text.item {
    order: 1;
    text-align: center;
    padding: 0;
  }
  .main .banner .banner__text.item h1 {
    text-align: center !important;
    font-size: 24px !important;
    margin-bottom: 15px !important;
    line-height: 1.3 !important;
  }
  .main .banner .banner__text.item p {
    font-size: 16px !important;
    margin: 10px 0 20px !important;
  }
  .main .banner .banner__btn {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .main .banner .banner__btn a {
    max-width: 100%;
    width: 100%;
    font-size: 16px !important;
    padding: 12px 20px !important;
  }
  .main .banner .item img {
    max-width: 100%;
  }
  .main .games-wrap {
    padding: 45px 0;
  }
  .main .games-wrap h2 {
    margin: 0 auto 30px;
  }
  .main .games-wrap .game-item {
    width: 300px;
    height: 300px;
    margin: 0 auto;
  }
  .main .games-wrap .game-item:not(:last-child) {
    margin-bottom: 50px;
  }
  .main .games-wrap .game-item_play {
    margin-bottom: 128px;
  }
  .main .content {
    padding: 30px 0;
  }
  .main .content img {
    max-width: 100%;
  }
  .main .payments {
    padding: 0 16px;
    gap: 10px;
    justify-content: space-around;
  }
  .main .payments svg {
    height: 30px;
  }
  .footer {
    padding: 30px 0 20px;
    margin-top: 20px;
  }
  .footer__icons {
    gap: 15px;
    margin-bottom: 20px;
  }
  .footer__icon {
    font-size: 24px;
  }
  .footer__copyright p {
    font-size: 12px;
  }
  .faq-section {
    margin: 30px 0;
    padding: 30px 0;
  }
  .faq-section h2 {
    margin-bottom: 25px;
    font-size: 24px;
  }
  .faq-question {
    padding: 15px 20px;
    gap: 12px;
  }
  .faq-question h3 {
    font-size: 18px;
  }
  .faq-icon {
    font-size: 20px;
  }
  .faq-toggle {
    font-size: 24px;
    width: 25px;
    height: 25px;
  }
  .faq-item.active .faq-answer {
    padding: 0 20px 20px;
  }
  .faq-answer p {
    font-size: 14px;
  }
}
@keyframes glowing {
  0% {
    box-shadow: 0 0 5px #4d4d4d;
  }
  50% {
    box-shadow: 0 0 20px #07badb, 0 0 30px rgba(7, 186, 219, 0.5);
  }
  100% {
    box-shadow: 0 0 5px #4d4d4d;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
strong {
  color: #07badb;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(7, 186, 219, 0.3);
}
.content {
  position: relative;
}

