@charset "UTF-8";
/***
    The new CSS reset - version 1.8.5 (last updated 14.6.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" attribute is exclud, because otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
@import url(https://fonts.googleapis.com/css?family=Noto+Sans:100,200,300,regular,500,600,700,800,900);
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

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

/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input,
textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* remove default dot (•) sign */
::marker {
  content: initial;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element */
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
}

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

body {
  min-height: 100vh;
  background: radial-gradient(50% 50% at 50% 50%, rgb(0, 207, 166), rgb(0, 0, 0));
}

p {
  line-height: 150%;
}

h1 {
  font-size: 48px;
  font-weight: 800;
  margin: 25px 0;
}

h2 {
  font-size: 32px;
  font-weight: 600;
  margin: 20px 0;
  text-align: center;
}

h3 {
  font-size: 26px;
  font-weight: 600;
  margin: 15px 0;
}

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: #233d50;
}

table {
  border-collapse: collapse;
  width: 100%;
  overflow-x: auto;
  margin: 20px 0;
  display: block;
  overflow: auto;
}
table tr td,
table tr th {
  border: 1px solid #333;
  padding: 15px;
}
table tr th {
  background-color: #f2ce74;
  color: #fff;
  font-size: 18px;
  text-align: center;
}
table tr td:hover {
  background-color: #e3e3e3;
}

.wrapper {
  display: flex;
  min-height: 100vh;
}

.header {
  position: sticky;
  width: 90px;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 99;
  background: linear-gradient(rgb(0, 0, 0), rgb(1, 52, 40));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  box-shadow: 0 0 3px rgb(230, 230, 230);
}
.header__logo {
  flex: 0 0 100px;
  max-width: 100px;
  padding: 20px;
  border-bottom: 1px solid rgb(221, 221, 221);
}
.header__icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.header__link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: all 0.2s ease-in-out;
  padding: 10px;
  border-radius: 10px;
}
.header__link:hover {
  background-color: rgba(56, 68, 91, 0.06);
}
.header__link img {
  max-width: 30px;
}
.header__link span {
  font-size: 12px;
  text-align: center;
}

