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

:root {
  --gold:       #e1ab46;
  --gold-light: #f0c96b;
  --dark:       #0d0d14;
  --dark-2:     #151520;
  --dark-3:     #1e1e2e;
  --dark-4:     #252535;
  --text:       #e8e8f0;
  --text-muted: #9090aa;
  --white:      #ffffff;
  --radius:     8px;
  --radius-lg:  14px;
  --shadow:     0 4px 20px rgba(0,0,0,.45);
  --transition: .2s ease;
  --max-w:      1200px;
  --font:       'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); text-decoration: underline; }

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

ul, ol { padding-left: 1.4rem; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1rem;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--gold);
  color: var(--dark);
  padding: .5rem 1rem;
  border-radius: var(--radius);
  font-weight: 700;
  z-index: 9999;
  transition: top var(--transition);
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark-2);
  border-bottom: 1px solid rgba(225,171,70,.15);
  box-shadow: 0 2px 12px rgba(0,0,0,.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .75rem 1rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.header-logo img {
  width: 128px;
  height: 30px;
  object-fit: contain;
}
.header-logo:hover { text-decoration: none; }

.header-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.header-nav a {
  color: var(--text-muted);
  font-size: .85rem;
  font-weight: 500;
  padding: .4rem .7rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.header-nav a:hover,
.header-nav a.active {
  color: var(--white);
  background: rgba(225,171,70,.12);
  text-decoration: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .65rem 1.4rem;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  transition: filter var(--transition), transform var(--transition);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.btn:hover { filter: brightness(1.1); transform: translateY(-1px); text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #c9912e 100%);
  color: var(--dark);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover { background: rgba(225,171,70,.1); }

.btn-sm { padding: .45rem .9rem; font-size: .8rem; }
.btn-lg { padding: .85rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; display: flex; }

.hero {
  position: relative;
  overflow: hidden;
  background: var(--dark-3);
  border-bottom: 1px solid rgba(225,171,70,.1);
}

.hero-slider {
  position: relative;
  min-height: 280px;
}

.hero-slide {
  position: relative;
  display: none;
}
.hero-slide.active { display: block; }

.hero-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 1080 / 443;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,13,20,.55) 0%, rgba(13,13,20,.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 3rem;
}

.hero-slide-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-hero {
  padding: 1.1rem 3rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .03em;
}

.slider-controls {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .5rem;
  z-index: 5;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition);
}
.slider-dot.active { background: var(--gold); }

.feature-strip {
  background: var(--dark-3);
  border-bottom: 1px solid rgba(225,171,70,.1);
  padding: 1.2rem 0;
}

.feature-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1rem;
  justify-content: space-around;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
}
.feature-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

.section-title {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(225,171,70,.2);
}

.games-section { padding: 2rem 0; }

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: .75rem;
}

.game-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark-3);
  cursor: pointer;
  aspect-ratio: 3/4;
  transition: transform var(--transition), box-shadow var(--transition);
}
.game-card:hover { transform: scale(1.04); box-shadow: 0 8px 24px rgba(0,0,0,.5); }
.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.75) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: .5rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.game-card:hover .game-card-overlay { opacity: 1; }
.game-card-title {
  font-size: .7rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

.game-card-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.game-card:hover .game-card-play-btn { opacity: 1; }
.game-card-play-btn button {
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.3rem;
  cursor: pointer;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jackpot-banner {
  margin: .5rem 0 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.jackpot-banner img {
  width: 100%;
  height: auto;
  max-height: 180px;
  object-fit: cover;
}
.jackpot-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1.5rem 2rem;
  background: linear-gradient(270deg, rgba(0,0,0,.65) 0%, transparent 60%);
}

.vendors-section {
  padding: 2rem 0;
  background: var(--dark-3);
  border-top: 1px solid rgba(225,171,70,.08);
  border-bottom: 1px solid rgba(225,171,70,.08);
}

.vendors-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: center;
  justify-content: center;
}
.vendors-grid img {
  height: 32px;
  width: auto;
  object-fit: contain;
  opacity: .65;
  filter: grayscale(.3);
  transition: opacity var(--transition), filter var(--transition);
}
.vendors-grid img:hover { opacity: 1; filter: none; }

.payments-section {
  padding: 1.5rem 0;
  background: var(--dark-2);
}

.payments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
.payments-grid img {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: .6;
  filter: grayscale(.2);
  transition: opacity var(--transition);
}
.payments-grid img:hover { opacity: 1; filter: none; }

.seo-block {
  background: var(--dark-2);
  border-top: 1px solid rgba(225,171,70,.12);
  padding: 3rem 0;
}

.seo-content h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 1rem;
  line-height: 1.25;
}
.seo-content h2 {
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-weight: 700;
  color: var(--white);
  margin: 2rem 0 .7rem;
}
.seo-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold-light);
  margin: 1.5rem 0 .5rem;
}
.seo-content p {
  color: var(--text-muted);
  margin-bottom: .9rem;
  line-height: 1.7;
}
.seo-content ol,
.seo-content ul {
  color: var(--text-muted);
  margin-bottom: .9rem;
  line-height: 1.7;
}
.seo-content li { margin-bottom: .4rem; }
.seo-content a { color: var(--gold); }
.seo-content a:hover { color: var(--gold-light); }

