@font-face {
  font-family: 'Manrope';
  src: url('/fonts/Manrope-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('/fonts/Manrope-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('/fonts/Manrope-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('/fonts/Manrope-Semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('/fonts/Manrope-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-page-bg: #f5f7fa;
  --color-surface-base: #ffffff;
  --color-text-main: #202a38;
  --color-text-muted: #697384;
  --color-brand: #2a64e8;
  --color-brand-soft: rgba(42, 100, 232, 0.12);

  --surface-overlay: rgba(255, 255, 255, 0.9);
  --border-subtle: rgba(15, 23, 42, 0.08);
  --border-soft: rgba(15, 23, 42, 0.12);
  --border-medium: rgba(15, 23, 42, 0.1);
  --border-inverse: rgba(255, 255, 255, 0.2);
  --border-inverse-soft: rgba(255, 255, 255, 0.08);
  --border-brand-soft: rgba(42, 100, 232, 0.24);

  --brand-soft-bg: rgba(42, 100, 232, 0.08);
  --brand-check: rgba(42, 100, 232, 0.75);

  --shadow-overlay: 0 30px 60px rgba(0, 0, 0, 0.4);
  --shadow-card: 0 12px 24px rgba(15, 23, 42, 0.06);
  --shadow-image-sm: 0 10px 20px rgba(15, 23, 42, 0.08);
  --shadow-image-md: 0 16px 30px rgba(15, 23, 42, 0.15);
  --shadow-image-lg: 0 18px 36px rgba(15, 23, 42, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Manrope', Arial, sans-serif;
  background: var(--color-page-bg);
  color: var(--color-text-main);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.site-header {
  background: var(--surface-overlay);
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 16px;
  flex-wrap: wrap;
}

.logo {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text-main);
  display: inline-flex;
  align-items: center;
}

.logo-img {
  height: auto;
  max-height: 40px;
  width: auto;
  display: block;
  font-size: 0.7em;
  font-weight: 300;
  line-height: 1;
}


.intro-section {
  padding: 40px 0 64px;
  background: #f0f4ff;
}

.intro-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: center;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  margin-bottom: 16px;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--border-medium);
  object-fit: cover;
}

.author-data {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.author-main {
  display: flex;
  align-items: center;
  gap: 8px;
}

.author-fullname {
  font-weight: 600;
}

.author-separator {
  color: var(--color-text-muted);
}

.author-jobtitle,
.author-updated {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.intro-content h1 {
  font-size: clamp(1.6rem, 2.4vw, 2.56rem);
  line-height: 1.2;
  margin: 12px 0 16px;
  text-align: center;
}

.intro-content p {
  color: #4b5563;
  margin-bottom: 24px;
}

.top-casinos-section {
  padding: 32px 0 24px;
}

.top-casinos-title {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.brand-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.brand-card {
  background: var(--color-surface-base);
  border: 1px solid #d4a017;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: stretch;
  gap: 12px;
  font-weight: 700;
  color: var(--color-text-main);
}

.brand-name {
  font-weight: 700;
  min-width: 160px;
  padding-right: 16px;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--border-soft);
}

.brand-features {
  list-style: none;
  padding-left: 16px;
  padding-right: 16px;
  color: var(--color-text-muted);
  font-weight: 300;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  flex: 1;
  justify-content: center;
  border-right: 1px solid var(--border-soft);
}

.brand-features li {
  position: relative;
  padding-left: 18px;
}

.brand-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.2em;
  color: var(--brand-check);
  font-weight: 600;
  font-size: 0.75rem;
}

.brand-card-aside {
  display: contents;
}

.brand-offer {
  background: var(--brand-soft-bg);
  border: 1px solid var(--border-brand-soft);
  color: #1d4ed8;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  min-width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.offer-icon {
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
}

.offer-icon svg {
  width: 1em;
  height: 1em;
  display: block;
}

.brand-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  align-self: center;
}

.brand-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--color-text-main);
  align-self: stretch;
}

.rating-stars {
  display: flex;
  gap: 3px;
}

.rating-star {
  color: rgba(212, 160, 23, 0.35);
  font-size: 0.9rem;
}

.rating-star.is-filled {
  color: #d4a017;
}

.brand-cta {
  background: #1d4ed8;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  padding: 15px 25px;
  font-weight: 500;
  font-size: 1rem;
  font-family: 'Noto Sans', sans-serif;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.brand-logo {
  width: 150px;
  height: 150px;
  border-radius: 12px;
  background: rgb(59, 59, 55);
  border: 1px solid var(--border-brand-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1d4ed8;
  object-fit: contain;
  align-self: center;
}

.toc-section {
  padding: 24px 0 40px;
}

.toc-card {
  background: var(--color-surface-base);
  border: 1px solid #0f172a;
  border-radius: 16px;
  padding: 20px;
}

.toc-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-main);
  cursor: pointer;
  padding: 0;
}

.toc-icon {
  transition: transform 0.2s ease;
}

.toc-card.collapsed .toc-icon {
  transform: rotate(-90deg);
}

.toc-list {
  margin-top: 12px;
  display: grid;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid #0f172a;
}

.toc-card.collapsed .toc-list {
  display: none;
  border-top: none;
  padding-top: 0;
}

.toc-list a {
  color: var(--color-brand);
  font-weight: 500;
}

.content-section {
  padding: 56px 0 80px;
}

.content-section h2 {
  font-size: 1.5rem;
  margin-top: 28px;
  margin-bottom: 12px;
}

.content-section h2:first-of-type {
  margin-top: 0;
}

.content-section p {
  color: #4b5563;
  margin-bottom: 16px;
}

