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

html,
body,
div,
span,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
img,
i,
ol,
ul,
li,
form,
label,
main,
footer,
header,
nav,
section {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  text-size-adjust: none;
  scroll-behavior: smooth;
}

footer,
header,
nav,
section,
main {
  display: block;
}

ol,
ul {
  list-style: none;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
}

input,
textarea,
button,
select {
  font-family: inherit;
}

a {
  text-decoration: none;
}

button {
  border: transparent;
  cursor: pointer;
}

html {
  font-size: 16px;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  html {
    font-size: 14px;
  }
}
@media (max-width: 767.98px) {
  html {
    font-size: 14px;
  }
}

body {
  color: #d9d9d9;
  line-height: 1.4;
  min-height: 100vh;
  background-color: #0a1c1a;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-direction: column;
  flex-wrap: nowrap;
  font-family: "Sora", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  max-width: 76rem;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto;
}

main {
  position: relative;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  padding: 14px 0;
  background: linear-gradient(90deg, #39ff14 0%, #d600ff 100%);
  border-radius: 8px;
  color: #0a1c1a;
  box-shadow: 0 0 12px rgba(57, 255, 20, 0.6);
  transition: all 0.3s ease-in-out;
  animation: neon-glow 1.5s infinite;
}
@media (hover: hover) {
  .btn:hover {
    box-shadow: 0 0 18px rgba(57, 255, 20, 0.8);
    transform: scale(1.02);
  }
}

@keyframes neon-glow {
  0% {
    box-shadow: 0 0 5px rgba(57, 255, 20, 0.5), 0 0 10px rgba(214, 0, 255, 0.5);
  }
  50% {
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.8), 0 0 20px rgba(214, 0, 255, 0.8);
  }
  100% {
    box-shadow: 0 0 5px rgba(57, 255, 20, 0.5), 0 0 10px rgba(214, 0, 255, 0.5);
  }
}

.hero {
  padding: 3rem 0;
  background: linear-gradient(
      180deg,
      rgba(10, 28, 26, 0.8) 0%,
      rgba(27, 60, 52, 0.8) 100%
    ),
    url("../img/bg-new.webp") no-repeat center/cover;
}
@media (max-width: 767.98px) {
  .hero {
    padding: 1rem 0;
  }
}
.hero__heading {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 3.5rem;
  font-weight: 800;
  text-shadow: 0 0 12px rgba(57, 255, 20, 0.7);
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .hero__heading {
    font-size: 2.5rem;
  }
}
@media (max-width: 767.98px) {
  .hero__heading {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }
}
.hero__heading span {
  color: #39ff14;
}
.hero__subheading {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 300;
  color: #fff;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .hero__subheading {
    font-size: 1.125rem;
  }
}
@media (max-width: 767.98px) {
  .hero__subheading {
    font-size: 1rem;
  }
}

