@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
***/
@import url(https://fonts.googleapis.com/css?family=Noto+Sans:100,200,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;
}

input,
textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

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

:where(pre) {
  all: revert;
}

::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

::marker {
  content: initial;
}

:where([hidden]) {
  display: none;
}

: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;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
}

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

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background: #fff;
}

p {
  line-height: 150%;
}

h1 {
  text-align: center;
}

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

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: #0a196c;
  font-weight: 700;
}

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

.header {
  width: 100%;
  z-index: 99;
  padding: 10px 0;
  background-color: #fff;
  box-shadow: 0 0 10px #e0e0e0;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .container .logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header .container .logo img {
  width: 170px;
  height: auto;
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 16px;
}

.main {
  height: 100%;
  flex: 1 1 auto;
  padding: 30px 0;
}
.main .banner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.main .banner__img {
  flex: 0 0 30%;
}
.main .banner__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.main .banner__content h1 {
  font-size: 68px;
  font-weight: 700;
  letter-spacing: -1.36px;
  line-height: 100%;
  text-align: center;
}
.main .banner__content p {
  font-size: 20px;
}
.main .cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 0;
}
.main .cards__nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.main .cards__nav .nav__item {
  border-radius: 20px;
  padding: 12px;
  background-color: #fff;
  border: 1px solid #333;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.main .cards__nav .nav__item:hover {
  background-color: #3cb371;
}
.main .cards__nav .nav__item.active {
  color: #fff;
  background-color: #3cb371;
  border: 1px solid #3cb371;
}
.main .cards .cards__empty {
  background-color: gray;
  color: #fff;
  border-radius: 20px;
  padding: 12px;
  display: flex;
  justify-content: center;
}
.main .cards__wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.main .cards__wrapper .card {
  display: grid;
  grid-template-columns: 0.5fr 1fr 1fr 0.5fr;
  align-items: center;
  gap: 1rem;
  border-radius: 10px;
  background-color: #eeeeee;
  color: #000;
  overflow: hidden;
  border: 1px solid #fff;
  min-height: 150px;
}
.main .cards__wrapper .card__img {
  background-color: #111;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.main .cards__wrapper .card__img .card__number {
  top: 10px;
  left: 10px;
  position: absolute;
  width: 28px;
  height: 28px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  z-index: 98;
}
.main .cards__wrapper .card__img .casino__type {
  position: absolute;
  top: 15px;
  left: 23px;
  background-color: #3cb371;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 5px 3px 17px;
  border-radius: 3px;
  text-transform: uppercase;
}
.main .cards__wrapper .card__img img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}
.main .cards__wrapper .card__bonus {
  padding: 20px 0;
}
.main .cards__wrapper .card__bonus .card__title {
  font-size: 22px;
  font-weight: 700;
}
.main .cards__wrapper .card .card__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 14px;
  padding: 0 0 0 25px;
  list-style: none;
}
.main .cards__wrapper .card .card__list li {
  position: relative;
}
.main .cards__wrapper .card .card__list li::before {
  content: "";
  position: absolute;
  top: 4px;
  left: -20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  background: url("../img/vector.svg");
}
.main .cards__wrapper .card__btn {
  padding: 0 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.main .cards__wrapper .card__btn .btn {
  display: flex;
  justify-content: space-between;
  text-align: center;
  align-items: center;
  width: 100%;
  background-color: #32f01d;
}
.main .cards__wrapper .card__btn .btn span {
  flex: 1;
}
.main .cards__wrapper .card__btn .btn:hover {
  background-color: pink;
}
.main .cards__wrapper .card__btn .rate {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.main .cards__wrapper .card__btn .rate .stars {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.main .cards__wrapper .card__btn .rate .stars img {
  width: 20px;
}
.main .cards__wrapper .card:nth-child(1) {
  border: 2px solid rgb(255, 255, 255);
}
.main .cards__wrapper .card:nth-child(1) .card__img .card__number {
  background-color: rgb(0, 255, 8);
}
.main .cards__wrapper .card:nth-child(2) {
  border: 2px solid rgb(255, 255, 255);
}
.main .cards__wrapper .card:nth-child(2) .card__img .card__number {
  background-color: rgb(0, 255, 8);
}
.main .cards__wrapper .card:nth-child(3) {
  border: 2px solid rgb(255, 255, 255);
}
.main .cards__wrapper .card:nth-child(3) .card__img .card__number {
  background-color: rgb(0, 255, 8);
}
.main .content p {
  margin: 15px 0;
}
.main .content img {
  display: flex;
  margin: 0 auto;
  max-width: 700px;
}
.main .payments {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 5rem;
       column-gap: 5rem;
  row-gap: 2rem;
  max-width: 60vw;
  padding: 22px 28px;
  background-color: #142245;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  margin: 30px auto 0;
}
.main .payments .payment__item img {
  height: 32px;
}

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

.footer {
  padding: 20px 0;
  background-color: #797777;
  color: #ffffff;
}
.footer img {
  max-width: 100px;
}
.footer .container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.footer__icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  border: 1px solid #fff;
  padding: 15px;
}
.footer__icons img {
  height: 20px;
}

@media (max-width: 768px) {
  body {
    background-size: auto;
  }
  table {
    display: block;
  }
  h1 {
    margin: 20px 0;
    font-size: 30px;
    text-align: center;
  }
  h2 {
    font-size: 24px;
    margin: 15px 0;
  }
  h3 {
    font-size: 20px;
    margin: 10px 0;
  }
  .container {
    max-width: 100%;
  }
  .header .container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .header .container .logo {
    flex: none;
  }
  .header .container .auth {
    gap: 10px;
  }
  .header .container .auth .btn {
    padding: 8px 16px;
    font-weight: 500;
    font-size: 14px;
  }
  .main .banner {
    flex-direction: column;
    gap: 1rem;
  }
  .main .banner__content h1 {
    font-size: 40px;
    text-align: center;
  }
  .main .banner__content p {
    font-size: 18px;
  }
  .main .banner__img {
    flex: auto;
    max-width: 50%;
    position: relative;
  }
  .main .cards__wrapper .card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .main .cards__wrapper .card__bonus {
    padding: 0 15px;
  }
  .main .cards__wrapper .card__bonus .card__list {
    gap: 0.3rem;
  }
  .main .cards__wrapper .card .card__list {
    padding: 0 16px 0 28px;
  }
  .main .cards__wrapper .card__btn {
    padding: 0 16px 16px 16px;
    flex-direction: column-reverse;
  }
  .main .content img {
    max-width: 100%;
  }
  .main .payments {
    max-width: 100%;
    gap: 2rem;
  }
  .footer .container {
    flex-direction: column;
    gap: 20px;
  }
}

@keyframes blickBtn {
  0% {
    transform: translate(-200%, -25%) rotate(20deg);
  }
  20% {
    transform: translate(250%, -25%) rotate(20deg);
  }
  to {
    transform: translate(250%, -25%) rotate(20deg);
  }
}
@keyframes glowing {
  0% {
    box-shadow: 0 0 5px #4d4d4d;
  }
  50% {
    box-shadow: 0 0 20px #f2ff44;
  }
  100% {
    box-shadow: 0 0 5px #4d4d4d;
  }
}

/* ===== DATE ===== */
.date {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 16px auto;
  padding: 10px 20px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-left: 4px solid #3b82f6;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(59, 130, 246, 0.15);
}

.date img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.75;
  filter: invert(36%) sepia(98%) saturate(500%) hue-rotate(200deg);
}

.updated {
  display: flex;
  align-items: center;
  gap: 5px;
}

.updated p {
  margin: 0;
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.updated time {
  font-size: 13px;
  color: #1e40af;
  font-weight: 700;
  white-space: nowrap;
}
