:root {
  --ink: #171526;
  --muted: #686477;
  --cream: #f8f3e9;
  --paper: #fffdfa;
  --tint: #f1ecf7;
  --indigo: #25205f;
  --indigo-2: #514b9d;
  --gold: #d6a83d;
  --gold-light: #f4df9a;
  --red: #a9333e;
  --green: #19724b;
  --border: #e2dcd1;
  --shadow: 0 18px 50px rgba(35, 29, 59, .09);
  --radius: 22px;
  --shell: min(1180px, calc(100% - 40px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.site-shell {
  width: var(--shell);
  margin-inline: auto;
}

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

.skip-link:focus {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  clip: auto;
  padding: 10px 15px;
  background: #fff;
  color: var(--indigo);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.notice-bar {
  background: #18152f;
  color: rgba(255, 255, 255, .9);
  font-size: 13px;
}

.notice-bar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.notice-bar strong {
  color: var(--gold-light);
  margin-right: 5px;
}

.notice-bar a {
  color: var(--gold-light);
  font-weight: 800;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 253, 250, .9);
  border-bottom: 1px solid rgba(226, 220, 209, .8);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--indigo);
  text-decoration: none;
}

.brand__logo {
  width: 210px;
  height: auto;
  display: block;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.primary-nav a {
  padding: 10px 13px;
  border-radius: 10px;
  color: #4e4a5c;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.primary-nav a:hover {
  background: var(--tint);
  color: var(--indigo);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 11px;
  background: var(--tint);
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--indigo);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 40px 0 28px;
  background:
    radial-gradient(circle at 8% 18%, rgba(244, 223, 154, .55), transparent 27%),
    linear-gradient(180deg, var(--cream), #fffdfa);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -8% 8% auto;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(81, 75, 157, .1);
  border-radius: 50%;
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
}

.hero__copy {
  width: 100%;
  max-width: 1180px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #8b6819;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--gold);
}

h1,
h2,
h3 {
  color: var(--indigo);
  line-height: 1.14;
  text-wrap: balance;
}

h1 {
  max-width: 1160px;
  margin: 12px 0 16px;
  font-size: clamp(40px, 4.2vw, 58px);
  font-weight: 900;
  letter-spacing: -.045em;
}

h2 {
  margin: 12px 0 18px;
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 900;
  letter-spacing: -.035em;
}

h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 900;
}

.hero__lead {
  max-width: 1100px;
  margin: 0;
  color: #514d5f;
  font-size: 16px;
  line-height: 1.6;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: linear-gradient(145deg, var(--indigo-2), var(--indigo));
  color: #fff;
  box-shadow: 0 10px 25px rgba(37, 32, 95, .2);
}

.button--ghost {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .65);
  color: var(--indigo);
}

.editorial-byline {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 18px;
}

.editorial-byline__avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, .9);
  border-radius: 50%;
  background: #e4def1;
  color: var(--indigo);
  font-size: 12px;
  font-weight: 900;
}

.editorial-byline__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-byline > span:last-child {
  display: flex;
  flex-direction: column;
}

.editorial-byline strong {
  color: var(--indigo);
  font-size: 13px;
}

.editorial-byline strong a {
  color: inherit;
  text-decoration: none;
}

.editorial-byline strong a:hover {
  color: var(--gold-dark);
}

.editorial-byline small {
  color: var(--muted);
  font-size: 11px;
}

.section {
  padding: 96px 0;
}

#usporedba {
  padding-top: 28px;
}

#usporedba .section-heading {
  max-width: 1160px;
  margin-bottom: 22px;
}

#usporedba .section-heading h2 {
  font-size: clamp(31px, 3vw, 40px);
}

#usporedba .section-heading p {
  max-width: 1060px;
  margin-right: auto;
  margin-left: auto;
  font-size: 14px;
  line-height: 1.55;
}