.features {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  justify-items: center;
}
@media (max-width: 767.98px) {
  .features {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    gap: 0.5rem;
  }
}
.feature {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  background: #1b3c34;
  border-radius: 12px;
  border: 1px solid #d600ff;
  box-shadow: 0 0 10px rgba(214, 0, 255, 0.3);
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
  .feature:hover {
    animation: neon-glow 1.5s infinite;
    transform: scale(1.05);
  }
}
@media (max-width: 767.98px) {
  .feature {
    text-align: center;
    width: 30%;
    padding: 0.5rem;
  }
}
.feature__icon {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  filter: brightness(1.3);
}
@media (max-width: 767.98px) {
  .feature__icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.feature span {
  font-weight: 600;
  color: #d9d9d9;
}
@media (max-width: 767.98px) {
  .feature span {
    font-size: 0.7rem;
  }
}
.casino-list {
  padding: 2rem 0;
}
.casino-list__items {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 1.5rem;
}
.casino-list__item {
  width: 100%;
  padding: 1rem;
  background: #1b3c34;
  border-radius: 12px;
  border: 1px solid #ff6d00;
  box-shadow: 0 0 8px rgba(255, 109, 0, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
  .casino-list__item:hover {
    box-shadow: 0 0 12px rgba(255, 109, 0, 0.5);
    transform: scale(1.02);
  }
}
.casino-list__item:nth-child(even) {
  background: #0a1c1a;
}
.casino-list__item--featured {
  position: relative;
}

.casino-list__item--featured::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: -23px;
  left: 86px;
  width: 170px;
  height: 40px;
  background: url("../img/best.webp") no-repeat center/contain;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .casino-list__item--featured::before {
    left: 65px;
  }
}
@media (max-width: 767.98px) {
  .casino-list__item {
    flex-wrap: wrap;
    padding: 0;
    border: 1px solid #ff6d00;
    border-radius: 12px;
  }
  .casino-list__item::before {
    top: -17px;
    left: 10px;
    width: 120px;
    height: 28px;
    z-index: 2;
  }
}
.casino-list__rank {
  display: block;
  width: 3rem;
  height: 3rem;
  color: #d9d9d9;
  font-size: 1.5rem;
  line-height: 120%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  border-radius: 50%;
  background: #d600ff;
  box-shadow: 0 0 8px rgba(214, 0, 255, 0.5);
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .casino-list__rank {
    width: 2rem;
    height: 2rem;
  }
}
@media (max-width: 767.98px) {
  .casino-list__rank {
    display: none;
  }
}
.casino-list__payment-methods {
  margin-top: 1rem;
}
.casino-list__payment-methods img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.3);
}
@media (max-width: 767.98px) {
  .casino-list {
    padding-top: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .casino-list__item--featured .casino-list__block--brand {
    max-width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 1rem;
    justify-content: space-between;
    border-color: transparent;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .casino-list__item--featured .casino-list__block--brand::after {
    content: "";
    position: absolute;
    left: -1px;
    right: 0;
    bottom: 0;
    width: calc(100% + 2px);
    height: 1px;
    display: block;
    background: linear-gradient(
      260.52deg,
      #39ff14 -4.98%,
      #d600ff 48.42%,
      #ff6d00 96.9%
    );
  }
}

.casino-list__block--brand {
  position: relative;
  max-width: 260px;
  margin-left: 1rem;
  width: 100%;
  padding: 10px;
  background: #0a1c1a;
  border: 1px solid #39ff14;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0.5rem;
  box-shadow: 0 0 8px rgba(57, 255, 20, 0.3);
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .casino-list__block--brand {
    max-width: 200px;
  }
}
@media (max-width: 767.98px) {
  .casino-list__block--brand {
    max-width: 100%;
    margin-left: 0;
    border: 0;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 1rem;
    justify-content: space-between;
    border-color: transparent;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .casino-list__block--brand::after {
    content: "";
    position: absolute;
    left: -1px;
    right: 0;
    bottom: 0;
    width: calc(100% + 2px);
    height: 1px;
    display: block;
    background: #39ff14;
  }
}

.casino-list__block--offer {
  position: relative;
  max-width: 200px;
  width: 100%;
  flex-shrink: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0.5rem;
}
.casino-list__block--offer span:nth-child(2) {
  font-size: 2rem;
  font-weight: 600;
  color: #39ff14;
  text-shadow: 0 0 8px rgba(57, 255, 20, 0.5);
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .casino-list__block--offer span:nth-child(2) {
    font-size: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .casino-list__block--offer span:nth-child(2) {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .casino-list__block--offer {
    max-width: 130px;
  }
}
@media (max-width: 767.98px) {
  .casino-list__block--offer {
    max-width: 50%;
    gap: 0;
  }
}

.casino-list__block--details {
  position: relative;
  flex-grow: 1;
  padding: 0 1rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .casino-list__block--details {
    padding: 0.5rem 1rem;
  }
}
.casino-list__block--details li {
  font-weight: 500;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.5rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .casino-list__block--details li span {
    font-size: 1rem;
  }
}
@media (max-width: 767.98px) {
  .casino-list__block--details li:not(:last-child) {
    margin-bottom: 0.2rem;
  }
  .casino-list__block--details li span {
    font-size: 0.8rem;
  }
}
.casino-list__block--details img {
  width: 1rem;
  height: 1rem;
  object-fit: contain;
  filter: brightness(1.3);
}
.casino-list__block--details:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 125px;
  background: linear-gradient(
    90deg,
    rgba(214, 0, 255, 0) 0%,
    #d600ff 50.31%,
    rgba(214, 0, 255, 0) 100%
  );
}
.casino-list__block--details:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 125px;
  background: linear-gradient(
    90deg,
    rgba(214, 0, 255, 0) 0%,
    #d600ff 50.31%,
    rgba(214, 0, 255, 0) 100%
  );
}
@media (max-width: 767.98px) {
  .casino-list__block--details {
    max-width: 50%;
    padding: 1rem;
  }
  .casino-list__block--details:after {
    display: none;
  }
  .casino-list__block--details:before {
    top: 0;
    transform: unset;
    height: 100%;
  }
}

.casino-list__block--action {
  position: relative;
  z-index: 1;
  max-width: 270px;
  width: 100%;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0.5rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .casino-list__block--action {
    max-width: 180px;
    padding: 0 0.5rem;
  }
}
@media (max-width: 767.98px) {
  .casino-list__block--action {
    max-width: 100%;
    padding: 1rem;
  }
  .casino-list__block--action::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
      90deg,
      rgba(214, 0, 255, 0) 0%,
      #d600ff 50.31%,
      rgba(214, 0, 255, 0) 100%
    );
  }
}

.casino-list__payment-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
}

