* {
  box-sizing: border-box;
}

:root {
  --bg: #0b0f16;
  --bg-soft: #101620;
  --bg-card: #151a24;
  --bg-card-2: #171d2a;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --muted-2: rgba(255, 255, 255, 0.55);
  --line: rgba(255, 255, 255, 0.06);
  --green: #16a34a;
  --yellow: #facc15;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  --radius: 24px;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top center, rgba(88, 28, 135, 0.35), transparent 30%),
    linear-gradient(180deg, #090b11 0%, #0f1320 55%, #090b11 100%);
  line-height: 1.5;
}

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

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 0;
  backdrop-filter: blur(14px);
  background: rgba(9, 11, 17, 0.82);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  color: #ffffff;
}

.logo-mark {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
  font-weight: 800;
}

.logo-text {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.header-menu .site-nav {
  padding: 0;
}

.site-nav {
  padding: 0;
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  display: inline-flex;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: transparent;
}

.nav-list a:hover,
.nav-item.is-active a {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-lang {
  font-size: 14px;
  text-transform: uppercase;
}

.header-link {
  color: #e2e8f0;
  font-size: 14px;
}

.header-link:hover {
  color: #ffffff;
}

/* Buttons */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, #9333ea 0%, #ec4899 100%);
  color: #ffffff;
  font-weight: 700;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.button-small {
  padding: 10px 16px;
}

.header-button {
  padding: 10px 16px;
}

/* Hero */

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

.hero-banner {
  position: relative;
  min-height: 260px;
  border-radius: 24px;
  overflow: hidden;
  background: #111827;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-banner-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(7, 10, 18, 0.88) 0%, rgba(7, 10, 18, 0.62) 42%, rgba(7, 10, 18, 0.15) 100%),
    linear-gradient(180deg, rgba(7, 10, 18, 0.12) 0%, rgba(7, 10, 18, 0.32) 100%);
}

.hero-visual-placeholder {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.9);
}

.hero-overlay {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 3;
  max-width: 520px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-overlay h1 {
  margin: 0 0 10px;
  max-width: 460px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
  color: #ffffff;
}

.hero-overlay .hero-text {
  margin: 0;
  max-width: 460px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

/* Common sections */

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.section-head h2 {
  margin: 0;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Promo */

.promo-slider,
.games-section,
.wins-section,
.bonuses-section,
.lootbox-section,
.providers-strip,
.features-strip {
  padding: 0 0 32px;
}

.promo-grid,
.games-grid,
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

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

.promo-card,
.game-card,
.bonus-card,
.lootbox-card,
.feature-item,
.win-item,
.page-content {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.promo-card {
  min-height: 170px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #1c2332 0%, #121825 100%);
}

.promo-card h3 {
  margin: 0 0 10px;
  font-size: 26px;
  line-height: 1.05;
}

.promo-card p {
  margin: 0;
  color: var(--muted);
}

/* Games */

.game-card,
.bonus-card,
.lootbox-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.game-card {
  min-height: 180px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.4)),
    linear-gradient(135deg, #334155 0%, #0f172a 100%);
}

.game-card-image,
.bonus-card-image,
.lootbox-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-card-image {
  opacity: 0.72;
}

.bonus-card-image {
  opacity: 0.45;
}

.lootbox-card-image {
  opacity: 0.35;
}

.game-card::after,
.bonus-card::after,
.lootbox-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8, 10, 15, 0.05) 0%, rgba(8, 10, 15, 0.82) 100%);
}

.game-card::before,
.bonus-card::before,
.lootbox-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), transparent 40%);
  opacity: 0.6;
  pointer-events: none;
}

.game-card-body,
.bonus-card-body,
.lootbox-card-body {
  position: relative;
  z-index: 3;
}

.game-card-body {
  min-height: 180px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
}

.game-card span {
  font-size: 20px;
  font-weight: 800;
}

.game-card p,
.bonus-card p,
.feature-item span,
.footer-meta {
  color: var(--muted);
}

.game-card p {
  margin: 0;
  font-size: 14px;
}

/* Wins */