.section--tinted {
  background: linear-gradient(180deg, #f5f1f8, #f9f6fb);
}

.section--dark {
  background:
    radial-gradient(circle at 90% 10%, rgba(81, 75, 157, .45), transparent 30%),
    #1d193b;
  color: rgba(255, 255, 255, .78);
}

.section--dark h2,
.section--dark h3 {
  color: #fff;
}

.section--dark .eyebrow {
  color: var(--gold-light);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading--left {
  max-width: 830px;
  margin-left: 0;
  text-align: left;
}

.section-heading p,
.split-layout p {
  color: var(--muted);
}

.section--dark .section-heading p {
  color: rgba(255, 255, 255, .7);
}

.casino-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
  max-width: 780px;
  margin-inline: auto;
  gap: 14px;
}

.casino-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 17px 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 7px 22px rgba(35, 29, 59, .055);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.casino-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--card-accent);
}

.casino-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--card-accent) 35%, var(--border));
  box-shadow: 0 18px 44px rgba(35, 29, 59, .11);
}

.casino-card--featured {
  grid-column: 1 / -1;
  padding: 18px 22px;
  background:
    radial-gradient(circle at 100% 0, color-mix(in srgb, var(--card-accent) 12%, transparent), transparent 40%),
    #fff;
}

.casino-card__rank {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.casino-card__rank span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--card-accent) 13%, white);
  color: var(--card-accent);
}

.casino-card__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.casino-card__top .status-chip {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.casino-card__logo {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 13px;
}

.casino-card__logo img,
.lettermark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 54px;
  object-fit: contain;
  padding: 7px;
  border: 1px solid rgba(23, 21, 38, .08);
  border-radius: 15px;
  background: #f4f1ed;
}

.casino-card__logo--wide {
  min-height: 54px;
  padding: 8px 12px;
  border: 1px solid rgba(23, 21, 38, .08);
  border-radius: 15px;
  background: #f4f1ed;
}

.casino-card__logo--wide img {
  width: 150px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
}

.casino-card__logo--lineup {
  width: 178px;
  min-height: 58px;
  justify-content: center;
  padding: 3px 10px;
  border: 1px solid rgba(23, 21, 38, .08);
  border-radius: 15px;
  background: #f4f1ed;
}

.casino-card__logo--lineup img {
  width: 146px;
  height: 54px;
  flex: 0 1 146px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
}

.casino-card__logo--screenshot {
  overflow: hidden;
  padding: 0;
  background: #090316;
}

.casino-card__logo--screenshot img,
.casino-card .casino-card__logo--screenshot img {
  width: 100%;
  height: 58px;
  flex-basis: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.lettermark {
  background: linear-gradient(145deg, color-mix(in srgb, var(--card-accent) 78%, white), var(--card-accent));
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.casino-card__logo strong {
  overflow-wrap: anywhere;
  color: var(--indigo);
  font-size: 21px;
  line-height: 1.1;
}

.status-chip {
  flex: 0 0 auto;
  padding: 6px 10px;
  border: 1px solid color-mix(in srgb, var(--card-accent) 28%, white);
  border-radius: 999px;
  background: color-mix(in srgb, var(--card-accent) 9%, white);
  color: var(--card-accent);
  font-size: 12px;
  font-weight: 900;
}

.casino-card__verdict {
  margin: 9px 0 11px;
  color: #595567;
  font-size: 14px;
  line-height: 1.45;
}

.casino-card__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.casino-card__facts > span {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 62px;
  padding: 10px 12px;
  border: 1px solid color-mix(in srgb, var(--card-accent) 18%, #ebe6de);
  border-radius: 11px;
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--card-accent) 7%, white),
    #fff 72%
  );
}

.casino-card__facts small {
  margin-bottom: 4px;
  color: color-mix(in srgb, var(--card-accent) 78%, #373344);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.casino-card__facts strong {
  overflow-wrap: anywhere;
  color: var(--card-accent);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
}

.casino-card__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 9px 0;
}

