*,
*: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: #ffffff;
  line-height: 1.4;
  min-height: 100vh;
  background-color: #1c2526;
  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%;
}

.banner {
  background: #ff4500;
  padding: 0.5rem 0;
  text-align: center;
}
.banner__container {
  max-width: 76rem;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto;
}
.banner__text {
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
}

.intro__container,
.casino-catalog__container,
.info-section__container,
.site-footer__container {
  max-width: 76rem;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto;
}

main {
  position: relative;
}

.action-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, #ffd700 0%, #1e90ff 100%);
  border-radius: 8px;
  color: #1c2526;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
  transition: all 0.3s ease-in-out;
  animation: glow-effect 1.5s infinite;
}
@media (hover: hover) {
  .action-btn:hover {
    box-shadow: 0 0 18px rgba(255, 215, 0, 0.8);
    transform: scale(1.02);
  }
}

@keyframes glow-effect {
  0% {
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.5), 0 0 10px rgba(30, 144, 255, 0.5);
  }
  50% {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8),
      0 0 20px rgba(30, 144, 255, 0.8);
  }
  100% {
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.5), 0 0 10px rgba(30, 144, 255, 0.5);
  }
}

.intro {
  padding: 3rem 0;
  background: linear-gradient(
      180deg,
      rgb(30 144 255 / 64%) 0%,
      rgba(46, 66, 78, 0.8) 100%
    ),
    url(../img/bg1.webp) no-repeat center / cover;
}
@media (max-width: 767.98px) {
  .intro {
    padding: 1rem 0;
  }
}
.intro__title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 3.5rem;
  font-weight: 800;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .intro__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 767.98px) {
  .intro__title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }
}
.intro__title span {
  color: #ffd700;
}
.intro__subtitle {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 300;
  color: #ffffff;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .intro__subtitle {
    font-size: 1.125rem;
  }
}
@media (max-width: 767.98px) {
  .intro__subtitle {
    font-size: 1rem;
  }
}

.highlights {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  justify-items: center;
}
@media (max-width: 767.98px) {
  .highlights {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    gap: 0.5rem;
  }
}
.highlight {
  max-width: 180px;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.6rem;
  background: #2e424e;
  border-radius: 12px;
  border: 1px solid #1e90ff;
  box-shadow: 0 0 10px rgba(30, 144, 255, 0.3);
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
  .highlight:hover {
    animation: glow-effect 1.5s infinite;
    transform: scale(1.05);
  }
}
@media (max-width: 767.98px) {
  .highlight {
    text-align: center;
    width: 30%;
    padding: 0.5rem;
  }
}
.highlight__icon {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  filter: brightness(1.3);
}
@media (max-width: 767.98px) {
  .highlight__icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.highlight span {
  font-weight: 600;
  color: #ffffff;
}
@media (max-width: 767.98px) {
  .highlight span {
    font-size: 0.7rem;
  }
}

.casino-catalog {
  padding: 2rem 0;
}
.casino-catalog__list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 1.5rem;
}
.casino-catalog__entry {
  width: 100%;
  padding: 1rem;
  background: #2e424e;
  border-radius: 12px;
  border: 1px solid #ff4500;
  box-shadow: 0 0 8px rgba(255, 69, 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-catalog__entry:hover {
    box-shadow: 0 0 12px rgba(255, 69, 0, 0.5);
    transform: scale(1.02);
  }
}
.casino-catalog__entry:nth-child(even) {
  background: #1c2526;
}
.casino-catalog__entry--top {
  position: relative;
}
@media (max-width: 767.98px) {
  .casino-catalog__entry {
    flex-wrap: wrap;
    padding: 0;
    border: 1px solid #ff4500;
    border-radius: 12px;
  }
  .casino-catalog__entry::before {
    top: -17px;
    left: 10px;
    width: 120px;
    height: 28px;
    z-index: 2;
  }
}
.casino-catalog__position {
  display: block;
  width: 4rem;
  height: 4rem;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  line-height: 120%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  border-radius: 50%;
  background: #1e90ff;
  box-shadow: 0 0 8px rgba(30, 144, 255, 0.5);
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .casino-catalog__position {
    width: 2rem;
    height: 2rem;
  }
}
@media (max-width: 767.98px) {
  .casino-catalog__position {
    display: none;
  }
}
.casino-catalog__payment-options {
  margin-top: 1rem;
}
.casino-catalog__payment-options img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.3);
}
@media (max-width: 767.98px) {
  .casino-catalog {
    padding-top: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .casino-catalog__entry--top .casino-catalog__segment--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-catalog__entry--top .casino-catalog__segment--brand::after {
    content: "";
    position: absolute;
    left: -1px;
    right: 0;
    bottom: 0;
    width: calc(100% + 2px);
    height: 1px;
    display: block;
    background: linear-gradient(
      260.52deg,
      #ffd700 -4.98%,
      #1e90ff 48.42%,
      #ff4500 96.9%
    );
  }
}

.casino-catalog__segment--brand {
  position: relative;
  max-width: 200px;
  margin-left: 1rem;
  width: 100%;
  padding: 10px;
  background: #1c2526;
  border: 1px solid #ffd700;
  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(255, 215, 0, 0.3);
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .casino-catalog__segment--brand {
    max-width: 200px;
  }
}
@media (max-width: 767.98px) {
  .casino-catalog__segment--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-catalog__segment--brand::after {
    content: "";
    position: absolute;
    left: -1px;
    right: 0;
    bottom: 0;
    width: calc(100% + 2px);
    height: 1px;
    display: block;
    background: #ffd700;
  }
}

.casino-catalog__segment--promotion {
  position: relative;
  width: 100%;
  flex-shrink: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0.5rem;
  padding: 0 1rem;
}
.casino-catalog__segment--promotion span {
  font-size: 1rem;
  font-weight: 600;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .casino-catalog__segment--promotion span {
    font-size: 1rem;
  }
}
@media (max-width: 767.98px) {
  .casino-catalog__segment--promotion span {
    font-size: 0.8rem;
  }
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .casino-catalog__segment--promotion {
    max-width: 130px;
  }
}
@media (max-width: 767.98px) {
  .casino-catalog__segment--promotion {
    max-width: 50%;
    gap: 0;
  }
}

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

.casino-catalog__segment--cta {
  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-catalog__segment--cta {
    max-width: 180px;
    padding: 0 0.5rem;
  }
}
@media (max-width: 767.98px) {
  .casino-catalog__segment--cta {
    max-width: 100%;
    padding: 1rem;
  }
  .casino-catalog__segment--cta::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
      90deg,
      rgba(30, 144, 255, 0) 0%,
      #1e90ff 50.31%,
      rgba(30, 144, 255, 0) 100%
    );
  }
}

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