.wins-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.win-item {
  padding: 18px 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  border-radius: 18px;
  background: linear-gradient(180deg, #171d2a 0%, #101620 100%);
  color: #ffffff;
}

.win-item strong {
  margin-right: 0;
  color: var(--yellow);
  font-size: 20px;
  white-space: nowrap;
}

.win-item span {
  font-weight: 700;
}

.win-item em {
  color: var(--muted-2);
  font-style: normal;
  font-size: 14px;
}

/* Bonuses */

.bonus-card {
  padding: 24px;
  background: linear-gradient(180deg, #1d2434 0%, #141925 100%);
  color: #ffffff;
}

.bonus-card-body {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bonus-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.bonus-card p {
  margin: 0;
  font-size: 14px;
}

.bonus-price {
  margin-top: 14px;
  color: var(--yellow);
  font-size: 18px;
  font-weight: 800;
}

/* Lootboxes */

.lootbox-card {
  padding: 24px;
  background: linear-gradient(135deg, #4c1d95 0%, #1e1b4b 100%);
  color: #ffffff;
}

.lootbox-card-body {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.lootbox-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.lootbox-card p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

/* Providers */

.providers-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
}

.providers-list img {
  width: 100%;
  height: 60px;
  object-fit: contain;
  padding: 14px 18px;
  background: linear-gradient(180deg, #171d2a 0%, #101620 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
}

/* Features */

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-item {
  min-height: 132px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 20px;
  background: linear-gradient(180deg, #171d2a 0%, #101620 100%);
  color: #ffffff;
}

.feature-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

/* Payments + Footer */

.payments-strip {
  padding: 0 0 22px;
}

.payments-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
}

.payments-list img {
  height: 36px;
  width: auto;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.site-footer {
  margin-top: 12px;
  padding: 26px 0 40px;
  background: #0b0f16;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
  align-items: flex-start;
}

.footer-brand .footer-title {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}

.footer-col h4 {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.footer-links a:hover {
  color: #ffffff;
}

/* Inner pages */

.hero-inner {
  padding: 24px 0 12px;
}

.hero-inner .container {
  padding: 32px;
  border-radius: 24px;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.hero-kicker {
  margin: 0 0 12px;
  color: #93c5fd;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-inner h1 {
  margin: 0 0 12px;
  font-size: 42px;
  line-height: 1.1;
}

.hero-inner .hero-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
}

.breadcrumbs {
  padding: 0 0 8px;
}

.breadcrumbs .container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.7);
}

.site-main {
  padding: 24px 0 56px;
}

.page-content {
  padding: 32px;
  border-radius: 16px;
  background: linear-gradient(180deg, #151a24 0%, #0f131b 100%);
  color: #ffffff;
  box-shadow: none;
}

.page-content a {
  color: #60a5fa;
}

.page-content > *:first-child {
  margin-top: 0;
}

.page-content > *:last-child {
  margin-bottom: 0;
}

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

.resource-card {
  padding: 24px;
  background: #ffffff;
  color: #1f2937;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
}

.resource-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.resource-card p {
  margin: 0 0 16px;
  color: #64748b;
}

.resource-link {
  color: #0f766e;
  font-weight: 700;
}

/* Responsive */

@media (max-width: 1100px) {
  .providers-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .promo-grid,
  .games-grid,
  .bonuses-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero-banner {
    min-height: 220px;
  }

  .hero-overlay {
    max-width: 100%;
    padding: 18px;
  }

  .hero-overlay h1 {
    font-size: clamp(22px, 6vw, 32px);
  }

  .hero-overlay .hero-text {
    font-size: 14px;
  }

  .wins-list {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .header-inner,
  .header-left,
  .header-right {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-inner .container,
  .page-content {
    padding: 24px;
  }

  .providers-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .promo-grid,
  .games-grid,
  .bonuses-grid,
  .features-grid,
  .providers-list {
    grid-template-columns: 1fr;
  }

  .win-item {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }
}
.hero-banner {
  min-height: 300px;
  border-radius: 28px;
}

.hero-banner::after {
  background:
    linear-gradient(90deg, rgba(7, 10, 18, 0.92) 0%, rgba(7, 10, 18, 0.58) 42%, rgba(7, 10, 18, 0.08) 100%),
    linear-gradient(180deg, rgba(7, 10, 18, 0.08) 0%, rgba(7, 10, 18, 0.26) 100%);
}

.hero-overlay {
  max-width: 560px;
  padding: 28px 32px;
}

.hero-overlay h1 {
  margin-bottom: 12px;
  max-width: 520px;
  font-size: clamp(30px, 4.4vw, 52px);
}

.hero-overlay .hero-text {
  max-width: 500px;
  font-size: 16px;
}

.hero-actions {
  margin-top: 20px;
}

.game-card {
  min-height: 220px;
  padding: 0;
}

.game-card-body {
  min-height: 220px;
  padding: 18px;
}

.game-card span {
  font-size: 22px;
  line-height: 1.05;
}

.game-card p {
  font-size: 13px;
}

.game-card-image {
  opacity: 0.86;
}

.game-card::after {
  background: linear-gradient(180deg, rgba(8, 10, 15, 0.04) 0%, rgba(8, 10, 15, 0.88) 100%);
}

@media (max-width: 900px) {
  .hero-banner {
    min-height: 240px;
  }

  .hero-overlay {
    padding: 18px 20px;
  }

  .game-card,
  .game-card-body {
    min-height: 180px;
  }
}
.hero-inner {
  padding: 24px 0 12px;
}

.hero-inner-box {
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(124, 58, 237, 0.9) 0%, rgba(37, 99, 235, 0.85) 48%, rgba(15, 23, 42, 0.95) 100%);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.hero-inner-content {
  padding: 34px 36px;
}

.hero-kicker {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-inner h1 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4.5vw, 48px);
  line-height: 1.04;
}

.hero-inner .hero-text {
  margin: 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

.breadcrumbs {
  padding: 10px 0 6px;
}

.breadcrumbs .container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.72);
}

.page-content-inner {
  background: linear-gradient(180deg, #151a24 0%, #0f131b 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.page-content-inner h2,
.page-content-inner h3 {
  color: #ffffff;
}

.page-content-inner p,
.page-content-inner li {
  color: rgba(255, 255, 255, 0.82);
}

.page-content-inner ul {
  padding-left: 20px;
}

@media (max-width: 768px) {
  .hero-inner-content {
    padding: 24px;
  }
}