

:root {
  --bg: #0f172a;
  --bg-elevated: #111827;
  --surface: #1e293b;
  --surface-active: #334155;
  --accent: #f59e0b;
  --accent-hover: #d97706;
  --btn-dark: #1f2937;
  --btn-dark-hover: #374151;
  --text: #ffffff;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --icon: #94a3b8;
  --icon-hover: #e2e8f0;
  --border-subtle: rgba(148, 163, 184, 0.2);

  
  --primary: var(--accent);
  --primary-dark: var(--accent-hover);
  --primary-glow: rgba(245, 158, 11, 0.15);
  --dark: var(--bg);
  --surface2: #1e293b;
  --surface3: #0f172a;
  --border: rgba(148, 163, 184, 0.22);
  --border-light: rgba(245, 158, 11, 0.22);
  --light: #ffffff;
  --accent-soft: #cbd5e1;
  --green: var(--accent);
  --brand-line: 0px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
button,
input,
textarea,
select {
  font-family: "Inter", "Poppins", system-ui, -apple-system, sans-serif;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-secondary);
  font-family: "Inter", "Poppins", system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  border-top: var(--brand-line) solid transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}



.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--surface3);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.header-top {
  border-bottom: 1px solid var(--border-subtle);
}

.header-top__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 60px;
  gap: 1rem;
}

.header-top__buttons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

.logo {
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.logo.logo--vox {
  display: inline-flex;
  align-items: center;
  gap: 0.08em;
  font-family: "Poppins", "Inter", system-ui, sans-serif;
}

.logo--vox .vox-char {
  font-weight: 800;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.03em;
}

.vox-wordmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.06em;
  font-family: "Poppins", "Inter", system-ui, sans-serif;
}

.vox-wordmark .vox-char {
  font-weight: 800;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.02em;
}

.vox-o {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.35);
}

.vox-o img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.brand-lockup--hero .vox-o img {
  animation: vox-o-spin 18s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .brand-lockup--hero .vox-o img {
    animation: none;
  }
}

@keyframes vox-o-spin {
  to {
    transform: rotate(360deg);
  }
}

.logo--vox .vox-o--sm {
  width: 2rem;
  height: 2rem;
}

.vox-wordmark--hero {
  gap: 0.02em;
}

.vox-wordmark--hero .vox-char {
  font-size: clamp(3.25rem, 10vw, 5rem);
}

.vox-wordmark--hero .vox-o {
  width: clamp(3rem, 9vw, 4.75rem);
  height: clamp(3rem, 9vw, 4.75rem);
  margin: 0 0.02em;
}

.vox-wordmark--footer {
  flex-wrap: wrap;
  justify-content: flex-start;
}

.vox-wordmark--footer .vox-char {
  font-size: 1.65rem;
}

.vox-wordmark--footer .vox-o {
  width: 3rem;
  height: 3rem;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.brand-lockup--hero {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.brand-lockup__rest {
  margin: 0;
  font-size: clamp(0.95rem, 2.8vw, 1.125rem);
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.35;
}

.brand-lockup--footer {
  align-items: flex-start;
  text-align: left;
  margin-bottom: 0.85rem;
}

.brand-lockup--footer .brand-lockup__rest {
  font-size: 0.95rem;
  max-width: 22rem;
}

.hero-visual--brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hdr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.hdr-btn--login {
  background: var(--btn-dark);
  color: #e5e7eb;
  border: 2px solid transparent;
}

.hdr-btn--login:hover {
  background: var(--btn-dark-hover);
  color: #f9fafb;
}

.hdr-btn--register {
  background: var(--accent);
  color: #ffffff;
  border: 2px solid var(--accent);
}

.hdr-btn--register:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #ffffff;
}

.bonus-badge-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
}

.bonus-badge-btn::before {
  content: "";
  width: 7px;
  height: 7px;
  min-width: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
  box-shadow: 0 0 6px var(--accent);
}

.bonus-badge-btn:hover {
  background: rgba(245, 158, 11, 0.2);
  border-color: rgba(245, 158, 11, 0.55);
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.35;
    transform: scale(0.85);
  }
}

