:root {
  --green: #55F06C;
  --orange: #F55800;
  --red: #FF2EBD;
  --page: #070B21;
  --header: #020205;
  --panel: #10142F;
  --panel-deep: #0D1128;
  --card-text: #F7F8FF;
  --muted: #AAB0C6;
  --line: #17397B;
  --white: #FFFFFF;
  --card-bg: linear-gradient(90deg, #3C5386, var(--panel-deep));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--page);
  color: var(--card-text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }

.container {
  width: min(1240px, calc(100% - 1px));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 10px;
  z-index: 50;
  height: 72px;
  margin: 10px 10px 0;
  overflow: visible;
  border: 1px solid #FFFFFF14;
  border-radius: 17px;
  background: var(--header);
  box-shadow:
    0 18px 38px #00000070,
    0 4px 9px #0000008C,
    inset 0 1px 0 #FFFFFF1A,
    inset 0 -10px 22px #0000008C;
}
.nav-shell {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 32px;
  max-width: 1360px;
  height: 100%;
  margin: auto;
  padding: 0 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  white-space: nowrap;
  font-size: 22px;
  font-weight: 900;
}
.site-logo img {
  display: block;
  width: clamp(60px, 7vw, 95px);
  height: auto;
  object-fit: contain;
}
.nav {
  display: flex;
  gap: 30px;
  margin: auto;
  font-size: 14px;
}
.nav a { color: #EEF1FF; }
.nav a:hover,
.nav a:focus-visible { color: var(--orange); }
.trust {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  line-height: 1;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 400;
  transition: filter .2s ease, transform .2s ease;
}
.trust:hover { filter: brightness(1.12); transform: translateY(-1px); }
.trust strong {
  flex: 0 0 auto;
  color: var(--green);
  font-size: 18px;
}
.trust-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  min-width: 0;
}
.trust-copy > span {
  color: #E7EAF5;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .01em;
}
.trust-copy small {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  line-height: 1;
}
.trust-copy b {
  padding: 0;
  color: var(--green);
  background: none;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
}
.trust-copy em {
  color: #C7CCDC;
  font-size: 10px;
  font-style: normal;
}
.menu-btn {
  display: none;
  place-items: center;
  width: 46px;
  height: 42px;
  padding: 0;
  cursor: pointer;
  color: var(--white);
  border: 1px solid #55F06CA6;
  border-radius: 11px;
  background: #55F06C0B;
  box-shadow: 0 0 0 1px #55F06C0D, 0 0 18px #55F06C14;
  transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.menu-btn:hover {
  border-color: var(--green);
  background: #55F06C1F;
  box-shadow: 0 0 22px #55F06C33;
}
.menu-btn:active { transform: scale(.96); }
.menu-lines { display: block; width: 21px; }
.menu-btn .menu-lines i {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 10px;
  background: var(--card-text);
  transition: transform .2s ease, opacity .2s ease;
}
.menu-btn[aria-expanded="true"] .menu-lines i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-btn[aria-expanded="true"] .menu-lines i:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] .menu-lines i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* JS applies this class only when the full desktop navigation no longer fits. */
.site-header.nav-collapsed,
.site-header.nav-collapsed .nav-shell {
  height: 72px;
  min-height: 72px;
}
.site-header.nav-collapsed .nav-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  grid-template-rows: 48px;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
}
.site-header.nav-collapsed .brand { grid-column: 1; grid-row: 1; justify-self: start; line-height: 1; }
.site-header.nav-collapsed .trust {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  justify-self: center;
  margin: 0;
  padding: 0;
  line-height: 1;
  transform: none;
}
.site-header.nav-collapsed .menu-btn {
  position: static;
  grid-column: 3;
  grid-row: 1;
  align-self: center;
  justify-self: end;
  display: grid;
  width: 46px;
  height: 42px;
  margin: 0;
}
.site-header.nav-collapsed .nav {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  display: none;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 14px 22px;
  border: 1px solid #FFFFFF12;
  border-radius: 13px;
  background: #070B1E;
  box-shadow: 0 18px 35px #00000059;
}
.site-header.nav-collapsed .nav.open { display: flex; }
.site-header.nav-collapsed .nav a {
  padding: 13px 4px;
  border-bottom: 1px solid #202646;
}
.site-header.nav-collapsed .nav a:last-child { border-bottom: 0; }

/* Hero */
.hero {
  border-bottom: 1px solid #262E63;
  background-color: #111949;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero-shell { max-width: 1360px; margin: auto; padding: 48px 80px 26px; }
.hero-copy { max-width: 700px; }
.eyebrow {
  color: #BFC5FF;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 10px 0 14px;
  font-size: 52px;
  font-weight: 1000;
  line-height: .98;
  letter-spacing: -.04em;
}
.hero h1 span { color: var(--orange); }
.hero h1 i {
  color: transparent;
  font-style: normal;
  font-weight: 400;
  -webkit-text-stroke: 1px var(--white);
}
.fch { max-width: 710px; font-size: 18px; }
.hero-copy > p:last-child {
  max-width: 510px;
  color: var(--white);
  font-size: 18px;
  line-height: 1.55;
}
.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}
.hero-benefits article {
  display: flex;
  flex: 0 1 auto;
  align-items: center;
  gap: 1px;
  width: auto;
  padding: 10px 12px;
  border-radius: 32px;
  background: #000000;
  box-shadow: 0 0 24px #F558008C;
}
.hero-benefits b {
  display: grid;
  flex: 0 0 38px;
  place-items: center;
  width: 38px;
  min-width: 38px;
  height: 38px;
  color: var(--green);
  font-size: 21px;
}
.hero-benefits span { display: flex; flex-direction: column; font-size: 15px; }
.hero-benefits b i,
.responsible i,
.author h3 i {
  color: var(--green);
  text-shadow: 0 0 12px #55F06C8C;
}

/* Casino list */
.casino-section { max-width: 1240px; margin: auto; padding: 24px 14px 12px; }
.section-head {gap: 34px; margin: 0 0 18px 48px;text-align:center}
.section-head h2 { margin: 0; font-size: 18px; }
.section-head span { color: var(--orange); font-size: 18px; font-weight: 800; }
.casino-list { display: grid; gap: 24px; }
.casino-card {
  position: relative;
  display: grid;
  grid-template-columns: 56px 190px minmax(170px, 1.1fr) 150px minmax(185px, 1.2fr) 200px;
  align-items: center;
  gap: 16px;
  min-height: 122px;
  padding: 18px 20px;
  overflow: hidden;
  color: var(--card-text);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card-bg);
  box-shadow: 0 12px 30px #0000001F;
}
.casino-card.leader {
  border: 2px solid transparent;
  background-image:
    var(--card-bg),
    linear-gradient(90deg, var(--red), var(--orange), var(--green), #35B9FF, #8F62FF);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.rank { color: #DDD3FF; font-size: 28px; font-weight: 900; line-height: 1; }
.casino-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 0;
}
.casino-name {
  width: 160px;
  margin: 0;
  overflow: hidden;
  color: var(--card-text);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: .02em;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.casino-brand img {
  width: 160px;
  height: 72px;
  object-fit: contain;
}
.casino-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--card-text);
  font-size: 15px;
  line-height: 1.75;
}
.casino-card li::marker { color: var(--green); }
.rating {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
  padding-left: 14px;
  border-left: 1px solid var(--line);
  font-size: 12px;
}
.rating b { color: var(--orange); font-size: 18px; white-space: nowrap; }
.rating .score { margin-left: 6px; color: var(--card-text); font-size: 16px; }
.rating span { color: var(--muted); font-size: 13px; }
.rating em { color: var(--green); font-size: 13px; font-style: normal; }
.offer {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  padding-left: 18px;
  color: #fdf200;
  border-left: 1px solid var(--line);
}
.offer strong { font-size: 22px; line-height: 1.2; }
.offer span { color: var(--muted); font-size: 15px; }
.action { min-width: 0; }
.action > form {
  width: 100%;
  margin: 0;
}
.action > a,
.action > form > button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 44px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  appearance: none;
  border: 0;
  border-radius: 6px;
  background: linear-gradient(#00000000, #00000042), var(--green);
  color: #07110A;
  box-shadow: inset 0 1px #FFFFFF59;
  font-family: inherit;
  font-size: 17px;
  font-weight: 1000;
  line-height: 1;
  text-align: center;
  transition: filter .2s ease, box-shadow .2s ease;
}
.action > a i,
.action > form > button i {
  font-size: .92em;
  transition: transform .2s ease;
}
.action > a:hover,
.action > a:focus-visible,
.action > form > button:hover,
.action > form > button:focus-visible {
  filter: brightness(1.12) saturate(1.05);
  box-shadow: 0 0 0 1px #55F06C59, 0 7px 20px #55F06C40, inset 0 1px #FFFFFF6B;
}
.action > a:hover i,
.action > a:focus-visible i,
.action > form > button:hover i,
.action > form > button:focus-visible i {
  transform: scale(1.1);
}