.casino-card__checks span {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
}

.casino-card__cta {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 0 22px 0 26px;
  border: 1px solid rgba(178, 92, 0, .18);
  border-radius: 15px;
  background: linear-gradient(135deg, #ffb11b 0%, #f38a12 52%, #e86e16 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .015em;
  text-decoration: none;
  text-shadow: 0 1px 1px rgba(104, 46, 0, .18);
  box-shadow: 0 10px 24px rgba(226, 112, 13, .25), inset 0 1px 0 rgba(255, 255, 255, .34);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.casino-card__cta:hover {
  transform: translateY(-2px);
  filter: saturate(1.08) brightness(1.03);
  box-shadow: 0 14px 30px rgba(226, 112, 13, .34), inset 0 1px 0 rgba(255, 255, 255, .4);
}

.casino-card__cta:hover span {
  transform: translateX(3px);
}

.casino-card__cta span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  font-size: 18px;
  transition: transform .18s ease;
}

.casino-card__fineprint {
  display: block;
  margin-top: 6px;
  color: #928d99;
  font-size: 9px;
  text-align: center;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  align-items: center;
  gap: 70px;
}

.split-layout--reverse {
  grid-template-columns: .9fr 1.1fr;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: #464151;
  font-size: 14px;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #dcefe5;
  color: var(--green);
  font-size: 11px;
}

.score-panel {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, .75);
  box-shadow: var(--shadow);
}

.score-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 7px 15px;
  margin-top: 20px;
}

.score-row span,
.score-row strong {
  font-size: 13px;
}

.score-row span {
  color: #504b5a;
  font-weight: 800;
}

.score-row strong {
  color: var(--indigo);
}

.score-row i {
  position: relative;
  grid-column: 1 / -1;
  height: 7px;
  overflow: hidden;
  border-radius: 99px;
  background: #e7e2ec;
}

.score-row i > span {
  position: absolute;
  inset: 0 auto 0 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--indigo-2));
}

.score-panel__note {
  margin: 23px 0 0;
  padding-top: 17px;
  border-top: 1px solid var(--border);
  font-size: 11px;
}

.license-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.license-card {
  position: relative;
  padding: 25px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(35, 29, 59, .05);
}

.license-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.license-card__level {
  display: inline-block;
  margin-bottom: 18px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #dff2e7;
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.license-card__level--mid {
  background: #eeeaf8;
  color: var(--indigo-2);
}

.license-card__level--low {
  background: #fff0db;
  color: #9b5f10;
}

.license-card p,
.license-card li {
  color: var(--muted);
  font-size: 13px;
}

.license-card ul {
  margin: 18px 0 0;
  padding: 15px 0 0 18px;
  border-top: 1px solid var(--border);
}

.recourse {
  margin-top: 28px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #faf7f1;
}

.recourse__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 22px;
}

.recourse__steps > div {
  position: relative;
  padding: 0 25px 0 54px;
  border-right: 1px solid var(--border);
}

.recourse__steps > div:last-child {
  border-right: 0;
}

.recourse__steps span {
  position: absolute;
  top: 0;
  left: 12px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--indigo);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.recourse__steps strong {
  color: var(--indigo);
  font-size: 14px;
}

.recourse__steps p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.legal-box {
  margin-top: 28px;
  padding: 25px 28px;
  border-left: 4px solid var(--gold);
  border-radius: 0 18px 18px 0;
  background: #fff7df;
}

.legal-box p {
  color: #5d5137;
}

.legal-box a {
  color: #7b5711;
  font-size: 13px;
  font-weight: 900;
}

.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}