.header-nav {
  background: var(--bg);
  border-top: 1px solid var(--border-subtle);
}

.header-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.75rem;
  padding: 0.5rem 0;
}

.main-nav a {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding: 0.35rem 0;
}

.main-nav a:hover {
  color: var(--text);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.icon-item {
  background: var(--surface);
  border-radius: 9999px;
  padding: 0.45rem 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  border: 1px solid var(--border-subtle);
  transition: background 0.2s, border-color 0.2s;
}

.icon-item:hover {
  background: var(--surface-active);
  border-color: rgba(245, 158, 11, 0.35);
}

.icon-coin,
.icon-gift {
  font-size: 1.1rem;
  color: var(--icon);
}

.icon-item:hover .icon-coin,
.icon-item:hover .icon-gift {
  color: var(--icon-hover);
}

.gift-indicator {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 9px;
  height: 9px;
  background: var(--accent);
  border-radius: 50%;
}

.icon-gift-wrapper {
  position: relative;
}

.header-mobile-title {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: 8px;
  padding: 0.35rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
}

.header-mobile-title strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent);
}

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  cursor: pointer;
}

.burger-btn span {
  width: 22px;
  height: 2px;
  background: var(--icon);
  border-radius: 1px;
  transition: background 0.15s, transform 0.3s, opacity 0.3s;
}

.burger-btn:hover span {
  background: var(--icon-hover);
}

.burger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger-btn.active span:nth-child(2) {
  opacity: 0;
}
.burger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-subtle);
  padding: 1rem;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 998;
  overflow-y: auto;
  max-height: calc(100vh - 60px);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-menu a:hover {
  color: var(--accent);
}

.mobile-menu__btns {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

.mobile-menu__btns .hdr-btn,
.mobile-menu__btns .bonus-badge-btn {
  justify-content: center;
  border-bottom: none !important;
}

@media (min-width: 1024px) {
  .header-mobile-title {
    display: none;
  }
}

@media (max-width: 900px) {
  .header-nav {
    display: none;
  }

  .burger-btn {
    display: flex;
  }

  .header-top__buttons .hdr-btn--login {
    display: none;
  }
}

@media (max-width: 600px) {
  .header-top__buttons {
    display: none;
  }
}



.hero {
  padding-top: 1.5rem;
  background-color: var(--bg);
  
  background-image: radial-gradient(rgba(148, 163, 184, 0.3) 1.35px, transparent 1.35px);
  background-size: 20px 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero-container h1,
.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 9999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-soft);
  margin-bottom: 1rem;
}

.hero-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
}

.hero-lead {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hero-meta .meta-author-link {
  color: var(--accent);
  font-weight: 500;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 0.5rem;
}

.hero-stat {
  background: var(--surface);
  padding: 1rem;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: background 0.2s;
}

.hero-stat:hover {
  background: var(--surface-active);
}

.hero-stat__value {
  display: block;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.hero-stat__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.hero p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.hero-body {
  padding: 0;
}

.hero-body__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 1rem 0;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 768px) {
  .hero-body__inner {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hero-body__left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-body__left img {
  width: 100%;
  max-width: 350px;
  height: auto;
  object-fit: contain;
}

.hero-body__left .cta-btn-wrap {
  margin-top: 1.25rem;
  width: 100%;
  text-align: center;
}

@media (min-width: 768px) {
  .hero-body__left {
    align-items: flex-start;
  }

  .hero-body__left .cta-btn-wrap {
    text-align: left;
  }
}

.hero-body__right p {
  margin: 0 0 1rem;
  color: var(--text-secondary);
}

.hero-visual {
  background: var(--surface);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--border-subtle);
}

.hero-visual:not(.hero-visual--brand) > img {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  border-radius: 12px;
}

.author-box,
.info-box,
.author-avatar,
.author-info,
.author-label,
.author-name,
.verified-badge,
.info-content,
.info-label,
.info-value {
  display: none;
}

.hero-banner {
  max-width: 960px;
  margin: 1.5rem auto 0;
  padding: 0 1rem;
}

.hero-banner img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
}



.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.75rem 1rem 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.8125rem;
  background: var(--surface);
  color: #cbd5f5;
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.filter-chip:hover {
  background: var(--surface-active);
  color: var(--text);
}

.filter-chip.is-active {
  background: var(--surface-active);
  color: var(--text);
}

a.filter-chip {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}



.main {
  min-height: 60vh;
  background: var(--bg);
}

.article {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem 3rem;
}

.listing {
  padding: 2rem 1rem 1.25rem;
  max-width: 960px;
  margin: 0 auto;
}

.listing h2 {
  margin: 0 0 1.5rem;
  font-size: 1.2rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
}

.listing h2::before {
  content: "";
  width: 4px;
  height: 1.35em;
  background: var(--accent);
  border-radius: 4px;
  flex-shrink: 0;
}



.casino-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  margin-bottom: 0.875rem;
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.15s;
}

