@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 {
  --bg: #f6f7fb;
  --surface: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --accent: #2563eb;
  --accent-soft: rgba(37, 99, 235, 0.12);
}

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

body {
  font-family: 'Manrope', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  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: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  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(--text);
  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;
}

.main-nav {
  margin-left: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: none;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  font-size: 0.95rem;
}

.nav-caret {
  font-size: 0.8rem;
  opacity: 0.7;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.15);
  background: #ffffff;
  cursor: pointer;
}

.nav-toggle span {
  position: relative;
  width: 18px;
  height: 2px;
  background: var(--text);
  display: block;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: auto;
  right: 0;
  min-width: 220px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 20;
}

.nav-item.open .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--text);
  font-weight: 500;
}

.dropdown-link:hover {
  background: rgba(15, 23, 42, 0.06);
}

.lang-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}


.cta {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--text);
  font-weight: 500;
  cursor: pointer;
}

.hero {
  padding: 40px 0 64px;
  background: #f0f4ff;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 8px;
  padding: 8px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.12);
  border-bottom: 1px solid rgba(15, 23, 42, 0.12);
}

.breadcrumbs a {
  color: var(--accent);
  font-weight: 500;
}

.breadcrumb-current {
  color: var(--text);
  font-weight: 500;
}

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

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

.author-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(15, 23, 42, 0.1);
  object-fit: cover;
}

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

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

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

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

.author-role,
.author-date {
  font-size: 0.82rem;
  color: var(--muted);
}

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

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

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--accent);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.hero-stats strong {
  display: block;
  font-size: 1.25rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-card {
  background: var(--surface);
  padding: 28px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.hero-card h2 {
  margin-bottom: 12px;
}

.hero-card p {
  color: var(--muted);
  margin-bottom: 16px;
}

.hero-card ul {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.link {
  color: var(--accent);
  font-weight: 600;
}

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

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

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

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

.casino-name {
  font-weight: 700;
  min-width: 160px;
  padding-right: 16px;
  display: flex;
  align-items: center;
  border-right: 1px solid rgba(15, 23, 42, 0.12);
}

.casino-features {
  list-style: none;
  padding-left: 16px;
  padding-right: 16px;
  color: var(--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 rgba(15, 23, 42, 0.12);
}

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

.casino-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.2em;
  color: rgba(37, 99, 235, 0.75);
  font-weight: 600;
  font-size: 0.75rem;
}

.casino-right {
  display: contents;
}

.casino-bonus {
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.25);
  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;
}

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

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

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

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

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

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

.star.filled {
  color: #d4a017;
}

.casino-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;
}

.casino-logo {
  width: 150px;
  height: 150px;
  border-radius: 12px;
  background: rgb(59, 59, 55);
  border: 1px solid rgba(37, 99, 235, 0.25);
  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(--surface);
  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(--text);
  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(--accent);
  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(--accent);
}

.content-section .casino-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(--surface);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

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

.content-image {
  display: block;
  width: 260px;
  max-width: 100%;
  height: auto;
  margin: 16px auto 20px;
  border-radius: 16px;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.15);
}

.content-image-wide {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 16px auto 20px;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}

.content-image-large {
  display: block;
  width: 800px;
  height: auto;
  max-width: 100%;
  margin: 16px auto 20px;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.2);
}

.content-section ul,
.content-section ol {
  padding-left: 20px;
  display: grid;
  gap: 6px;
  color: var(--text);
  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 rgba(37, 99, 235, 0.24);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(37, 99, 235, 0.08);
}

.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 .casino-features {
  list-style: none;
  padding-left: 16px;
}

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

.content-casino-grid {
  margin-top: 18px;
}

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

.content-table th {
  background: rgba(37, 99, 235, 0.08);
}

.license-table td:first-child,
.slot-table td:first-child {
  font-weight: 600;
}

.content-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.content-grid article {
  background: var(--surface);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.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(--surface);
  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(--text);
  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(--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: minmax(200px, 1fr) auto;
  gap: 40px;
  padding-bottom: 40px;
  justify-content: space-between;
}

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

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
}

.footer-links h4 {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.footer-links li {
  margin-bottom: 8px;
}

.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) {
  .casino-bonus {
    width: 240px;
    flex: 0 0 240px;
  }
}

@media (min-width: 1081px) {
  .content-casino-grid .casino-features {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0;
  }
}

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

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

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    display: none;
    width: 100%;
  }

  .site-header.nav-open .main-nav {
    display: block;
  }

  .nav-list {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-link {
    display: none;
  }

  .dropdown-menu {
    margin-top: 0;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border-radius: 12px;
    margin-top: 8px;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    max-height: none;
    border: 1px solid rgba(15, 23, 42, 0.08);
  }

  .dropdown-link {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

  .casino-bonus,
  .casino-actions {
    width: 100%;
  }

  .casino-bonus {
    flex: 1 1 auto;
  }

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

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

  .hero {
    padding: 80px 0 64px;
  }

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

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

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

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

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

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

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

  .author-divider {
    display: none;
  }

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

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

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

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

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

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

  .content-casino-grid .casino-name {
    grid-column: 2;
    grid-row: 1;
  }

  .content-casino-grid .casino-features {
    grid-column: 2;
    grid-row: 2;
    justify-content: flex-start;
    padding-left: 0;
  }

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

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

  .casino-bonus {
    width: 100%;
    word-break: break-word;
  }

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

  .casino-cta {
    width: 100%;
  }

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

  .cta {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }
}