.comparison-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 13px;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.comparison-table thead th {
  background: var(--indigo);
  color: #fff;
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.comparison-table tbody th {
  width: 22%;
  color: var(--indigo);
}

.comparison-table tbody td {
  color: var(--muted);
}

.comparison-table tbody tr:last-child > * {
  border-bottom: 0;
}

.comparison-table tbody tr:nth-child(even) {
  background: #faf8fc;
}

.pros-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pros-grid article {
  padding: 25px;
  border: 1px solid var(--border);
  border-radius: 19px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(35, 29, 59, .05);
}

.pros-grid p {
  color: var(--muted);
  font-size: 13px;
}

.pros-grid p:last-child {
  margin-bottom: 0;
}

.pros-grid a,
.infobox a,
.responsible__more a {
  color: var(--indigo-2);
  font-weight: 900;
  text-underline-offset: 3px;
}

.pros-grid__tag {
  display: inline-block;
  margin-bottom: 17px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pros-grid__tag--plus {
  background: #dff2e7;
  color: var(--green);
}

.pros-grid__tag--neutral {
  background: #eeeaf8;
  color: var(--indigo-2);
}

.pros-grid__tag--minus {
  background: #f8e3e6;
  color: var(--red);
}

.math-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1.4fr;
  align-items: center;
  gap: 12px;
  padding: 28px;
  border: 1px solid #dfd2ab;
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0, rgba(214, 168, 61, .24), transparent 38%),
    #fffaf0;
  box-shadow: var(--shadow);
}

.math-card__label,
.math-card > small {
  grid-column: 1 / -1;
}

.math-card__label {
  color: #8b6819;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.math-card > div {
  display: flex;
  flex-direction: column;
  padding: 14px 10px;
  border: 1px solid #eadfca;
  border-radius: 13px;
  background: rgba(255, 255, 255, .75);
  text-align: center;
}

.math-card strong {
  color: var(--indigo);
  font-size: 22px;
  line-height: 1;
}

.math-card span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 10px;
}

.math-card b {
  color: #8b6819;
  font-size: 20px;
}

.math-card__result {
  background: var(--indigo) !important;
}

.math-card__result strong,
.math-card__result span {
  color: #fff;
}

.math-card > small {
  color: var(--muted);
  font-size: 10px;
}

.infobox {
  margin-top: 24px;
  padding: 17px 19px;
  border-left: 4px solid var(--indigo-2);
  border-radius: 0 12px 12px 0;
  background: var(--tint);
  color: #4b4659;
  font-size: 13px;
}

.payment-visual {
  max-width: 880px;
  margin: 0 auto;
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 22px;
  background: rgba(255, 255, 255, .06);
}

.payment-row {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) 1fr 70px;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.payment-row:last-child {
  border-bottom: 0;
}

.payment-row > div {
  display: flex;
  flex-direction: column;
}

.payment-row strong {
  color: #fff;
  font-size: 14px;
}

.payment-row span {
  color: rgba(255, 255, 255, .58);
  font-size: 11px;
}

.payment-row i {
  position: relative;
  height: 9px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, .12);
}

.payment-row i > span {
  position: absolute;
  inset: 0 auto 0 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
}

.payment-row b {
  color: var(--gold-light);
  font-size: 10px;
  text-transform: uppercase;
}

.three-cards,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 25px;
}

.three-cards article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 17px;
  background: rgba(255, 255, 255, .05);
}

.dark-copy {
  max-width: 900px;
  margin: 24px auto 0;
  padding-top: 6px;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
}

.dark-copy p:last-child {
  margin-bottom: 0;
}

.three-cards p {
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
}

.feature-grid article {
  padding: 23px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 7px 22px rgba(35, 29, 59, .04);
}

.feature-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.feature-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 13px;
  background: var(--tint);
  color: var(--indigo-2);
  font-size: 18px;
  font-weight: 900;
}

.timeline {
  max-width: 850px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  padding-bottom: 30px;
}

.timeline li::before {
  content: "";
  position: absolute;
  top: 44px;
  bottom: 3px;
  left: 23px;
  width: 2px;
  background: #d9d1e7;
}

.timeline li:last-child::before {
  display: none;
}