.casino-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}

.casino-card:hover {
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  transform: translateY(-1px);
}

.casino-card:hover::before {
  opacity: 1;
}

.card-main {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1rem 0.85rem;
}

.casino-number {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  background: var(--surface-active);
  color: var(--accent);
  border-bottom-right-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  z-index: 2;
}

.rating-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--accent);
  color: #1a0f00;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-bottom-left-radius: 8px;
}

.logo-box {
  width: 200px;
  min-width: 200px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: transparent;
}

.logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.casino-name-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.bonus-center {
  flex: 1;
  min-width: 0;
}

.bonus-text {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}

.btn-casino {
  background: var(--accent);
  color: #ffffff;
  padding: 0.65rem 1.35rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-casino:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.card-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0.5rem 1rem 0.65rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.8rem;
}

.recenzja-link {
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 500;
}

.recenzja-link:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .card-main {
    flex-wrap: wrap;
  }

  .logo-box {
    width: 90px;
    min-width: 90px;
    height: 60px;
  }

  .bonus-center {
    order: 2;
    width: 100%;
  }

  .cta-section {
    order: 3;
    width: 100%;
  }

  .btn-casino {
    display: block;
    text-align: center;
    width: 100%;
  }
}

.card-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0;
  margin-top: 0.875rem;
  padding-top: 0.875rem;
  border-top: 1px solid var(--border-subtle);
}

.card-detail-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  width: 50%;
  font-size: 0.82rem;
  padding: 0.2rem 0;
}

.card-detail-item:last-child:nth-child(odd) {
  width: 100%;
}

.detail-svg {
  width: 14px;
  height: 14px;
  stroke: var(--icon);
  flex-shrink: 0;
}

.detail-label {
  color: var(--text-muted);
}

.detail-label::after {
  content: ":";
}

.detail-value {
  color: var(--text);
  font-weight: 600;
}

.detail-value--green {
  color: var(--accent);
}

.responsible-gaming {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.75;
}



.content-section {
  padding: 2rem 1rem;
  max-width: 960px;
  margin: 0 auto;
}