.seo-content figure { overflow-x: auto; margin-bottom: 1.2rem; }
.seo-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
.seo-content table td {
  padding: .6rem .9rem;
  border: 1px solid rgba(225,171,70,.15);
  color: var(--text-muted);
}
.seo-content table tr:first-child td {
  background: rgba(225,171,70,.08);
  color: var(--white);
  font-weight: 600;
}

.faq-item {
  border-bottom: 1px solid rgba(225,171,70,.1);
  padding: 1rem 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-item h3 {
  color: var(--gold-light);
  font-size: 1rem;
  margin-bottom: .5rem;
}
.faq-item p {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.7;
  margin: 0;
}

.internal-links-block {
  background: var(--dark-3);
  border-top: 1px solid rgba(225,171,70,.08);
  border-bottom: 1px solid rgba(225,171,70,.08);
  padding: 2.5rem 0;
}

.internal-links-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.internal-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.internal-link-card {
  display: block;
  background: var(--dark-4);
  border: 1px solid rgba(225,171,70,.15);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.4rem;
  transition: border-color var(--transition), background var(--transition);
  text-decoration: none;
}
.internal-link-card:hover {
  border-color: var(--gold);
  background: rgba(225,171,70,.06);
  text-decoration: none;
}
.internal-link-card h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: .35rem;
}
.internal-link-card p {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.2rem;
  padding: 2rem 0;
}
.promo-card {
  background: var(--dark-3);
  border: 1px solid rgba(225,171,70,.15);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.promo-card-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), #c9912e);
  color: var(--dark);
  font-size: .7rem;
  font-weight: 800;
  padding: .2rem .6rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .05em;
  width: fit-content;
}
.promo-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}
.promo-card p {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin: 0;
}
.promo-card-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.page-hero {
  background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark-2) 100%);
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(225,171,70,.1);
}
.page-hero h1 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--gold);
  margin-bottom: .6rem;
}
.page-hero p {
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.page-hero p:last-child { margin-bottom: 0; }

.app-download-btns {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.2rem;
}

.app-specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}
.app-specs-table td {
  padding: .65rem 1rem;
  border: 1px solid rgba(225,171,70,.12);
  font-size: .88rem;
}
.app-specs-table tr:first-child td {
  background: rgba(225,171,70,.08);
  font-weight: 700;
  color: var(--white);
}
.app-specs-table td:first-child {
  color: var(--gold-light);
  font-weight: 600;
  width: 40%;
}
.app-specs-table td:last-child { color: var(--text-muted); }

.login-page-layout {
  padding: 3rem 0;
}
.login-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.login-panel {
  background: var(--dark-3);
  border: 1px solid rgba(225,171,70,.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.login-panel h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.5rem;
  text-align: center;
}
.login-panel-btns {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}
.login-panel-btns p {
  font-size: .82rem;
  color: var(--text-muted);
  margin: 0;
}

.breadcrumb {
  font-size: .78rem;
  color: var(--text-muted);
  padding: .65rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  background: var(--dark-2);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); text-decoration: none; }
.breadcrumb span { margin: 0 .4rem; opacity: .45; }

.site-footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(225,171,70,.12);
  padding: 2.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: .8rem;
}
.footer-brand p {
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.footer-nav-heading {
  font-size: .78rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .8rem;
}
.footer-nav-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.footer-nav-list a {
  font-size: .8rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-nav-list a:hover { color: var(--gold); text-decoration: none; }

.footer-responsible {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
  margin-bottom: 1.5rem;
}
.footer-responsible img {
  height: 28px;
  width: auto;
  opacity: .65;
  filter: grayscale(.4);
}

.footer-legal {
  font-size: .72rem;
  color: var(--text-muted);
  line-height: 1.65;
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 1.2rem;
}
.footer-legal p { margin-bottom: .4rem; }
.footer-legal p:last-child { margin-bottom: 0; }

.footer-copyright {
  font-size: .76rem;
  color: rgba(255,255,255,.3);
  margin-top: 1.2rem;
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.section-pad { padding: 2rem 0; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .login-two-col { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .header-nav { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .hero-slide img { aspect-ratio: 1080 / 443; }
  .hero-slide-overlay { padding: 1.2rem; }
  .btn-hero { padding: .9rem 2rem; font-size: 1.05rem; }
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); }
  .promo-grid { grid-template-columns: 1fr; }
  .internal-links-grid { grid-template-columns: 1fr; }
  .app-download-btns { flex-direction: column; }
}

@media (max-width: 400px) {
  .games-grid { grid-template-columns: repeat(3, 1fr); }
}