.content-section a {
  color: var(--color-brand);
}

.content-section .brand-cta {
  color: #ffffff;
}

.content-section h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.content-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.content-card {
  flex: 0 0 calc((100% - 32px) / 3);
  max-width: calc((100% - 32px) / 3);
  min-width: 240px;
  background: var(--color-surface-base);
  border: 1px solid var(--border-brand-soft);
  border-radius: 12px;
  padding: 16px;
  box-shadow: var(--shadow-card);
}

.content-card h3 {
  margin-top: 0;
}

.brand-image {
  display: block;
  width: 260px;
  max-width: 100%;
  height: auto;
  margin: 16px auto 20px;
  border-radius: 16px;
  box-shadow: var(--shadow-image-md);
}

.banner-main {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 16px auto 20px;
  border-radius: 16px;
  box-shadow: var(--shadow-image-sm);
}

.brand-image-large {
  display: block;
  width: 800px;
  height: auto;
  max-width: 100%;
  margin: 16px auto 20px;
  border-radius: 18px;
  box-shadow: var(--shadow-image-lg);
}

.content-section ul,
.content-section ol {
  padding-left: 20px;
  display: grid;
  gap: 6px;
  color: var(--color-text-main);
  margin-bottom: 16px;
}

.content-section ol {
  list-style: none;
  padding-left: 0;
  counter-reset: step;
  position: relative;
}

.content-section ol li {
  position: relative;
  padding-left: 44px;
  padding-bottom: 14px;
}

.content-section ol li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 26px;
  border: 1px solid var(--border-brand-soft);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--brand-soft-bg);
}

.content-section ol li::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 28px;
  width: 2px;
  height: calc(100% - 20px);
  background: #d1d5db;
}

.content-section ol li:last-child::after {
  display: none;
}

.content-section ul {
  list-style: disc;
  padding-left: 20px;
}

.content-section .brand-features {
  list-style: none;
  padding-left: 16px;
}

.main-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  font-size: 0.95rem;
  font-weight: 300;
}

.content-brand-cards-grid {
  margin-top: 16px;
}

.main-table th,
.main-table td {
  border: 1px solid rgba(15, 23, 42, 0.15);
  padding: 10px 12px;
  text-align: left;
}

.main-table th {
  background: var(--brand-soft-bg);
}

.main-table.table-first-col td:first-child {
  font-weight: 600;
}

.faq-section {
  margin-top: 32px;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.faq-item {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--color-surface-base);
  overflow: hidden;
}

.faq-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: transparent;
  border: none;
  color: var(--color-text-main);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.25s ease, padding 0.25s ease;
  color: var(--color-text-muted);
}

.faq-panel p {
  margin: 0 0 12px;
}

.faq-item.open .faq-panel {
  max-height: 260px;
  padding: 0 20px 16px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.site-footer {
  background: #1d4ed8;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 48px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand p {
  color: #ffffff;
  margin-top: 12px;
  max-width: 80%;
  font-size: 0.8em;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px 0 20px;
  color: #ffffff;
  font-size: 0.85rem;
}

@media (min-width: 1001px) {
  .brand-offer {
    width: 240px;
    flex: 0 0 240px;
  }
}

@media (max-width: 860px) {
  .site-header .container {
    width: min(1120px, 98%);
  }

  .header-inner {
    flex-direction: row;
    align-items: center;
  }

}

@media (max-width: 1080px) and (min-width: 781px) {
  .content-card {
    flex: 0 0 calc((100% - 16px) / 2);
    max-width: calc((100% - 16px) / 2);
  }

  .brand-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    align-items: center;
  }

  .brand-logo {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .brand-name {
    grid-column: 1;
    grid-row: 1;
    border-right: none;
    padding-right: 0;
    min-width: 0;
    margin-left: 162px;
    align-self: start;
  }

  .brand-features {
    grid-column: 2;
    grid-row: 1;
    border-right: none;
    padding: 0 12px;
  }

  .brand-card-aside {
    grid-column: 3;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: space-between;
    height: 100%;
    align-items: stretch;
  }

  .brand-offer,
  .brand-actions {
    width: 100%;
  }

  .brand-offer {
    flex: 1 1 auto;
  }

  .brand-cta {
    width: 100%;
  }
}

@media (max-width: 780px) {
  body {
    overflow-x: hidden;
  }

  .intro-section {
    padding: 80px 0 64px;
  }

  .content-card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .content-section h2 {
    font-size: 1.2rem;
  }

  .main-table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .main-table thead,
  .main-table tbody,
  .main-table tr {
    width: max-content;
  }

  .review-author {
    margin-top: 27px;
    margin-bottom: 30px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }

  .author-data {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .author-main {
    justify-content: center;
  }

  .author-separator {
    display: none;
  }

  .author-main {
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.15);
  }

  .brand-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
    align-items: start;
    padding: 12px;
  }

  .brand-logo {
    grid-row: 1 / 3;
    align-self: start;
    width: 110px;
    height: 110px;
  }

  .brand-name {
    grid-column: 2;
    grid-row: 1;
    border-right: none;
    padding-right: 0;
    min-width: 0;
    word-break: break-word;
  }

  .brand-features {
    grid-column: 2;
    grid-row: 2;
    border-right: none;
    padding: 0;
  }

  .brand-features li {
    word-break: break-word;
  }

  .brand-card-aside {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .brand-offer {
    width: 100%;
    word-break: break-word;
  }

  .brand-actions {
    width: 100%;
    align-items: stretch;
  }

  .brand-cta {
    width: 100%;
  }

  .brand-rating {
    justify-content: center;
  }

}