.section-wrap {
  background: var(--surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-wrap + .section-wrap {
  border-top: none;
}

.content-section h2 {
  margin: 1.75rem 0 1.25rem;
  font-size: 1.1rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
}

.content-section h2::before {
  content: "";
  width: 4px;
  height: 1.35em;
  background: var(--accent);
  border-radius: 4px;
}

.content-section h2:first-of-type {
  margin-top: 0;
}

.content-section h3 {
  margin: 1.35rem 0 0.65rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  padding-left: 0.85rem;
  border-left: 3px solid var(--accent-hover);
}

.content-section h4 {
  margin: 1rem 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.content-section p {
  margin-bottom: 0.875rem;
  color: var(--text-secondary);
}

.content-section a {
  color: var(--accent);
}

.content-section a:hover {
  color: var(--accent-hover);
}

.content-section a.btn-casino,
.content-section a.btn-casino:hover {
  color: #ffffff;
}

.image-block {
  text-align: center;
  margin: 1.75rem 0;
}

.image-block img {
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  transition: transform 0.25s;
}

.image-block img:hover {
  transform: scale(1.01);
}

.image-caption {
  margin-top: 0.65rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.feature-item {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  padding: 1.25rem;
  border-radius: 12px;
  transition: border-color 0.2s;
}

.feature-item:hover {
  border-color: rgba(245, 158, 11, 0.35);
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.feature-header svg {
  width: 26px;
  height: 26px;
  fill: var(--accent);
}

.feature-item h3 {
  font-size: 1.05rem;
  color: var(--text);
  margin: 0;
  font-weight: 600;
  border: none;
  padding: 0;
}



.table-wrapper {
  overflow-x: auto;
  margin: 1rem 0;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
}

.table-caption {
  caption-side: top;
  text-align: left;
  padding: 0.65rem 1rem 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(17, 24, 39, 0.9);
  border-radius: 12px 12px 0 0;
  border: 1px solid var(--border-subtle);
  border-bottom: none;
}

.table-wrapper--with-caption {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.table-wrapper--with-caption table.data-table {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

table.data-table th[scope="row"] {
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(15, 23, 42, 0.85);
  width: 38%;
  max-width: 280px;
}

table.data-table.data-table--wide {
  min-width: 1024px;
}

table.data-table.data-table--wide th[scope="row"] {
  width: auto;
  max-width: 14rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

th {
  background: var(--surface);
  color: var(--text);
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--border-subtle);
}

td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  background: var(--bg);
  font-size: 0.9rem;
}

tr:last-child td,
tr:last-child th[scope="row"] {
  border-bottom: none;
}

tr:nth-child(even) td {
  background: rgba(30, 41, 59, 0.45);
}

tr:nth-child(even) th[scope="row"] {
  background: rgba(23, 33, 52, 0.95);
}

tr:hover td {
  background: rgba(51, 65, 85, 0.35);
}

tr:hover th[scope="row"] {
  background: rgba(30, 41, 59, 0.95);
}

.info-section table {
  min-width: 0;
}

.najlepsze-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 0;
}

.najlepsze-table tr {
  border-bottom: 1px solid var(--border-subtle);
}

.najlepsze-table td {
  padding: 0.65rem 0.5rem;
  background: transparent !important;
}

.najlepsze-table td:last-child {
  text-align: right;
  white-space: nowrap;
  width: 110px;
}



.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

@media (max-width: 640px) {
  .pros-cons {
    grid-template-columns: 1fr;
  }
}

.pc-box {
  padding: 1.25rem;
  border-radius: 12px;
}

.pros {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.22);
}

.cons {
  background: rgba(248, 113, 113, 0.06);
  border: 1px solid rgba(248, 113, 113, 0.22);
}

.pc-box h3 {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.content-list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--text-secondary);
}

.content-list li {
  margin-bottom: 0.35rem;
}

ol.content-list {
  list-style: none;
  counter-reset: step;
  padding: 0;
}

ol.content-list li {
  counter-increment: step;
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.5rem;
}

ol.content-list li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.h3-with-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.25rem 0 0.5rem;
}

.h3-with-btn h3 {
  margin: 0;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  margin-bottom: 0.65rem;
  padding: 1rem 1.15rem;
  border-radius: 12px;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: rgba(245, 158, 11, 0.28);
}

.faq-q {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--accent);
  font-size: 0.97rem;
}

.faq-a {
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.65;
  margin: 0;
}



.info-section-wrap {
  margin-top: 2rem;
  background-color: rgba(11, 18, 32, 0.85);
  background-image:
    radial-gradient(rgba(148, 163, 184, 0.11) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 24, 39, 0.98) 0%, rgba(15, 23, 42, 0.94) 45%, rgba(22, 33, 55, 0.55) 100%);
  background-size: 22px 22px, 100% 100%;
  border-top: 1px solid rgba(245, 158, 11, 0.22);
  border-bottom: 1px solid var(--border-subtle);
}

.info-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1rem;
}


