*,
*: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%;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  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;
}

.site {
  font-family: "Poppins", Arial, sans-serif;
  background: #0a1e3a;
  color: #f4f4f9;
  margin: 0;
  padding: 0;
}

.topbar {
  background: #1a2b4b;
  padding: 0.9rem 0;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.topbar__wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
}

.topbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f4f4f9;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.8px;
}

.topbar__logo img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 2px 10px rgba(212, 160, 23, 0.3));
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.banner {
  padding: 80px 0;
  text-align: center;
  background: url("img/bg-new.webp") no-repeat center center/cover;
}

.banner__inner {
  background: rgba(10, 30, 58, 0.85);
  padding: 2rem;
  border-radius: 15px;
}

.banner__heading {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
  background: linear-gradient(90deg, #d4a017 0%, #1a5e4b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.banner__text {
  color: #e0e6f0;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.casino-list {
  padding-top: 20px;
}

.casino-list__title {
  font-size: 1.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #d4a017;
}

.casino-list__grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.casino-card {
  background: #1c2a4a;
  border-radius: 12px;
  padding: 1.2rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border: 2px solid #2e3b5b;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}

.casino-card--animated:hover,
.casino-card--animated:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.4);
}

.casino-card__highlight {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(90deg, #d4a017 20%, #1a5e4b 90%);
  color: #0a1e3a;
  font-weight: 800;
  padding: 3px 14px;
  border-radius: 10px;
  font-size: 0.85rem;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(212, 160, 23, 0.3);
}

.casino-card--gold {
  border: 3px solid #d4a017;
  background: linear-gradient(120deg, #fff5d1 0%, #f4e3a8 100%);
  color: #0a1e3a;
}

.casino-card--emerald {
  border: 3px solid #1a5e4b;
  background: linear-gradient(120deg, #2a7b5e 0%, #4ac79a 100%);
}

.casino-card--sapphire {
  border: 3px solid #3b82f6;
  background: linear-gradient(120deg, #a3c1ff 0%, #d1e3ff 100%);
}

.casino-card--ruby {
  border: 3px solid #e63946;
  background: linear-gradient(120deg, #ffccd5 0%, #ffe6e9 100%);
}

.casino-card__image {
  flex: 0 0 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.casino-card__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.casino-card__details {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.casino-card__info {
  flex: 1;
}

.casino-card__name {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  color: #0a1e3a;
}

.casino-card__bonus {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #0a1e3a;
}

.casino-card__payments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

.casino-card__payments img {
  width: 55px;
  height: 28px;
  border-radius: 4px;
  object-fit: contain;
  background: #1c2a4a;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.casino-card__action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 100px;
}

.action-btn--main {
  background: linear-gradient(90deg, #d4a017 0%, #1a5e4b 100%);
  color: #f4f4f9;
  padding: 0.8rem 1.4rem;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 8px;
  transition: filter 0.2s, box-shadow 0.2s;
  box-shadow: 0 3px 12px rgba(212, 160, 23, 0.2);
}

.action-btn--main:hover,
.action-btn--main:focus {
  filter: brightness(1.15);
  box-shadow: 0 4px 16px rgba(212, 160, 23, 0.4);
}

.action-btn--animated span {
  position: absolute;
  display: block;
  background: linear-gradient(90deg, #1a5e4b, #d4a017);
}

.action-btn--primary {
  background: linear-gradient(90deg, #3b82f6 0%, #d4a017 100%);
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.casino-card__rating {
  display: flex;
  gap: 0.3rem;
  align-items: center;
  font-size: 1.1rem;
  color: #d4a017;
  font-weight: 700;
}

.casino-card__score {
  color: #0a1e3a;
  font-size: 0.95rem;
}

.testimonials {
  margin: 2rem 0;
}

.testimonials__title {
  font-size: 1.4rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  color: #d4a017;
}

.testimonials__list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.testimonial {
  background: #1c2a4a;
  border-radius: 14px;
  padding: 1rem;
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  border: 2px solid #d4a01733;
}

.testimonial__avatar {
  background: linear-gradient(90deg, #d4a017 10%, #1a5e4b 90%);
  color: #f4f4f9;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial__text {
  color: #e0e6f0;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.testimonial__rating {
  color: #d4a017;
  font-size: 1.1rem;
}

.testimonial__meta {
  color: #a3bffa;
  font-size: 0.95rem;
}

.info-block__wrapper {
  margin: 2rem 0;
  padding: 1.5rem;
  background: linear-gradient(120deg, #1c2a4a 30%, #0a1e3a 100%);
  border-radius: 14px;
  border: 2px solid #d4a01733;
}

.info-block__title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #d4a017;
  margin-bottom: 0.8rem;
}

.info-block__desc {
  color: #e0e6f0;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.info-block__features {
  padding-left: 1rem;
  margin-bottom: 1rem;
}

.info-block__features li {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.info-block__features span {
  font-size: 1.2rem;
}

.info-block__warning {
  background: linear-gradient(90deg, #e63946 30%, #d4a017 100%);
  color: #f4f4f9;
  border-radius: 10px;
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.info-block__warning a {
  color: #f4f4f9;
  text-decoration: underline;
  font-weight: 800;
}

.bottom {
  background: linear-gradient(110deg, #0a1e3a 60%, #1c2a4a 100%);
  border-top: 3px solid #d4a01733;
  padding: 2rem 0;
}

.bottom__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.2rem;
  border-bottom: 2px solid #d4a01733;
}

.bottom__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.bottom__links a {
  color: #d4a017;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: underline;
}

.bottom__links a:hover {
  color: #3b82f6;
}

.bottom__regulators {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.bottom__reg-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid #d4a01733;
  padding: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.bottom__reg-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bottom__reg-logo:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(212, 160, 23, 0.4);
}

.bottom__brand {
  font-size: 1.4rem;
  font-weight: 800;
  color: #d4a017;
  margin: 1.5rem 0;
}

.bottom__text {
  color: #e0e6f0;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.bottom__text b {
  color: #d4a017;
  font-weight: 800;
}

.bottom__tips {
  margin-bottom: 1rem;
}

.bottom__tips li {
  color: #d4a017;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.bottom__legal {
  color: #d4a017;
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

@media (max-width: 900px) {
  .casino-card {
    flex-direction: column;
    align-items: stretch;
  }

  .casino-card__image {
    margin: 0 auto;
  }

  .casino-card__action {
    align-items: center;
  }

  .bottom__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .banner {
    padding: 20px 0;
  }
  .banner__heading {
    margin-bottom: 0;
  }
  .casino-card__image {
    flex: auto;
  }
  .casino-card {
    gap: 0.5rem;
    padding: 0.6rem;
  }
  .banner__text {
    display: none;
  }
  .banner__heading {
    font-size: 1.5rem;
  }

  .casino-card__payments {
    grid-template-columns: repeat(2, 1fr);
  }
  .casino-card--gold {
    padding-top: 3rem;
  }

  .bottom__reg-logo {
    width: 80px;
    height: 80px;
  }
  .action-btn--primary {
    display: none;
  }
  .topbar {
    padding: 0.5rem 0;
  }
  .casino-list__title {
    margin-bottom: 0.5rem;
  }
  .banner__inner {
    padding: 0.5rem;
  }
}

.legal {
  background: linear-gradient(110deg, #0a1e3a 60%, #1c2a4a 100%);

  box-shadow: 0 4px 28px rgba(212, 160, 23, 0.1), 0 1px 12px rgba(0, 0, 0, 0.15);
}

.legal .container {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.legal__title {
  font-size: 2rem;
  font-weight: 900;
  color: #d4a017;
  margin-bottom: 1.8rem;
  text-align: center;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 22px rgba(212, 160, 23, 0.2);
}

.legal__content {
  color: #e0e6f0;
  font-size: 1.13rem;
  line-height: 1.7;
  font-weight: 500;
  background: rgba(28, 42, 74, 0.87);

  padding: 2rem 1.2rem 1.5rem 1.2rem;
  box-shadow: 0 2px 10px rgba(212, 160, 23, 0.1);
}

.legal__content h2 {
  color: #d4a017;
  font-size: 1.25rem;
  font-weight: 800;
  margin: 2.1rem 0 1rem 0;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 8px rgba(212, 160, 23, 0.15);
}

.legal__content ul {
  margin: 1.1rem 0 1.1rem 1.3rem;
  padding-left: 0.5rem;
  color: #d4a017;
  font-size: 1.07rem;
  line-height: 1.6;
  list-style: disc;
}

.legal__content li {
  margin-bottom: 0.45rem;
  padding-left: 0.1em;
}

.legal__content a {
  color: #d4a017;
  text-decoration: underline;
  transition: color 0.2s;
  font-weight: 700;
}

.legal__content a:hover {
  color: #3b82f6;
}

.legal__alert {
  background: linear-gradient(90deg, #e63946 30%, #d4a017 100%);
  color: #f4f4f9;
  border-radius: 8px;
  padding: 1rem 1.2rem;
  font-size: 1.08em;
  font-weight: 800;
  margin: 2.1rem 0 0 0;
  box-shadow: 0 2px 18px rgba(230, 57, 70, 0.2);
  letter-spacing: 0.1px;
}

.legal__content b {
  color: #d4a017;
  font-weight: 900;
}

/* Responsive */
@media (max-width: 900px) {
  .legal .container {
    max-width: 98vw;
    padding: 0 0.5rem;
  }
  .legal__content {
    font-size: 1.02rem;
    padding: 1.2rem 0.6rem 1rem 0.6rem;
  }
  .legal__title {
    font-size: 1.25rem;
    margin-bottom: 1.2rem;
  }
}

@media (max-width: 600px) {
  .legal {
    padding: 1.2rem 0 1.1rem 0;
  }
  .legal__content {
    font-size: 0.97rem;
    padding: 0.7rem 0.4rem 0.6rem 0.4rem;
  }
  .legal__content h2 {
    font-size: 1.07rem;
    margin: 1.2rem 0 0.7rem 0;
  }
  .legal__alert {
    font-size: 0.97em;
    padding: 0.7rem 0.6rem;
  }
}