.brand-logo {
  width: 120px;
  height: 40px;
}
.brand-logo__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.score {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0.5rem;
}
.score__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.5rem;
}
@media (max-width: 767.98px) {
  .score__wrapper {
    flex-direction: column;
  }
}
.score__stars {
  width: 60px;
  height: 10px;
  object-fit: cover;
  filter: brightness(1.3);
}
.score__value {
  font-weight: 600;
  font-size: 1rem;
  color: #ff4500;
}
@media (max-width: 767.98px) {
  .score {
    flex-direction: column;
  }
}

.casino-catalog__separator {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(30, 144, 255, 0) 0%,
    #1e90ff 50.31%,
    rgba(30, 144, 255, 0) 100%
  );
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

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

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

.info-section {
  padding: 2rem 0;
}
.info-section__heading {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .info-section__heading {
    font-size: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .info-section__heading {
    font-size: 1.125rem;
  }
}
.info-section__subheading {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .info-section__subheading {
    font-size: 1.125rem;
  }
}
@media (max-width: 767.98px) {
  .info-section__subheading {
    font-size: 1rem;
  }
}
.info-section__text {
  margin-bottom: 1rem;
}
.info-section__features {
  margin-bottom: 1rem;
  list-style: disc;
  padding-left: 15px;
}
.info-section__features li {
  margin-bottom: 0.5rem;
}
.info-section__features li::marker {
  color: #ffd700;
}
.info-section__link {
  font-weight: 900;
  color: #ffd700;
  word-break: break-all;
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
  .info-section__link:hover {
    color: #ffffff;
  }
}

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

.badges {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1rem;
}
@media (max-width: 767.98px) {
  .badges {
    flex-wrap: wrap;
  }
}
.badges__link {
  padding: 0.5rem;
  border-radius: 12px;
}
.badges__link:nth-child(1) {
  width: 100px;
  height: 100px;
}
.badges__link:nth-child(2) {
  width: 140px;
  height: 70px;
  background-color: #1e90ff;
}
.badges__link:nth-child(3) {
  background-color: #1e90ff;
  width: 140px;
  height: 70px;
}
.badges__link:nth-child(4) {
  background-color: #1e90ff;
  width: 140px;
  height: 70px;
}
.badges__link:nth-child(5) {
  width: 140px;
  height: 70px;
  background-color: #1e90ff;
}
.badges__link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.notice__text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