.info-section .doc-section {
  padding: 1.35rem 1.25rem;
  margin-bottom: 1.35rem;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.32);
  background: rgba(15, 23, 42, 0.78);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.info-section .doc-section:nth-child(even) {
  background: rgba(30, 41, 59, 0.52);
  border-color: rgba(245, 158, 11, 0.22);
}

.info-section .doc-section:last-child {
  margin-bottom: 0;
}

.info-section h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin: 2rem 0 1rem;
}

.info-section h2:first-child {
  margin-top: 0;
}

.info-section h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin: 1.5rem 0 0.75rem;
}

.info-section p {
  margin: 0 0 1rem;
  color: var(--text-secondary);
}

.info-section .table-wrapper {
  margin: 1rem 0;
}

.info-section .faq-item {
  margin-bottom: 0.65rem;
}



.games-wrap {
  margin-top: 2.5rem;
  padding: 1.75rem 1.25rem 1.25rem;
  border-radius: 16px;
  border: 1px solid rgba(245, 158, 11, 0.2);
  background-color: rgba(12, 19, 34, 0.85);
  background-image: radial-gradient(rgba(148, 163, 184, 0.14) 1px, transparent 1px);
  background-size: 22px 22px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
}

.games-section {
  margin-bottom: 2rem;
}

.games-section__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border-subtle);
}

.games-section__icon {
  display: flex;
  color: var(--icon);
  transition: color 0.15s;
}

.games-section__header:hover .games-section__icon {
  color: var(--icon-hover);
}

.games-section__icon svg {
  width: 22px;
  height: 22px;
}

.games-section__title {
  flex: 1;
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
}

.games-section__more {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
}

.games-section__more:hover {
  color: var(--accent);
  border-color: rgba(245, 158, 11, 0.35);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.75rem;
}

.game-card {
  background: var(--surface);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  transition: border-color 0.15s, transform 0.15s;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.game-card:hover {
  border-color: var(--surface-active);
  transform: translateY(-2px);
}

.game-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--surface-active);
}

.game-card__name {
  display: block;
  padding: 0.5rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.3;
}

.game-card:hover .game-card__name {
  color: var(--accent);
}

@media (max-width: 600px) {
  .games-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
  }
}



.lc-app-block {
  background: var(--surface);
  border-radius: 16px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border: 1px solid var(--border-subtle);
}

.lc-app-block--inline {
  background: transparent;
  border: none;
  padding: 0 0 1.5rem;
}

.lc-app-block--inline .lc-app-block__inner {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
}

.lc-app-block__inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  border-radius: 14px;
  padding: 1.35rem 1.5rem;
  flex-wrap: wrap;
}

.lc-app-block__logo img {
  border-radius: 12px;
  max-width: 200px;
}

.lc-app-block__name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.lc-app-block__stats {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.lc-app-block__stats li span {
  font-weight: 600;
  color: var(--accent);
}

.lc-app-block__stats small {
  display: block;
  color: var(--text-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.lc-app-btn {
  display: inline-flex;
  align-items: center;
  background: var(--btn-dark);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 0.35rem 0.65rem;
  transition: border-color 0.2s;
}

.lc-app-btn:hover {
  border-color: var(--accent);
}

.lc-app-btn img {
  width: 135px;
  height: 40px;
}



.tag-btn-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1rem 0 1.25rem;
}

.tag-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1.1rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.8125rem;
  background: var(--surface-active);
  color: var(--text);
  text-decoration: none;
  transition: background 0.2s;
}

.tag-btn:hover {
  background: var(--accent);
  color: #ffffff;
}

.provider-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin: 1rem 0 1.25rem;
}

.provider-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--surface);
  padding: 1rem 1.15rem;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
}

.provider-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 600px) {
  .provider-item {
    flex-direction: column;
  }
}



.cta-btn-wrap {
  margin: 1.5rem 0 0.5rem;
  text-align: center;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.75rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.9rem;
  background: var(--accent);
  color: #ffffff;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  box-shadow: none;
}

.cta-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}