.timeline li > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--indigo-2), var(--indigo));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(37, 32, 95, .17);
}

.timeline li > div {
  padding: 17px 20px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
}

.timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.responsible {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 44px;
  padding: 40px;
  border: 1px solid #e3c9cd;
  border-radius: 26px;
  background:
    radial-gradient(circle at 0 100%, rgba(169, 51, 62, .12), transparent 34%),
    #fff8f8;
}

.responsible__mark {
  width: 130px;
  height: 130px;
}

.responsible__mark img {
  width: 100%;
  height: 100%;
}

.responsible h2 {
  color: #702630;
}

.responsible p {
  color: #65555a;
}

.responsible__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.responsible__actions a {
  padding: 9px 13px;
  border: 1px solid #dec2c6;
  border-radius: 10px;
  color: #702630;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.responsible__more {
  margin-bottom: 0;
  font-size: 12px;
}

.faq-wrap {
  max-width: 920px;
}

.faq-list {
  display: grid;
  gap: 11px;
}

.faq-list details {
  border: 1px solid var(--border);
  border-radius: 15px;
  background: #fff;
}

.faq-list summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 20px;
  color: var(--indigo);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--tint);
  transition: transform .2s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  padding: 65px 0 22px;
  background: #111021;
  color: rgba(255, 255, 255, .62);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.45fr .65fr .75fr .9fr;
  gap: 46px;
}

.brand--footer {
  padding: 8px 12px;
  border-radius: 12px;
  background: #fff;
}

.brand--footer .brand__logo {
  width: 185px;
}

.site-footer p {
  max-width: 620px;
  font-size: 12px;
}

.site-footer h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.site-footer__grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.site-footer__grid a,
.site-footer__grid span {
  font-size: 12px;
}

.site-footer__grid a {
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
}

.site-footer__grid a:hover {
  color: var(--gold-light);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 10px;
}

.author-page {
  padding: 70px 0 90px;
  background: linear-gradient(180deg, #fbf7ef 0, #fff 460px);
}

.trust-page {
  padding: 66px 0 92px;
  background:
    radial-gradient(circle at 88% 4%, rgba(224, 177, 71, .12), transparent 25%),
    linear-gradient(180deg, #fbf7ef 0, #fff 520px);
}

.trust-page__shell {
  max-width: 940px;
}

.trust-page__hero {
  margin-bottom: 30px;
  padding: 38px 42px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow);
}

.trust-page__hero h1 {
  max-width: 820px;
  margin: 12px 0 10px;
  font-size: clamp(38px, 6vw, 62px);
}

.trust-page__hero p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.trust-page__content {
  padding: 42px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 14px 42px rgba(35, 29, 59, .07);
}

.trust-page__content h2 {
  margin: 40px 0 13px;
  color: var(--indigo);
  font-size: clamp(25px, 4vw, 34px);
}

.trust-page__content h2:first-of-type {
  margin-top: 32px;
}

.trust-page__content p,
.trust-page__content li {
  color: #514d5b;
  font-size: 16px;
  line-height: 1.75;
}

.trust-page__content a {
  color: var(--indigo-2);
  font-weight: 800;
}

.trust-page__lead {
  margin-top: 0;
  color: #373344 !important;
  font-size: 19px !important;
  font-weight: 650;
  line-height: 1.65 !important;
}

.trust-alert {
  margin: 28px 0;
  padding: 22px 24px;
  border: 1px solid color-mix(in srgb, var(--gold) 44%, var(--border));
  border-left: 5px solid var(--gold-dark);
  border-radius: 16px;
  background: #fffaf0;
}

.trust-alert strong {
  display: block;
  color: var(--indigo);
  font-size: 18px;
}

.trust-alert p {
  margin: 8px 0 0;
}

.trust-list {
  display: grid;
  gap: 9px;
  margin: 18px 0 26px;
  padding-left: 24px;
}

.trust-list li::marker {
  color: var(--gold-dark);
  font-weight: 900;
}

.trust-source {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 13px !important;
}

.author-profile-hero,
.authors-intro {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: center;
  gap: 48px;
  padding: 42px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow);
}

