html {
  scroll-behavior: smooth;
}

.vox-page-bg {
  min-height: 100vh;
  background-color: #000000;
}

.glass {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 1px 0 rgba(0, 0, 0, 0.2);
}

.glass-strong {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 20px 50px -24px rgba(0, 0, 0, 0.45);
}

h1,
h2,
h3,
h4,
.font-display {
  font-family: 'Outfit', system-ui, sans-serif;
}

.btn-primary {
  background: linear-gradient(to bottom, #fb923c, #f97316);
  color: rgb(15 23 42);
  box-shadow:
    0 10px 25px -5px rgba(124, 45, 18, 0.22),
    0 4px 12px -4px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow:
    0 14px 32px -6px rgba(124, 45, 18, 0.28),
    0 6px 14px -4px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.btn-primary:active {
  transform: translateY(0);
  filter: brightness(0.98);
}

.btn-secondary-outline {
  border: 1px solid rgba(251, 191, 36, 0.28);
  background: rgba(251, 191, 36, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-secondary-outline:hover {
  background: rgba(251, 191, 36, 0.11);
  border-color: rgba(251, 191, 36, 0.4);
  transform: translateY(-1px);
}

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

.game-slot-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 12px 40px -20px rgba(0, 0, 0, 0.4);
  transition: border-color 0.2s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.game-slot-card:hover {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 12px 40px -18px rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
}

.game-slot-card:active {
  transform: translateY(0);
}

.game-card-thumb {
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.75rem 0.5rem;
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.5) 0%, rgba(15, 23, 42, 0.85) 100%);
}

.game-card-thumb img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  transition: transform 0.35s ease;
}

.game-slot-card:hover .game-card-thumb img {
  transform: scale(1.04);
}

.game-card-title {
  font-size: 0.6875rem;
  line-height: 1.35;
  letter-spacing: 0.01em;
  word-break: break-word;
}

.game-feature-thumb {
  aspect-ratio: 4 / 5;
  max-height: 200px;
}

.pay-table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
}

.pay-table th,
.pay-table td {
  vertical-align: middle;
}

.pay-table .pay-method {
  width: 30%;
  min-width: 11rem;
}

.pay-table .pay-type-col {
  width: 12%;
}

.pay-table .pay-min,
.pay-table .pay-max {
  width: 12%;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.pay-table .pay-time {
  width: 22%;
}

.pay-table .pay-fee {
  width: 10%;
  text-align: center;
}

.pay-table thead .pay-min,
.pay-table thead .pay-max {
  text-align: right;
}

.pay-table thead .pay-fee {
  text-align: center;
}

.pay-logo {
  display: block;
  max-height: 1.75rem;
  width: auto;
  max-width: 4.5rem;
  object-fit: contain;
  object-position: left center;
}

.pay-logo--sm {
  max-height: 1.35rem;
  max-width: 3.25rem;
}

/* Cookie: z-index niżej niż sticky CTA (z-40); na mobile nad paskiem CTA */
#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 38;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #cbd5e1;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
}

#cookie-banner[hidden] {
  display: none !important;
}

#cookie-banner .cookie-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}

#cookie-banner .cookie-banner__text a {
  color: #fbbf24;
  text-decoration: underline;
  text-underline-offset: 2px;
}

#cookie-banner .cookie-banner__text a:hover {
  color: #fcd34d;
}

#cookie-banner .cookie-dismiss {
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

#cookie-banner .cookie-dismiss:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 639px) {
  #cookie-banner {
    bottom: 5rem;
  }
}

@media (min-width: 640px) {
  #cookie-banner {
    left: auto;
    right: 1rem;
    bottom: 1rem;
    max-width: 26rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
      0 12px 40px rgba(0, 0, 0, 0.45),
      inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }

  #cookie-banner .cookie-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  #cookie-banner .cookie-dismiss {
    margin-top: 0;
  }
}

.footer-trust-badge {
  display: block;
  height: 2.25rem;
  width: auto;
  max-width: 7rem;
  object-fit: contain;
  opacity: 0.92;
  transition: opacity 0.2s ease;
}

a:hover .footer-trust-badge {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .btn-primary:hover,
  .btn-secondary-outline:hover,
  .game-slot-card:hover {
    transform: none;
  }
}