.main {
  height: 100%;
  flex: 1 1 auto;
}
.main__body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.main__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 0 3px rgb(230, 230, 230);
  padding: 20px;
}
.main__header .logo {
  flex: 0 0 100px;
}
.main__center {
  flex: 1;
  padding: 50px 0;
}
.main .cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.main .cards .card {
  display: flex;
  position: relative;
  flex: 1;
  border-radius: 1.25vw;
  padding: 2.7083333333vw;
  color: #333;
}
.main .cards .card::before {
  content: "";
  padding-top: 50%;
}
.main .cards .card:nth-child(1) {
  background: url("../img/bonus-sport-desk.png") right/contain no-repeat;
  background-color: rgba(255, 34, 0, 0.3411764706);
  color: #fff;
}
.main .cards .card:nth-child(2) {
  background: url("../img/bonus-casino-desk.png") right/contain no-repeat;
  background-color: rgba(0, 207, 166, 0.275);
  color: #fff;
}
.main .cards .card__content {
  max-width: 40%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.main .cards .card__title {
  font-size: 30px;
  font-weight: 800;
}
.main .auth {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.main .auth .btn {
  display: flex;
  justify-content: center;
  padding: 10px 12px;
  font-weight: 600;
  font-size: 18px;
  border-radius: 10px;
  transition: all 0.2s ease-in-out;
}
.main .auth .btn-1 {
  border: 1px solid #ff2400;
  color: #ff2400;
}
.main .auth .btn-1:hover {
  border: 1px solid #fff;
  color: #fff;
}
.main .auth .btn-2 {
  background-color: #ff2400;
  color: #fff;
}
.main .auth .btn-2:hover {
  background-color: #ff4c00;
}
.main .flex {
  margin-bottom: 20px;
}
.main .flex img {
  transition: all 0.3s ease-in-out;
}
.main .flex img:hover {
  transform: scale(1.02);
}
.main__btn {
  width: 150px;
  display: flex;
  justify-content: center;
  padding: 10px;
  background-color: #ed9e00;
  color: #333;
  font-weight: 600;
  font-size: 18px;
  border-radius: 10px;
  transition: all 0.2s ease-in-out;
  margin: 20px 0;
}
.main__btn:hover {
  background-color: #f0af2f;
}
.main .slots img {
  transition: all 0.3s ease-in-out;
}
.main .slots img:hover {
  transform: scale(1.02);
}
.main .providers {
  padding: 50px 0;
}
.main .providers .flex {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.main .providers .flex__item {
  border-radius: 10px;
  box-shadow: 0 4px 10px 0 #e2e2e2;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  transition: transform 0.15s linear;
}
.main .providers .flex__item:hover {
  transform: scale(1.1);
  z-index: 4;
}
.main .providers .flex__item:hover .img .gamecard_links {
  opacity: 1;
  pointer-events: auto;
}
.main .providers .flex__item .img {
  width: 100%;
  height: 200px;
  position: relative;
}
.main .providers .flex__item .img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.main .providers .flex__item .img .gamecard_links {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 10px 10px 0 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-around;
  opacity: 0;
  padding: 20px 0;
  pointer-events: none;
  position: relative;
  transition: opacity 0.15s linear;
  transition-delay: 20ms;
  width: 100%;
  z-index: 2;
}
.main .providers .flex__item .img .gamecard_links .gamecard_play {
  background-color: #ed9e00;
  box-shadow: 0 3px 0 0 #ed9e00, 0 4px 4px 0 #000;
  font-size: 12px;
  height: 30px;
  padding: 0 30px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  font-weight: 700;
}
.main .providers .flex__item .img .gamecard_links .gamecard_play:hover {
  box-shadow: 0 3px 0 0 #ed9e00, 0 4px 4px 0 #000, inset 0 15px 15px -3px rgba(255, 255, 255, 0.4);
}
.main .providers .flex__item .title {
  padding: 15px 10px;
  font-size: 14px;
}
.main .content p {
  margin: 15px 0;
}
.main .content img {
  display: flex;
  margin: 0 auto;
  max-width: 500px;
}
.main .faq {
  padding: 30px 0;
}
.main .faq .checkbox {
  display: none;
}
.main .faq label {
  display: flex;
  padding: 28px 36px;
  margin: 4px 0;
  cursor: pointer;
  background: #fff;
  border-radius: 3px;
  color: #333;
  transition: ease 0.5s;
  font-size: 20px;
  font-weight: 600;
  align-items: center;
  justify-content: space-between;
}
.main .faq label::after {
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid;
  border-radius: 3px;
  margin: 0 0 0 20px;
  color: #ed9e00;
}
.main .faq .checkbox:checked + label {
  color: #ed9e00;
  margin-bottom: 0;
}
.main .faq .checkbox:checked + label:after {
  border-bottom: 7px solid;
  border-top: 0;
}
.main .faq .checkbox + label + .content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.25s ease-in, opacity 0.25s ease-in;
  background: #fff;
  border-radius: 3px;
  font-size: 14px;
}
.main .faq .checkbox:checked + label + .content {
  max-height: 1500px;
  transition: max-height 0.25s ease-out, opacity 0.25s ease-out;
  opacity: 1;
}
.main .faq .checkbox + label + .content .content__body {
  margin: 25px;
}
.main .faq__item .content .content__body ul {
  list-style: none;
  padding: 0;
}
.main .faq__item .content .content__body strong {
  font-weight: 600;
}
.main .faq__item .content .content__body img {
  max-width: 100%;
}
.main .faq__item .content .content__body .comments {
  background-color: #f2f2f0;
  padding: 20px;
  margin: 20px 0;
}

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

.footer {
  padding: 30px 0;
}
.footer .payments {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  border-top: 1px solid rgb(230, 230, 230);
  padding: 20px 0;
}
.footer .payments img {
  max-width: 100px;
}
.footer .nav {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 20px 0;
}
.footer .nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
}
.footer__list {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid #fff;
  padding: 20px 0;
}
.footer__list-title {
  font-weight: 600;
  color: #d2eeed;
}
.footer__list ul {
  padding: 10px 0 0 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__list ul li {
  color: #80858f;
  font-size: 14px;
}
.footer__list ul li a {
  transition: all 0.2s ease-in-out;
  display: block;
}
.footer__list ul li a:hover {
  transform: scale(1.12) translate(0.75rem);
}
.footer__list ul li::marker {
  color: #80858f;
}

.social {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 80px;
  z-index: 99;
}
.social img {
  border-radius: 50px;
  box-shadow: 0 0 5px #d8d8d8;
}

@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;
  }
  .header__logo {
    width: 50px;
    padding: 10px;
  }
  .main__header {
    flex-direction: column;
    gap: 10px;
  }
  .main__header .logo {
    flex: auto;
  }
  .main__center {
    padding: 20px 0;
  }
  .main .cards {
    flex-direction: column;
  }
  .main .cards .card__title {
    font-size: 16px;
  }
  .main .cards .card__desc {
    font-size: 14px;
  }
  .main .providers {
    padding: 20px 0;
  }
  .main .faq {
    padding: 20px 0;
  }
  .main .footer {
    padding: 20px 0;
  }
  .main .footer .payments {
    gap: 10px;
  }
  .main .footer .payments img {
    max-width: 50px;
  }
  .main .footer__list {
    flex-direction: column;
  }
  .container {
    max-width: 100%;
  }
  .main .content img {
    max-width: 100%;
  }
  .social {
    max-width: 50px;
  }
}
/* Стили для отзывов */
#reviews {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  color: #ffffff;
  background: transparent;
}