.logo {
  width: 132px;
  height: 54px;
}
.logo__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rating {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0.5rem;
}
.rating__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.5rem;
}
@media (max-width: 767.98px) {
  .rating__inner {
    flex-direction: column;
  }
}
.rating__img {
  width: 60px;
  height: 10px;
  object-fit: cover;
  filter: brightness(1.3);
}
.rating__reviews {
  font-weight: 600;
  color: #d9d9d9;
  font-size: 0.8rem;
}
.rating__text {
  font-weight: 600;
  font-size: 1rem;
  color: #ff6d00;
}
@media (max-width: 767.98px) {
  .rating {
    flex-direction: column;
  }
}

.casino-list__divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(214, 0, 255, 0) 0%,
    #d600ff 50.31%,
    rgba(214, 0, 255, 0) 100%
  );
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

th,
td {
  padding: 12px;
  text-align: left;
  border: 1px solid #ddd;
}

@media screen and (max-width: 600px) {
  table {
    display: block;
    overflow-x: auto;
  }
  th,
  td {
    font-size: 14px;
    padding: 8px;
  }
  th {
    min-width: 120px;
  }
  td {
    word-wrap: break-word;
  }
}
.content {
  padding: 2rem 0;
}
.content__main-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .content__main-title {
    font-size: 2.25rem;
  }
}
@media (max-width: 767.98px) {
  .content__main-title {
    font-size: 1.5rem;
  }
}
.content__title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .content__title {
    font-size: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .content__title {
    font-size: 1.125rem;
  }
}
.content__subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .content__subtitle {
    font-size: 1.125rem;
  }
}
@media (max-width: 767.98px) {
  .content__subtitle {
    font-size: 1rem;
  }
}
.content__text {
  margin-bottom: 1rem;
}
.content__list {
  margin-bottom: 1rem;
  list-style: disc;
  padding-left: 1.5rem;
}
.content__list li {
  margin-bottom: 0.5rem;
}
.content__table {
  margin-bottom: 1rem;
}
.content__link {
  font-weight: 900;
  color: #39ff14;
  word-break: break-all;
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
  .content__link:hover {
    color: #ffffff;
  }
}

.footer {
  padding: 2rem 0;
  border-top: 5px solid #1b3c34;
}
.footer__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 3rem;
}

.logos {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1rem;
}
@media (max-width: 767.98px) {
  .logos {
    flex-wrap: wrap;
  }
}
.logos__link {
  padding: 0.5rem;
  border-radius: 8px;
}
.logos__link:nth-child(1) {
  width: 100px;
  height: 100px;
}
.logos__link:nth-child(2) {
  width: 150px;
  height: 50px;
  background-color: #39ff14;
}
.logos__link:nth-child(3) {
  background-color: #39ff14;
  width: 150px;
  height: 50px;
}
.logos__link:nth-child(4) {
  background-color: #39ff14;
  width: 150px;
  height: 50px;
}
.logos__link:nth-child(5) {
  width: 150px;
  height: 50px;
  background-color: #39ff14;
}
.logos__link img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.links {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1rem;
}
@media (max-width: 767.98px) {
  .links {
    flex-wrap: wrap;
  }
}
.links__link {
  color: #39ff14;
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
  .links__link:hover {
    color: #fff;
  }
}

.disclaimer__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .disclaimer__title {
    font-size: 1.125rem;
  }
}
@media (max-width: 767.98px) {
  .disclaimer__title {
    font-size: 1rem;
  }
}
.disclaimer__text:not(:last-child) {
  margin-bottom: 0.5rem;
}