/* One network image, eight CSS-sprite positions. */
.payments,
.footer-payments {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 5px;
}
.payments { margin-top: 18px; }
.payment-mark {
  display: block;
  width: 100%;
  height: 28px;
  overflow: hidden;
  border-radius: 6px;
  background-color: var(--white);
  background-image: url("assets/payment-sprite.webp");
  background-repeat: no-repeat;
  background-size: 800% auto;
  background-position-y: center;
}
.payment-mark:nth-child(1) { background-position-x: 0%; }
.payment-mark:nth-child(2) { background-position-x: 14.285714%; }
.payment-mark:nth-child(3) { background-position-x: 28.571429%; }
.payment-mark:nth-child(4) { background-position-x: 42.857143%; }
.payment-mark:nth-child(5) { background-position-x: 57.142857%; }
.payment-mark:nth-child(6) { background-position-x: 71.428571%; }
.payment-mark:nth-child(7) { background-position-x: 85.714286%; }
.payment-mark:nth-child(8) { background-position-x: 100%; }
.footer-payments .payment-mark { height: 26px; border-radius: 4px; }
.responsible { color: #BBC0D2; font-size: 12px; text-align: center; }
.responsible a { color: var(--orange); }
.responsible i { margin-right: 6px; }

/* Author */
.author {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1264px;
  margin: 24px auto 22px;
  padding: 18px 28px;
  border: 1px solid #41496C;
  border-radius: 12px;
  background: linear-gradient(90deg, #171B36, #11152E);
}
.author > img {
  width: 82px;
  height: 82px;
  flex: 0 0 auto;
  object-fit: cover;
  border: 3px solid #E8EDFF;
  border-radius: 50%;
}
.author span { color: #C5C9DB; font-size: 13px; }
.author h3 { margin: 3px 0; color: var(--green); }
.author h3 i { margin-left: 4px; font-size: .78em; }
.author p { max-width: 900px; margin: 0; color: #E4E6F0; font-size: 13px; line-height: 1.55; }
.author-socials { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 11px; }
.author-socials a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid #FFFFFF1F;
  border-radius: 50%;
  background: #070B21B8;
  color: var(--card-text);
  box-shadow: inset 0 1px #FFFFFF14, 0 5px 12px #00000038;
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}
.author-socials a:hover,
.author-socials a:focus-visible {
  color: var(--orange);
  border-color: var(--orange);
  transform: translateY(-1px);
}

/* Footer */
footer {
  padding: 28px 30px 14px;
  border-top: 1px solid #191F42;
  background: #040714;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(4, 1fr);
  gap: 36px;
  max-width: 1320px;
  margin: auto;
}
.footer-grid h4 { margin: 0 0 12px; }
.footer-grid > div > a { display: block; margin: 7px 0; color: #C5C9DB; font-size: 13px; }
.footer-grid > div > a:hover { color: var(--orange); }
.footer-brand p { color: #C5C9DB; font-size: 13px; line-height: 1.5; }
.footer-brand small { color: #8990A7; }
.legal {
  margin: 26px 0 0;
  padding-top: 13px;
  color: #7F879E;
  border-top: 1px solid #1B2140;
  font-size: 11px;
  text-align: center;
}
.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  display: none;
  width: 46px;
  height: 46px;
  cursor: pointer;
  color: var(--white);
  border: 0;
  border-radius: 50%;
  background: var(--orange);
  font-size: 24px;
}

@media (min-width: 761px) {
  .hero { background-image: url("assets/hero-sydney-desktop.webp"); }
}

@media (max-width: 1100px) {
  .nav { gap: 16px; }
  .trust-copy { display: none; }
  .hero-shell { padding: 42px 32px 24px; }
  .casino-section { padding: 24px 22px; }
  .footer-grid { grid-template-columns: 1.5fr repeat(2, 1fr); }
  .footer-grid > div:nth-child(4),
  .footer-grid > div:nth-child(5) { margin-top: 8px; }
}

/* Tablet and medium desktop composition. */
@media (min-width: 761px) and (max-width: 1240px) {
  .casino-card {
    grid-template-columns: minmax(32px, 4.5%) minmax(105px, 17%) minmax(0, 25%) minmax(0, 27%) minmax(145px, 26.5%);
    grid-template-rows: auto auto;
    grid-template-areas:
      "rank brand perks offer action"
      "rank brand perks rating action";
    align-items: center;
    gap: 0;
    min-height: 190px;
    padding: 18px 14px;
  }
  .casino-card > * { min-width: 0; max-width: 100%; }
  .rank { grid-area: rank; align-self: center; padding-right: 8px; font-size: clamp(24px, 3vw, 31px); }
  .casino-brand { grid-area: brand; width: 100%; min-height: 0; padding-right: 12px; gap: 9px; }
  .casino-name {
    width: 100%;
    overflow: visible;
    font-size: clamp(16px, 2.05vw, 21px);
    overflow-wrap: anywhere;
    text-overflow: clip;
    white-space: normal;
  }
  .casino-brand img { width: 100%; max-width: 170px; height: clamp(62px, 8vw, 82px); }
  .casino-card ul {
    grid-area: perks;
    margin: 0;
    padding: 0 12px 0 24px;
    border: 0;
    font-size: clamp(13px, 1.6vw, 15px);
    line-height: 1.6;
    overflow-wrap: anywhere;
    text-transform: uppercase;
  }
  .offer {
    grid-area: offer;
    align-self: end;
    width: 100%;
    padding: 3px 12px 8px 16px;
    overflow: hidden;
    border: 0;
    border-left: 1px solid var(--line);
  }
  .offer strong { display: block; max-width: 100%; font-size: clamp(17px, 1.8vw, 24px); line-height: 1.15; overflow-wrap: anywhere; }
  .offer span { display: inline; color: #FDE97D; font-size: clamp(13px, 1.5vw, 17px); line-height: 1.25; overflow-wrap: anywhere; }
  .rating {
    grid-area: rating;
    align-self: start;
    width: 100%;
    padding: 8px 12px 2px 16px;
    overflow: hidden;
    border: 0;
    border-left: 1px solid var(--line);
  }
  .rating b { font-size: clamp(15px, 1.8vw, 20px); line-height: 1.15; white-space: normal; }
  .rating .score { display: inline; font-size: clamp(14px, 1.65vw, 18px); }
  .rating span,
  .rating em { font-size: clamp(12px, 1.4vw, 15px); }
  .action { grid-area: action; align-self: center; width: 100%; padding-left: 10px; overflow: hidden; }
  .action > a,
  .action > form > button {
    width: 100%;
    min-height: clamp(50px, 5.7vw, 58px);
    padding: 9px 6px;
    border-radius: 8px;
    font-size: clamp(16px, 1.9vw, 20px);
    white-space: nowrap;
  }
  .payments { width: 100%; gap: clamp(4px, .6vw, 7px); margin-top: 18px; }
  .payment-mark { height: clamp(27px, 3.6vw, 38px); }
}

@media (min-width: 761px) and (max-width: 880px) {
  .casino-card {
    grid-template-columns: minmax(30px, 4.5%) minmax(95px, 16.5%) minmax(0, 25%) minmax(0, 28%) minmax(135px, 26%);
    min-height: 182px;
    padding: 15px 10px;
  }
  .casino-brand { padding-right: 8px; }
  .casino-card ul { padding-right: 8px; padding-left: 20px; line-height: 1.65; }
  .offer,
  .rating { padding-right: 7px; padding-left: 11px; }
  .action { padding-left: 7px; }
}

@media (max-width: 760px) {
  .site-header,
  .site-header.nav-collapsed,
  .site-header.nav-collapsed .nav-shell {
    height: 48px;
    min-height: 48px;
  }
  .site-header { top: 8px; margin: 8px 8px 0; border-radius: 14px; }
  .site-header.nav-collapsed .nav-shell {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    grid-template-rows: 48px;
    gap: 9px;
    padding: 0 14px;
  }
  .site-header.nav-collapsed .brand { font-size: 18px; }
  .site-header.nav-collapsed .trust-copy > span { font-size: 11px; }
  .site-header.nav-collapsed .trust-copy small { gap: 4px; }
  .site-header.nav-collapsed .trust-copy b { font-size: 8px; }
  .site-header.nav-collapsed .trust-copy em { display: inline; font-size: 9px; }
  .site-header.nav-collapsed .trust strong { font-size: 16px; }
  .site-header.nav-collapsed .menu-btn { width: 44px; height: 40px; }
  .site-header.nav-collapsed .nav { top: calc(100% + 8px); }

  .hero { background-image: url("assets/hero-sydney-mobile.webp"); background-position: center; }
  .hero-shell { padding: 28px 16px 18px; }
  .hero h1 { font-size: 34px; line-height: 1.02; }
  .hero-copy > p:last-child { max-width: 410px; font-size: 17px; }
  .hero-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 22px;
  }
  .hero-benefits article { min-width: 0; padding: 8px; border-right: 0; font-size: 18px; }
  .hero-benefits b { flex-basis: 34px; width: 34px; min-width: 34px; height: 34px; }

  .casino-section { padding: 20px 12px; }
  .section-head { display: block; margin: 0 0 14px 2px; }
  .section-head h2 { margin-bottom: 5px; font-size: 16px; line-height: 1.2; }
  .section-head span { font-size: 16px; }
  .casino-card {
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.15fr);
    grid-template-areas:
      "brand brand"
      "rating perks"
      "offer offer"
      "action action";
    align-items: start;
    gap: 0 16px;
    min-height: auto;
    padding: 18px 14px 14px;
    border-radius: 16px;
  }
  .rank {
    position: absolute;
    top: 18px;
    left: 14px;
    z-index: 2;
    font-size: 31px;
    letter-spacing: .02em;
  }
  .casino-brand {
    grid-area: brand;
    width: 100%;
    min-height: 142px;
    padding: 0 50px 18px;
    justify-content: flex-start;
    gap: 12px;
    border-bottom: 1px solid var(--line);
  }
  .casino-name {
    width: 100%;
    overflow: visible;
    font-size: 24px;
    text-overflow: clip;
    white-space: normal;
  }
  .casino-brand img { width: min(210px, 100%); height: 92px; }
  .rating {
    grid-area: rating;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 18px 0 16px;
    border: 0;
    gap: 7px;
    text-align: center;
  }
  .rating b { font-size: 20px; line-height: 1.25; white-space: normal; }
  .rating .score { display: inline-block; margin-left: 7px; font-size: 20px; }
  .rating span { font-size: 15px; }
  .rating em { font-size: 16px; }
  .casino-card ul {
    grid-area: perks;
    display: block;
    margin: 0;
    padding: 17px 0 15px 22px;
    border: 0;
    font-size: 16px;
    line-height: 1.75;
  }
  .casino-card li { padding-left: 2px; }
  .offer {
    grid-area: offer;
    align-items: center;
    gap: 7px;
    margin: 0;
    padding: 18px 4px 16px;
    border: 0;
    border-top: 1px solid var(--line);
    text-align: center;
  }
  .offer strong { font-size: 28px; line-height: 1.16; }
  .offer span { display: inline; font-size: 21px; line-height: 1.3;color: #f3a901}
  .action { grid-area: action; }
  .action > a,
  .action > form > button { min-height: 58px; border-radius: 8px; font-size: 21px; }
  .payments { gap: 7px; margin-top: 9px; }
  .payment-mark { height: 33px; border-radius: 7px; }

  .author { align-items: flex-start; margin: 20px 12px; padding: 16px; }
  .author > img { width: 68px; height: 68px; }
  .author p { font-size: 12px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .legal { line-height: 1.5; }
}

@media (max-width: 420px) {
  .site-header.nav-collapsed .nav-shell { gap: 6px; padding: 0 10px; }
  .site-header.nav-collapsed .brand { font-size: 16px; gap: 7px; }
  .site-header.nav-collapsed .trust strong { font-size: 14px; }
  .site-header.nav-collapsed .trust-copy > span { font-size: 10px; }
  .site-header.nav-collapsed .trust-copy b { font-size: 7px; letter-spacing: .7px; }
  .site-header.nav-collapsed .trust-copy em { font-size: 8px; }

  .casino-card { gap: 0 10px; padding: 16px 11px 12px; }
  .rank { top: 17px; left: 11px; font-size: 27px; }
  .casino-brand { min-height: 132px; padding: 0 46px 15px; gap: 8px; }
  .casino-name { font-size: 21px; }
  .casino-brand img { width: min(185px, 100%); height: 82px; }
  .rating { padding: 15px 0 13px; gap: 5px; }
  .rating b,
  .rating .score { font-size: 17px; }
  .rating span { font-size: 13px; }
  .rating em { font-size: 14px; }
  .casino-card ul { padding: 14px 0 12px 19px; font-size: 13px; line-height: 1.6; text-transform: uppercase; }
  .offer { padding: 15px 2px 14px; }
  .offer strong { font-size: 24px; }
  .offer span { font-size: 17px; }
  .action > a,
  .action > form > button { min-height: 54px; font-size: 19px; }
  .payments { gap: 6px; }
}

@media (max-width: 350px) {
  .site-header.nav-collapsed .brand { font-size: 14px; }
  .site-header.nav-collapsed .trust { gap: 4px; }
  .site-header.nav-collapsed .trust strong { font-size: 13px; }
  .site-header.nav-collapsed .trust-copy > span { font-size: 9px; }
  .site-header.nav-collapsed .trust-copy b { display: none; }

  .hero h1 { font-size: 30px; }
  .hero-benefits { gap: 6px; }
  .hero-benefits article { padding: 7px; font-size: 16px; }
  .hero-benefits b { flex-basis: 30px; width: 30px; min-width: 30px; height: 30px; }

  .casino-card { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: 0 7px; }
  .casino-brand { padding-right: 42px; padding-left: 42px; }
  .casino-name { font-size: 19px; }
  .casino-brand img { width: min(165px, 100%); height: 75px; }
  .rating b,
  .rating .score { font-size: 15px; }
  .rating span,
  .rating em { font-size: 12px; }
  .casino-card ul { padding-left: 17px; font-size: 12px; text-transform: uppercase; }
  .offer strong { font-size: 21px; }
  .offer span { font-size: 15px; }
  .payment-mark { height: 35px; }
  .author { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div { grid-column: auto; }
}


.bonus-note {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(760px, 100%);
  margin: 0 auto 20px;
  padding: 10px 14px;
  color: #D9DDEA;
  border: 1px dotted #f55800;
  border-radius: 7px;
  background: var(--panel);
  font-size: 13px;
  line-height: 1.45;
}

.bonus-note > i {
  flex: 0 0 auto;
  color: var(--orange);
  font-size: 15px;
}

.bonus-note p {
  margin: 0;
}

.bonus-note strong {
  color: var(--card-text);
  font-weight: 700;
}

@media (max-width: 760px) {
  .bonus-note {
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 16px;
    padding: 9px 11px;
    font-size: 12px;
  }

  .bonus-note > i {
    margin-top: 2px;
    font-size: 14px;
  }
}