.review {
  margin-bottom: 20px;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.3); /* Полупрозрачный фон для отзывов */
  border-radius: 10px;
  border-left: 5px solid #4CAF50; /* Зеленая линия слева, как акцент */
}

.review p {
  font-size: 1.1em;
  line-height: 1.6;
  margin: 0;
  color: #e0e0e0; /* Светлый текст для контраста */
}

.review .author {
  margin-top: 10px;
  font-size: 1em;
  color: #c0c0c0; /* Более светлый цвет для подписи автора */
  text-align: right;
  font-style: italic;
}

/* Дополнительные элементы */
body {
  background: linear-gradient(90deg, #0e3721, #0e1e37); /* Темный градиент под стиль сайта */
  font-family: Arial, sans-serif;
}
/* Основной стиль для секции FAQ */
#faq-section {
  padding: 40px;
  background-color: rgba(0, 0, 0, 0.3); /* Полупрозрачный темный фон */
  border-radius: 10px;
  max-width: 1000px;
  margin: 20px auto;
  color: #e0e0e0; /* Цвет текста для всего блока */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5); /* Легкая тень для эффекта глубины */
}

/* Основной заголовок секции FAQ */
#faq-section h2 {
  font-size: 2em;
  color: #4CAF50; /* Зеленый цвет для заголовка */
  text-align: left;
  margin-bottom: 30px;
  border-bottom: 2px solid #4CAF50; /* Зеленая линия под заголовком */
  padding-bottom: 10px;
}

/* Заголовки вопросов */
#faq-section h3 {
  font-size: 1.5em;
  color: #4CAF50;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #4CAF50; /* Зеленая линия слева для акцента */
  padding-left: 15px;
  background-color: rgba(255, 255, 255, 0.1); /* Полупрозрачный фон */
  padding: 10px;
  border-radius: 5px;
}

/* Текст ответов */
#faq-section p {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #e0e0e0; /* Светло-серый цвет текста */
}

/* Стили для ссылок внутри ответов */
#faq-section a {
  color: #4CAF50;
  text-decoration: underline;
}

#faq-section a:hover {
  color: #ffffff;
  text-decoration: none;
}

/* Добавление теней и закругленных углов для FAQ */
#faq-section h3:hover {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4); /* Тень при наведении на вопрос */
  transition: box-shadow 0.3s ease-in-out;
}
