:root {
  --bg:     #0d0f1a;
  --bg2:    #161826;
  --card:   #1e2035;
  --border: rgba(245,166,35,.18);
  --gold:   #f5a623;
  --gold2:  #e8941a;
  --red:    #e8173a;
  --red2:   #c0102c;
  --text:   #e0e0e0;
  --text2:  #9ea8c0;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,.45);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }
ul { list-style: none; }

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.2; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; line-height: 1.3; }
h3 { font-size: 1.1rem; font-weight: 600; }

.section-label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: .5rem;
}

.btn-gold, .btn-red, .btn-outline {
  display: inline-block;
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: .875rem;
  letter-spacing: .04em;
  padding: .75rem 1.75rem;
  cursor: pointer;
  border: none;
  transition: transform .2s, box-shadow .2s;
  text-align: center;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, #f5a623, #e8941a);
  color: #000;
  box-shadow: 0 4px 20px rgba(245,166,35,.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(245,166,35,.55); color: #000; }
.btn-red {
  background: linear-gradient(135deg, #e8173a, #c0102c);
  color: #fff;
  box-shadow: 0 4px 20px rgba(232,23,58,.35);
}
.btn-red:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(232,23,58,.55); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: #000; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

section { padding: 5rem 0; }
.bg-alt { background: var(--bg2); }

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13,15,26,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}
.logo-link { display: flex; align-items: center; }
.logo-img  { height: 44px; width: auto; }
.header-actions { display: flex; gap: .75rem; align-items: center; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .25rem;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gold); border-radius: 2px; }

@media (max-width: 600px) {
  .btn-outline.header-login { display: none; }
  .hamburger { display: flex; }
}

#hero {
  padding: 5rem 0 4rem;
  background: linear-gradient(135deg, #0d0f1a 0%, #12142a 60%, #0d0f1a 100%);
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 65%; height: 90%;
  background: radial-gradient(ellipse at center, rgba(245,166,35,.09) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  border: 1px solid var(--gold);
  border-radius: 50px;
  padding: .35rem 1rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.hero-badge::before { content: '★'; }
.hero-title { color: #fff; margin-bottom: 1.25rem; }
.hero-title .gold { color: var(--gold); }
.hero-lead { color: var(--text2); margin-bottom: 1.75rem; font-size: 1.05rem; }
.bonus-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}
.bonus-box-label { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text2); margin-bottom: .4rem; }
.bonus-amount { font-size: clamp(1.2rem, 2.5vw, 1.65rem); font-weight: 800; color: var(--gold); margin-bottom: .35rem; }
.bonus-detail { font-size: .82rem; color: var(--text2); }
.bonus-detail strong { color: var(--text); }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 60px rgba(245,166,35,.1);
  border: 1px solid var(--border);
}
.hero-image-wrap img { width: 100%; height: auto; }

@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-image-wrap { order: -1; }
}

