.ao-list {
  display: grid;
  gap: 18px;
  margin: 24px 0;
}

.ao-card {
  display: grid;
  grid-template-columns: 64px minmax(0, 1.7fr) minmax(260px, 1.2fr) 180px;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border: 1px solid #243a5a;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(93, 214, 255, 0.14), transparent 34%),
    linear-gradient(180deg, #132033 0%, #101927 100%);
  box-shadow: 0 24px 40px rgba(2, 10, 20, 0.22);
}

.ao-card__rank {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(180deg, #20d36f, #14a957);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
}

.ao-card__brand {
  display: grid;
  grid-template-columns: minmax(112px, 150px) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.ao-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 86px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.ao-card__logo a {
  display: flex;
  min-width: 100px;
  min-height: 82px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  text-decoration: none;
}

.ao-card__logo-img {
  max-width: 150px;
  max-height: 88px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.ao-card__logo-fallback {
  display: inline-flex;
  width: 88px;
  height: 78px;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #f7fbff;
  font-size: 2rem;
  font-weight: 900;
}

.ao-list--logo-boxed .ao-card__logo {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.ao-list--logo-boxed .ao-card__logo-fallback {
  border-radius: 16px;
  background: rgba(124, 227, 255, 0.14);
}

.ao-card__badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.55rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(93, 214, 255, 0.14);
  color: #7ce3ff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ao-card__title {
  margin: 0 0 0.5rem;
  color: #f7fbff;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.08;
}

.ao-card__title--sr {
  width: 1px;
  height: 1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ao-card__score {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
}

.ao-card__score strong {
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
}

.ao-card__score span {
  color: #9fc0d8;
  font-size: 0.92rem;
  font-weight: 700;
}

.ao-card__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1rem;
  margin: 0;
}

.ao-card__facts div {
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.ao-card__facts dt {
  margin: 0 0 0.3rem;
  color: #8bb0cb;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ao-card__facts dd {
  margin: 0;
  color: #f2f7fd;
  font-weight: 700;
}

.ao-card__offer {
  display: grid;
  gap: 0.55rem;
}

.ao-card__bonus {
  color: #ffffff;
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1.12;
  font-weight: 800;
}

.ao-card__note {
  color: #86f0b7;
  font-size: 0.95rem;
  font-weight: 700;
}

.ao-card__terms {
  color: #9ab2c6;
  font-size: 0.88rem;
  line-height: 1.55;
}

.ao-card__cta {
  display: flex;
  justify-content: flex-end;
}

.ao-card__cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  min-height: 52px;
  padding: 0.85rem 1.1rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #2de278, #18bc62);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 16px 28px rgba(24, 188, 98, 0.22);
}

.ao-card__cta a:hover {
  transform: translateY(-1px);
}

@media (max-width: 1100px) {
  .ao-card {
    grid-template-columns: 56px 1fr;
  }

  .ao-card__offer,
  .ao-card__cta {
    grid-column: 2;
  }
}

@media (max-width: 782px) {
  .ao-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ao-card__rank,
  .ao-card__cta {
    justify-self: center;
  }

  .ao-card__brand {
    grid-template-columns: 1fr;
  }

  .ao-card__facts {
    grid-template-columns: 1fr;
  }

  .ao-card__cta {
    justify-content: center;
  }
}