.author-profile-hero__portrait,
.author-card__portrait {
  display: block;
  overflow: hidden;
  border-radius: 24px;
  background: var(--tint);
}

.author-profile-hero__portrait img,
.author-card__portrait img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.author-profile-hero h1,
.authors-intro h1 {
  margin: 12px 0 14px;
  font-size: clamp(38px, 5vw, 62px);
}

.author-profile-hero__role {
  margin: 0 0 14px;
  color: var(--indigo-2);
  font-size: 19px;
  font-weight: 900;
}

.author-profile-hero__tagline,
.authors-intro p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.author-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.author-meta span,
.expertise-tags span {
  padding: 7px 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #faf8f4;
  color: #5d5867;
  font-size: 11px;
  font-weight: 800;
}

.author-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: start;
  gap: 44px;
  max-width: 1000px;
  margin: 54px auto 0;
}

.author-copy section {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.author-copy section:first-child {
  padding-top: 0;
}

.author-copy section:last-child {
  border-bottom: 0;
}

.author-copy h2,
.author-sidebar h2,
.authors-list h2 {
  font-size: 27px;
}

.author-copy p {
  color: #565160;
}

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.author-sidebar {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 18px;
}

.author-panel {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(35, 29, 59, .05);
}

.author-panel h2 {
  margin-top: 0;
}

.author-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.author-stats div {
  padding: 13px 10px;
  border-radius: 12px;
  background: var(--tint);
  text-align: center;
}

.author-stats strong {
  display: block;
  color: var(--indigo);
  font-size: 22px;
}

.author-stats span,
.author-panel p,
.author-panel li {
  color: var(--muted);
  font-size: 11px;
}

.author-panel ul {
  margin: 0;
  padding-left: 18px;
}

.recent-article {
  display: block;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  color: var(--indigo);
  font-weight: 900;
  text-decoration: none;
}

.recent-article small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-weight: 700;
}

.authors-intro {
  grid-template-columns: 1fr;
  text-align: center;
}

.authors-intro .eyebrow {
  justify-content: center;
}

.authors-list {
  max-width: 820px;
  margin: 42px auto 0;
}

.author-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: center;
  gap: 30px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.author-card h2 {
  margin: 0 0 8px;
}

.author-card h2 a {
  color: inherit;
  text-decoration: none;
}

.author-card p {
  color: var(--muted);
}