@keyframes merge-cta-blink {
  0%,
  100% {
    opacity: 1;
    filter: brightness(1);
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.28);
  }

  50% {
    opacity: 0.78;
    filter: brightness(1.14);
    box-shadow: 0 0 16px 3px rgba(245, 158, 11, 0.42);
  }
}

a.hdr-btn,
a.cta-btn,
a.sticky-cta__btn,
a.games-section__more,
.lc-app-block__buttons a.hdr-btn,
.info-section table.data-table td a[href="/play/"] {
  animation: merge-cta-blink 1.35s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  a.hdr-btn,
  a.cta-btn,
  a.sticky-cta__btn,
  a.games-section__more,
  .lc-app-block__buttons a.hdr-btn,
  .info-section table.data-table td a[href="/play/"] {
    animation: none;
    filter: none;
    box-shadow: none;
  }
}



.footer {
  background: var(--surface3);
  color: var(--text-secondary);
  border-top: 1px solid var(--border-subtle);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.footer-brand .brand-lockup {
  margin-bottom: 0.35rem;
}

.footer-brand .brand-lockup__rest {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.4;
}

.footer-legal {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0.85rem 0 0;
  max-width: 380px;
}

.footer-regulators {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  padding: 1.25rem 0;
}

.footer-regulators img {
  height: 36px;
  width: auto;
  opacity: 0.5;
  filter: grayscale(100%);
}

.footer-bottom {
  background: var(--bg-elevated);
  padding: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.footer-links a:hover {
  color: var(--accent);
}



.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-subtle);
  padding: 0.65rem 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.sticky-cta__name {
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

.sticky-cta__bonus {
  flex: 1;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-align: center;
}

.sticky-cta__btn {
  display: inline-flex;
  padding: 0.5rem 1.35rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.8125rem;
  background: var(--accent);
  color: #ffffff;
  text-decoration: none;
  transition: background 0.2s;
}

.sticky-cta__btn:hover {
  background: var(--accent-hover);
}

@media (max-width: 600px) {
  .sticky-cta__name {
    display: none;
  }

  .sticky-cta__bonus {
    text-align: left;
    font-size: 0.8125rem;
  }
}



.scroll-to-top {
  position: fixed;
  bottom: 5.5rem;
  right: 1rem;
  z-index: 8500;
  width: 46px;
  height: 46px;
  border-radius: 9999px;
  border: 1px solid var(--border-subtle);
  background: var(--surface);
  color: var(--icon);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s, background 0.2s, color 0.2s;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #1a0f00;
}

.breadcrumbs {
  max-width: 960px;
  margin: 0 auto;
  padding: 0.85rem 1rem 0;
}

.breadcrumbs-list {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.breadcrumbs-list a {
  color: var(--accent);
}

.breadcrumbs-sep {
  color: var(--border-subtle);
}

.info-page-h1 {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-muted);
  text-align: center;
  padding: 0.5rem 1.5rem 0;
  margin: 0;
}

.info-hero {
  padding: 2rem 1.5rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
}

.info-hero h2 {
  font-size: 1.2rem;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 0.65rem;
}

.info-hero p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--text-secondary);
}

.cs-wrap {
  border-top: 1px solid var(--border-subtle);
  background: var(--surface);
}