.features-header { text-align: center; margin-bottom: 3rem; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color .25s, transform .25s;
}
.feature-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.feature-icon { width: 56px; height: 56px; margin: 0 auto 1.25rem; }
.feature-icon img { width: 100%; height: 100%; }
.feature-card h3 { color: #fff; margin-bottom: .75rem; }
.feature-card p { color: var(--text2); font-size: .9rem; }

@media (max-width: 768px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .features-grid { grid-template-columns: 1fr; } }

.bonuses-header { text-align: center; margin-bottom: 3rem; }
.bonuses-header p { color: var(--text2); margin-top: .75rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.bonus-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.bonus-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  position: relative;
  transition: border-color .25s, transform .25s;
}
.bonus-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.bonus-tag {
  position: absolute;
  top: -1px; right: 1.25rem;
  background: var(--gold);
  color: #000;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: .25rem .75rem;
  border-radius: 0 0 8px 8px;
}
.bonus-card h3 { color: var(--gold); margin-bottom: .75rem; }
.bonus-card-amount { font-size: 1.6rem; font-weight: 800; color: #fff; margin-bottom: .75rem; }
.bonus-card p { color: var(--text2); font-size: .88rem; }
.bonuses-cta { text-align: center; }

@media (max-width: 768px) { .bonus-cards-grid { grid-template-columns: 1fr; } }

#rejestracja { counter-reset: steps; }
.steps-header { text-align: center; margin-bottom: 3.5rem; }
.steps-header p { color: var(--text2); margin-top: .75rem; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}
.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.25rem 1.5rem;
  position: relative;
  text-align: center;
  counter-increment: steps;
}
.step-card::before {
  content: counter(steps);
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 28px;
  background: var(--gold);
  color: #000;
  border-radius: 50%;
  font-size: .82rem;
  font-weight: 800;
  line-height: 28px;
  text-align: center;
}
.step-card h3 { color: #fff; margin-bottom: .75rem; font-size: 1rem; }
.step-card p { color: var(--text2); font-size: .85rem; }
.steps-cta { text-align: center; margin-top: 2rem; }

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

.content-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.content-pair.img-right .pair-img { order: 2; }
.content-pair.img-right .pair-text { order: 1; }
.pair-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.pair-text h2 { color: #fff; margin-bottom: 1rem; }
.pair-text p { color: var(--text2); margin-bottom: 1rem; }
.pair-text p:last-child { margin-bottom: 0; }

.stats-row { display: flex; gap: 2rem; margin-top: 1.5rem; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-num { display: block; font-size: 1.8rem; font-weight: 800; color: var(--gold); }
.stat-lbl { font-size: .82rem; color: var(--text2); }

@media (max-width: 768px) {
  .content-pair,
  .content-pair.img-right { grid-template-columns: 1fr; }
  .content-pair.img-right .pair-img,
  .content-pair.img-right .pair-text { order: unset; }
}

.security-list { margin-top: 1.5rem; }
.security-list li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.security-list li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.sec-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: .1rem; }
.security-list h4 { font-size: .95rem; font-weight: 600; color: #fff; margin-bottom: .25rem; }
.security-list p { font-size: .85rem; color: var(--text2); }

.payments-header { text-align: center; margin-bottom: 3rem; }
.payments-header p { color: var(--text2); margin-top: .75rem; max-width: 620px; margin-left: auto; margin-right: auto; }
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
table { width: 100%; border-collapse: collapse; min-width: 600px; }
thead { background: rgba(245,166,35,.12); }
thead th {
  color: var(--gold);
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .08em;
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 700;
}
tbody td {
  padding: .875rem 1.25rem;
  color: var(--text);
  font-size: .9rem;
  border-top: 1px solid var(--border);
}
tbody tr:hover { background: rgba(245,166,35,.04); }
.tag {
  display: inline-block;
  background: rgba(245,166,35,.15);
  color: var(--gold);
  border: 1px solid rgba(245,166,35,.3);
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 700;
  padding: .2rem .65rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.tag.instant {
  background: rgba(46,213,115,.12);
  color: #2ed573;
  border-color: rgba(46,213,115,.3);
}
.table-cta { text-align: center; margin-top: 2rem; }

.games-header { text-align: center; margin-bottom: 3rem; }
.games-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.games-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.games-cta { display: block; width: 100%; text-align: center; }
.games-list { display: flex; flex-direction: column; gap: 1rem; }
.game-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .2s;
}
.game-item:hover { border-color: var(--gold); }
.game-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  background: rgba(245,166,35,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.game-text h4 { font-size: .95rem; font-weight: 600; color: #fff; margin-bottom: .2rem; }
.game-text p  { font-size: .82rem; color: var(--text2); }

@media (max-width: 768px) { .games-grid { grid-template-columns: 1fr; } }

.faq-header { text-align: center; margin-bottom: 3rem; }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .25s;
  overflow: hidden;
}
details[open] { border-color: var(--gold); }
summary {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  font-size: .95rem;
  gap: 1rem;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: '＋'; color: var(--gold); font-size: 1.2rem; font-weight: 400; flex-shrink: 0; }
details[open] summary::after { content: '－'; }
.faq-answer {
  padding: 1rem 1.5rem 1.25rem;
  color: var(--text2);
  font-size: .9rem;
  border-top: 1px solid var(--border);
}

.testimonials-header { text-align: center; margin-bottom: 3rem; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.t-stars { color: var(--gold); font-size: 1rem; letter-spacing: .1em; margin-bottom: 1rem; }
.t-quote { font-style: italic; color: var(--text); font-size: .92rem; margin-bottom: 1.25rem; line-height: 1.7; }
.t-author { color: var(--text2); font-size: .82rem; }

@media (max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; } }

.gallery-header { text-align: center; margin-bottom: 2.5rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  height: 140px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color .25s;
}
.gallery-item:hover { border-color: var(--gold); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }

.bottom-panel {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: linear-gradient(90deg, #0d0f1a 0%, #161826 100%);
  border-top: 2px solid var(--gold);
  padding: .875rem 1.5rem;
}
.bottom-panel-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.bp-title  { font-size: .82rem; color: var(--text2); margin-bottom: .15rem; }
.bp-bonus  { font-size: 1rem; font-weight: 800; color: var(--gold); }

@media (max-width: 600px) {
  .bottom-panel-inner { flex-direction: column; text-align: center; }
  .bottom-panel .btn-gold { width: 100%; }
}

footer {
  background: #0a0b15;
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-logo { height: 40px; width: auto; margin-bottom: 1rem; }
.footer-tagline { color: var(--text2); font-size: .88rem; margin-bottom: 1.5rem; }
.payment-logos { display: flex; gap: .75rem; align-items: center; flex-wrap: wrap; }
.payment-logos img { height: 20px; width: auto; filter: brightness(.7); }
.footer-nav h4,
.footer-resp h4 {
  color: var(--gold);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1.25rem;
}
.footer-nav ul { display: flex; flex-direction: column; gap: .75rem; }
.footer-nav a { color: var(--text2); font-size: .9rem; transition: color .2s; }
.footer-nav a:hover { color: var(--gold); }
.badge-18 { height: 48px; width: auto; margin-bottom: 1rem; }
.resp-text { color: var(--text2); font-size: .82rem; line-height: 1.6; }
.footer-legal {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0 80px;
}
.legal-text { color: var(--text2); font-size: .78rem; line-height: 1.7; text-align: center; }

@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