.author-card__link {
  color: var(--indigo-2);
  font-size: 13px;
  font-weight: 900;
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 30px, 760px);
  }

  .hero {
    padding-top: 34px;
  }

  .hero__grid,
  .split-layout,
  .split-layout--reverse {
    grid-template-columns: 1fr;
  }

  .author-layout {
    grid-template-columns: 1fr;
  }

  .author-sidebar {
    position: static;
    grid-template-columns: 1fr 1fr;
  }

  .hero__visual {
    max-width: 700px;
  }

  .casino-grid,
  .license-grid {
    grid-template-columns: 1fr;
  }

  .casino-card--featured {
    grid-column: auto;
  }

  .split-layout {
    gap: 35px;
  }

  .license-grid {
    gap: 13px;
  }

  .pros-grid {
    grid-template-columns: 1fr;
  }

  .recourse__steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .recourse__steps > div {
    min-height: 55px;
    border-right: 0;
  }

  .three-cards,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .author-page {
    padding: 42px 0 65px;
  }

  .trust-page {
    padding: 34px 0 64px;
  }

  .trust-page__hero,
  .trust-page__content {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .trust-page__hero {
    margin-bottom: 16px;
  }

  .trust-page__hero h1 {
    font-size: 38px;
  }

  .trust-page__lead {
    font-size: 17px !important;
  }

  .trust-page__content p,
  .trust-page__content li {
    font-size: 15px;
  }

  .author-profile-hero {
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 24px;
    padding: 26px;
  }

  .author-sidebar {
    grid-template-columns: 1fr;
  }

  .notice-bar__inner {
    min-height: 44px;
  }

  .notice-bar a {
    display: none;
  }

  .site-header__inner {
    min-height: 68px;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 15px;
    left: 15px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 12px;
  }

  h1 {
    font-size: clamp(37px, 12vw, 52px);
  }

  .hero__lead {
    font-size: 16px;
  }

  .section {
    padding: 72px 0;
  }

  .casino-card,
  .casino-card--featured {
    padding: 18px 20px;
  }

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

  .casino-card__facts > span {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    gap: 15px;
    padding: 8px 11px;
  }

  .casino-card__facts small {
    margin: 0;
  }

  .casino-card__facts strong {
    max-width: 68%;
    text-align: right;
  }

  .payment-row {
    grid-template-columns: 1fr 60px;
  }

  .payment-row i {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .payment-row b {
    text-align: right;
  }

  .three-cards,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .responsible {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .responsible__mark {
    width: 90px;
    height: 90px;
    font-size: 27px;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 24px);
  }

  .brand__logo {
    width: 170px;
  }

  .casino-card__logo--lineup {
    width: min(210px, calc(100% - 74px));
    min-height: 72px;
    padding: 4px 10px;
  }

  .casino-card__logo--lineup img {
    width: 190px;
    max-width: 100%;
    height: 64px;
  }

  .notice-bar {
    font-size: 11px;
  }

  .hero {
    padding: 24px 0 20px;
  }

  .hero__grid {
    gap: 0;
  }

  .hero h1 {
    margin: 10px 0 14px;
    font-size: 36px;
    line-height: 1.06;
  }

  .hero__lead {
    font-size: 14px;
    line-height: 1.5;
  }

  .hero__lead-detail {
    display: none;
  }

  .button {
    width: auto;
    min-height: 44px;
    padding: 0 9px;
    font-size: 12px;
  }

  .editorial-byline small {
    line-height: 1.25;
  }

  .editorial-byline small:first-of-type {
    display: none;
  }

  #usporedba {
    padding-top: 32px;
  }

  #usporedba .section-heading {
    margin-bottom: 18px;
  }

  #usporedba .section-heading > p {
    display: none;
  }

  .author-profile-hero,
  .author-card {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .author-profile-hero__portrait,
  .author-card__portrait {
    max-width: 210px;
  }

  .author-profile-hero h1,
  .authors-intro h1 {
    font-size: 38px;
  }

  .section-heading {
    margin-bottom: 32px;
    text-align: left;
  }

  h2 {
    font-size: 32px;
  }

  .casino-card__logo strong {
    font-size: 17px;
  }

  .casino-card__logo img,
  .lettermark {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }

  .casino-card .casino-card__logo--lineup img {
    width: 190px;
    max-width: 100%;
    height: 64px;
    flex: 0 1 190px;
  }

  .casino-card .casino-card__logo--screenshot img {
    width: 100%;
    height: 72px;
    flex-basis: 100%;
    object-fit: cover;
  }

  .status-chip {
    font-size: 10px;
  }

  .score-panel,
  .recourse,
  .responsible {
    padding: 21px;
  }

  .math-card {
    grid-template-columns: 1fr;
  }

  .math-card b {
    text-align: center;
  }

  .payment-visual {
    padding: 19px;
  }

  .timeline li {
    grid-template-columns: 38px 1fr;
    gap: 14px;
  }

  .timeline li > span {
    width: 38px;
    height: 38px;
  }

  .timeline li::before {
    top: 37px;
    left: 18px;
  }

  .timeline li > div {
    padding: 15px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .site-footer__grid > div:first-child {
    grid-column: auto;
  }

  .site-footer__bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