.cs-section {
  padding: 2rem 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.cs-section h2 {
  font-size: 1.15rem;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.cs-section h2::before {
  content: "";
  width: 4px;
  height: 1.35em;
  background: var(--accent);
  border-radius: 4px;
}

.cs-section h3 {
  font-size: 1rem;
  color: var(--accent);
  font-weight: 600;
  margin: 1.25rem 0 0.45rem;
}

.cs-section p {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.contact-wrapper {
  max-width: 960px;
  margin: 2.5rem auto 3rem;
  padding: 0 1.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 1.75rem;
}

.info-card {
  background: var(--surface);
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  display: flex;
  gap: 0.85rem;
}

.info-card .icon-box {
  background: var(--accent);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-card {
  background: var(--surface);
  padding: 1.75rem;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
}

.form-control {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  background: var(--bg);
  color: var(--text-secondary);
  font-family: inherit;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
}

.btn-submit {
  background: var(--accent);
  color: #ffffff;
  width: 100%;
  padding: 0.75rem;
  border: none;
  border-radius: 9999px;
  font-weight: 600;
  cursor: pointer;
}

.btn-submit:hover {
  background: var(--accent-hover);
}

.newsletter-box {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  text-align: center;
}

.newsletter-form {
  display: flex;
  gap: 0.65rem;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-input {
  flex: 1;
  min-width: 180px;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
  background: var(--bg);
  color: var(--text-secondary);
}

.newsletter-btn {
  background: var(--accent);
  color: #ffffff;
  border: none;
  border-radius: 9999px;
  padding: 0.65rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
}

.ftoc__btn {
  background: var(--surface-active);
  color: var(--text);
}

.ftoc__panel {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
}

.ftoc__list li a:hover {
  color: var(--accent);
}

.bonus-nodep {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: 8px;
  padding: 0.35rem 0.65rem;
  margin-bottom: 0.65rem;
}

.bonus-nodep__value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

.kod-box {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border: 1px dashed rgba(245, 158, 11, 0.45);
  border-radius: 6px;
  padding: 0.2rem 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(245, 158, 11, 0.06);
}

.promo-code {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px dashed var(--border-subtle);
  border-radius: 8px;
  padding: 4px 12px;
  font-family: ui-monospace, monospace;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s, border-color 0.2s;
}

.promo-code:hover {
  background: var(--surface-active);
  border-color: var(--accent);
}

.promo-code[data-copied] {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.4);
  color: #4ade80;
}

@media (max-width: 700px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}



.doc-section {
  margin-bottom: 2.75rem;
}

.doc-section:last-child {
  margin-bottom: 0;
}

.doc-section__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 0.45rem;
}

.doc-panel {
  border-radius: 14px;
  padding: 1.35rem 1.25rem;
  margin: 1.25rem 0;
}

.doc-panel--inset {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
}

.doc-panel--soft {
  background: rgba(30, 41, 59, 0.65);
  border: 1px solid var(--border-subtle);
}

.doc-panel--accent {
  border-left: 4px solid var(--accent);
  background: rgba(245, 158, 11, 0.06);
  border-radius: 0 12px 12px 0;
  padding: 1.25rem 1.25rem 1.25rem 1.35rem;
}

.doc-panel--warn {
  border-left: 4px solid #f87171;
  background: rgba(248, 113, 113, 0.06);
  border-radius: 0 12px 12px 0;
  padding: 1.15rem 1.2rem;
}

.doc-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 1rem;
}

.doc-pullquote {
  margin: 1.5rem 0;
  padding: 1.1rem 1.25rem;
  font-size: 1.02rem;
  font-style: italic;
  color: var(--text-secondary);
  border-radius: 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  position: relative;
}

.doc-pullquote::before {
  content: "“";
  position: absolute;
  top: 0.15rem;
  left: 0.65rem;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.45;
  font-style: normal;
  font-family: Georgia, serif;
}

.doc-columns {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .doc-columns--2 {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.content-figure {
  margin: 1.25rem 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  line-height: 0;
}

.content-figure img {
  width: 100%;
  display: block;
  max-height: 240px;
  object-fit: cover;
}

.content-figure--logo img {
  max-height: 200px;
  object-fit: contain;
  padding: 1.25rem;
  background: var(--surface);
}


.content-figure--tall {
  min-height: min(420px, 55vh);
  background: var(--bg-elevated);
}

.content-figure--tall img {
  max-height: min(640px, 78vh);
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center top;
}

.triple-visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin: 1.25rem 0;
}

.triple-visual__cell {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  aspect-ratio: 1;
  background: var(--surface);
}

.triple-visual__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 500px) {
  .triple-visual {
    grid-template-columns: 1fr;
  }

  .triple-visual__cell {
    aspect-ratio: 16/9;
  }
}

.games-section--exclusive {
  border-left: 3px solid var(--accent);
  padding-left: 0.85rem;
  margin-left: 0.15rem;
}

.games-section--hot {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, transparent 55%);
  border-radius: 14px;
  padding: 0.75rem 0.75rem 0.25rem;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.games-section--best {
  border: 1px dashed rgba(148, 163, 184, 0.45);
  border-radius: 14px;
  padding: 0.75rem 0.75rem 0.25rem;
  background: rgba(15, 23, 42, 0.4);
}

.games-section__intro {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0 0 1rem;
  max-width: 58rem;
}

.step-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  counter-reset: voxstep;
}

.step-list > li {
  position: relative;
  padding: 0.85rem 0.85rem 0.85rem 3.1rem;
  margin-bottom: 0.5rem;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  counter-increment: voxstep;
}

.step-list > li::before {
  content: counter(voxstep);
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.85rem;
  height: 1.85rem;
  background: var(--accent);
  color: #1a0f00;
  font-weight: 800;
  font-size: 0.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-chips {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 1.25rem 0;
}

.support-chip {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem 1rem;
  padding: 0.9rem 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.support-chip strong {
  color: var(--text);
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 0.2rem;
}

.faq-grid {
  display: grid;
  gap: 0.65rem;
}

@media (min-width: 880px) {
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }
}


.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0 0;
}

.faq-accordion__item {
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  background: var(--bg-elevated);
  overflow: hidden;
}

.faq-accordion__item[open] {
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.12);
}

