@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Lato:100,300,400,700,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: pointer;
}

ol,
ul,
menu {
  list-style: none;
}

img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

table {
  border-collapse: collapse;
}

html,
body {
  font-weight: 400;
  font-family: "Lato", sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background: #020816;
  color: #111;
}

.header {
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  padding: 18px 0;
  background-color: #ffffff;
  box-shadow: 0 0 5px rgba(0,0,0,0.25);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.header .logo a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.header .logo span {
  font-size: 22px;
  font-weight: 800;
  color: #002395;
  letter-spacing: 0.5px;
}

.main {
  flex: 1 1 auto;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 0;
}

.cards__wrapper {
  background: linear-gradient(90deg, #002395 0%, #ffffff 40%, #ed2939 100%);
  position: relative;
}

.card__header {
  padding: 10px 16px;
  font-size: 20px;
  color: #ffffff;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.card {
  display: flex;
  background-color: #ffffff;
  margin: 2px;
}

.card__left {
  width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 12px;
  background-color: #000000;
}

.card__left img {
  max-width: 160px;
}

.card__content {
  flex: 1 1 auto;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bonus-box {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  background-color: #e8f3ff;
  border: 1px solid #bcdcff;
  border-radius: 4px;
  padding: 16px 18px;
  text-align: center;
}

.bonus-label {
  display: block;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  color: #0d47a1;
  margin-bottom: 4px;
}

.bonus-amount {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: #002395;
}

.card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.infos-block {
  flex: 1 1 auto;
}

.infos-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  color: #111111;
}

.infos-list strong {
  font-weight: 700;
  color: #002395;
}

.rating-and-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  min-width: 150px;
}

.rating {
  font-size: 16px;
  font-weight: 800;
  color: #ff9800;
  padding: 6px 12px;
  border-radius: 999px;
  background-color: #fff5e0;
  border: 1px solid #ffcc80;
}

.btn {
  text-decoration: none;
}

.btn-2 {
  background-color: #ed2939;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  padding: 8px 18px;
  border-radius: 4px;
  transition: background-color 0.2s ease-in-out, transform 0.1s ease-in-out;
}

.btn-2:hover {
  background-color: #c81f30;
  transform: translateY(-1px);
}

.content {
  padding: 20px 0 40px;
  color: #f5f5f5;
}

.content h1,
.content h2,
.content h3 {
  color: #ffffff;
}

.content h1 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 16px;
  text-align: left;
}

.content h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 26px 0 12px;
}

.content h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 20px 0 10px;
}

.content p {
  margin: 10px 0;
  line-height: 1.6;
  font-size: 15px;
}

.content ul {
  margin: 8px 0 16px;
  padding-left: 20px;
}

.content ul li {
  position: relative;
  padding-left: 10px;
  margin-bottom: 4px;
  font-size: 15px;
}

.footer {
  padding: 20px 0;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

.footer p {
  color: #333333;
  font-size: 13px;
}

@media (max-width: 900px) {
  .card {
    flex-direction: column;
  }

  .card__left {
    width: 100%;
  }

  .card__content {
    padding: 14px 14px 18px;
  }

  .card__bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .infos-block {
    width: 100%;
  }

  .rating-and-cta {
    align-items: center;
    min-width: 0;
  }

  .rating {
    align-self: center;
  }

  .btn-2 {
    width: 100%;
    text-align: center;
  }

  .header .logo span {
    font-size: 18px;
  }

  .content h1 {
    font-size: 24px;
  }

  .content h2 {
    font-size: 20px;
  }

  .content h3 {
    font-size: 18px;
  }
}