.faq-accordion__summary {
  cursor: pointer;
  padding: 0.95rem 2.75rem 0.95rem 1rem;
  list-style: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  position: relative;
  user-select: none;
}

.faq-accordion__summary::-webkit-details-marker {
  display: none;
}

.faq-accordion__summary::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: -0.35rem;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-accordion__item[open] .faq-accordion__summary::after {
  transform: rotate(-135deg);
  margin-top: -0.15rem;
}

.faq-accordion__panel {
  padding: 0 1rem 1rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.faq-accordion__panel p {
  margin: 0.75rem 0 0;
}

.faq-accordion__panel p:first-child {
  margin-top: 0.65rem;
}

.faq-item--alt {
  background: var(--bg-elevated);
  border-style: dashed;
}

.faq-item--plain {
  border-left: 3px solid var(--surface-active);
}

.nav-endbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  margin-top: 2rem;
  padding: 1.1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  font-size: 0.86rem;
}

.nav-endbar a {
  color: var(--accent);
  font-weight: 600;
}

.nav-endbar .sep {
  color: var(--text-muted);
  user-select: none;
}

.info-section h2 {
  scroll-margin-top: 6rem;
}

.subhead-lined {
  padding-bottom: 0.45rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-subtle);
}

.deposit-wrap .table-wrapper {
  border-radius: 12px 12px 0 0;
  margin-bottom: 0;
}

.withdraw-wrap .table-wrapper {
  border-radius: 0 0 12px 12px;
  margin-top: 0;
}



.games-section__title--lead {
  margin-bottom: 0.5rem;
  padding: 0 0.25rem;
}

.games-section__intro--lead {
  padding: 0 0.25rem;
}

.doc-lead--kompendium {
  margin: 0 0 1rem;
}

.doc-heading-flush {
  margin-top: 0;
}

.doc-panel-intro-secondary {
  margin-top: 0;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.bonus-wager-note {
  margin-bottom: 0;
}

.subhead-lined.subhead-lined--deposit {
  margin-top: 1.25rem;
  border: none;
  padding: 0;
}

.subhead-lined.subhead-lined--withdraw {
  margin-top: 1.5rem;
  border: none;
  padding: 0;
}

.doc-panel--blik p {
  margin: 0;
}

.doc-copy--aviator-lead {
  margin-top: 0;
}

.subhead-lined.subhead-lined--app {
  border: none;
  margin-top: 1rem;
  padding-bottom: 0.35rem;
}

.doc-skrot-heading {
  margin-top: 0;
}

.doc-skrot-text {
  margin-bottom: 0;
}

.hdr-btn--compact {
  padding: 0.5rem 1rem;
}
