/* ============================================================
   RESET
   ============================================================ */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body { line-height: 1; }
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after,
q:before, q:after { content: ''; content: none; }
table { border-collapse: collapse; border-spacing: 0; }
*, *:after, *:before { box-sizing: border-box; }
a { text-decoration: none; }
img { display: block; max-width: 100%; }

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --bg-primary:    #0a080f;
  --bg-secondary:  #110d1c;
  --bg-card:       #1a1528;
  --bg-card-alt:   #211a35;

  --gold:          #ffd700;
  --gold-dark:     #c9a000;
  --gold-light:    #ffe566;

  --red:           #e63946;
  --red-dark:      #c0303c;

  --text:          #f0eeff;
  --text-muted:    #9990b8;
  --text-dark:     #6b6490;

  --border:        #2d2550;
  --border-gold:   rgba(255, 215, 0, 0.3);

  --radius:        12px;
  --radius-lg:     20px;

  --shadow:        0 4px 24px rgba(0,0,0,0.5);
  --shadow-gold:   0 0 20px rgba(255, 215, 0, 0.15);
}

/* ============================================================
   BASE
   ============================================================ */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
  background: var(--bg-primary);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Oswald', system-ui, sans-serif;
  line-height: 1.2;
  font-weight: 700;
}

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold);
  color: #0a0808;
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn--red {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn--red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 18px;
}

.btn--sm {
  padding: 9px 20px;
  font-size: 14px;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header--left {
  text-align: left;
}

.section-title {
  font-size: clamp(26px, 4vw, 42px);
  color: var(--text);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.section-title span {
  color: var(--gold);
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-header--left .section-subtitle {
  margin: 0;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 8, 15, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo__icon {
  font-size: 28px;
}
.logo__text {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.5px;
}
.logo__accent {
  color: var(--gold);
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
}
.nav__link:hover {
  color: var(--gold);
  background: rgba(255,215,0,0.07);
}

.nav__btn {
  margin-left: 8px;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 38px;
  height: 38px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
  background: var(--bg-primary);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(255,215,0,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 30%, rgba(180,60,220,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,215,0,0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  width: fit-content;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero__title {
  font-size: clamp(30px, 4.5vw, 52px);
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.1;
}
.hero__title em {
  color: var(--gold);
  font-style: normal;
}

.hero__desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
}

.hero__bonus-badge {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(255,215,0,0.05));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 18px 24px;
  width: fit-content;
}
.hero__bonus-amount {
  font-family: 'Oswald', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero__bonus-label {
  font-size: 13px;
  color: var(--text-muted);
}

.hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
}
.hero__trust span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero__image-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero__image {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 60px rgba(255,215,0,0.12), var(--shadow);
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  padding: 90px 0;
  background: var(--bg-secondary);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-card__icon {
  font-size: 36px;
  line-height: 1;
}

.feature-card__title {
  font-size: 20px;
  color: var(--text);
}

.feature-card__text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   GAMES
   ============================================================ */
.games {
  padding: 90px 0;
  background: var(--bg-primary);
}

.games__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  align-items: center;
  gap: 60px;
}

.games__mascot {
  display: flex;
  justify-content: center;
}

.games__mascot-img {
  width: 100%;
  max-width: 340px;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 0 30px rgba(255,215,0,0.1));
}

.games__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.game-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.game-item:hover {
  border-color: var(--border-gold);
}

.game-item__icon {
  font-size: 26px;
  flex-shrink: 0;
  margin-top: 2px;
}

.game-item__info h4 {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 5px;
}

.game-item__info p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   BONUSES
   ============================================================ */
.bonuses {
  padding: 90px 0;
  background: var(--bg-secondary);
}

.bonuses__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.bonus-card--featured {
  border-color: var(--gold);
  background: linear-gradient(145deg, #1f1830, #1a1528);
  box-shadow: var(--shadow-gold);
}

.bonus-card__tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #0a0808;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bonus-card__icon {
  font-size: 32px;
  line-height: 1;
}

.bonus-card__title {
  font-size: 17px;
  color: var(--text);
}

.bonus-card__amount {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
}

.bonus-card__text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

/* ============================================================
   APP SECTION
   ============================================================ */
.app-section {
  padding: 90px 0;
  background: var(--bg-primary);
}

.app-section__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
  gap: 60px;
}

.app-section__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.app-section__features li {
  font-size: 15px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.5;
}

.app-section__steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.app-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.app-step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--gold);
  color: #0a0808;
  border-radius: 50%;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.app-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  padding-top: 5px;
}

.app-section__image {
  display: flex;
  justify-content: center;
}

.app-section__img {
  width: 100%;
  max-width: 280px;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 0 30px rgba(255,215,0,0.1));
}

/* ============================================================
   SAFETY
   ============================================================ */
.safety {
  padding: 90px 0;
  background: var(--bg-secondary);
}

.safety__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.safety-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
}

.safety-item__icon {
  font-size: 40px;
  line-height: 1;
}

.safety-item h4 {
  font-size: 18px;
  color: var(--text);
}

.safety-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   STEPS SECTION
   ============================================================ */
.steps-section {
  padding: 90px 0;
  background: var(--bg-primary);
}

.steps__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 52px;
  position: relative;
}

.steps__list::before {
  content: '';
  position: absolute;
  left: 34px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: var(--border);
}

.step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.step:last-child {
  border-bottom: none;
}

.step__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  min-width: 70px;
  background: var(--bg-card);
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
}

.step__content {
  padding-top: 12px;
}

.step__content h4 {
  font-size: 20px;
  color: var(--text);
  margin-bottom: 8px;
}

.step__content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

.steps__cta {
  text-align: center;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: 90px 0;
  background: var(--bg-secondary);
}

.faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item.is-open {
  border-color: var(--border-gold);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.3px;
}
.faq-question:hover {
  color: var(--gold);
}

.faq-question__title {
  margin: 0;
  font: inherit;
}

.faq-question__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card-alt);
  border-radius: 50%;
  font-size: 18px;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
}
.faq-answer p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #06050c;
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__desc {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.7;
  max-width: 280px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.footer__links a {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.5;
}
.footer__links a:hover {
  color: var(--text);
}

.footer__bottom {
  padding: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.footer__warning {
  font-size: 12px;
  color: var(--text-dark);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.footer__warning a {
  color: var(--text-muted);
  text-decoration: underline;
}

.footer__copy {
  font-size: 12px;
  color: #3d3760;
}

/* ============================================================
   ARTICLE SECTIONS (art-section)
   ============================================================ */
.art-section {
  padding: 20px 0;
  background: var(--bg-primary);
}

.art-section--alt {
  background: var(--bg-secondary);
}

.art-section__inner {
  display: grid;
  align-items: center;
  gap: 60px;
}

.art-section__inner--img-right {
  grid-template-columns: 1.6fr 1fr;
}

.art-section__body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.art-section__body--mt {
  margin-top: 24px;
}

.art-section__body h2 {
  font-size: clamp(20px, 3vw, 34px);
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.art-section__body h2 strong {
  font-weight: 700;
  color: var(--text);
}

.art-section__body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
}

.art-section__body ul {
  list-style: none;
  padding: 0;
  margin: 14px 0;
  display: grid;
  gap: 10px;
}

.art-section__body li {
  position: relative;
  padding-left: 22px;
  color: var(--text-muted);
  line-height: 1.7;
}

.art-section__body li::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.14);
}

.art-section__image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.art-section__img {
  width: 100%;
  max-width: 320px;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 0 30px rgba(255,215,0,0.1));
}

.art-section__img--small {
  max-width: 240px;
}

/* Trust grid (why-choose) */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-item__icon {
  font-size: 20px;
  flex-shrink: 0;
}

/* ============================================================
   ABOUT SECTION (legacy - kept for compat)
   ============================================================ */
.about-section {
  padding: 90px 0;
  background: var(--bg-primary);
}

.about-section__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  align-items: center;
  gap: 60px;
}

.about-section__text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-section__text h2 {
  font-size: clamp(22px, 3vw, 36px);
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.about-section__text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}

.about-section__img {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 0 30px rgba(255,215,0,0.1));
}

/* ============================================================
   GAMES GRID (new)
   ============================================================ */
.games__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

/* ============================================================
   PROVIDERS
   ============================================================ */
.providers {
  border-top: 1px solid var(--border);
  padding-top: 52px;
}

.providers__title {
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  text-align: center;
}

.providers__desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 36px;
  text-align: center;
}

.providers__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.provider-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.provider-item:hover {
  border-color: var(--border-gold);
}

.provider-item__icon {
  font-size: 28px;
}

.provider-item h4 {
  font-size: 15px;
  color: var(--gold);
  margin-bottom: 4px;
}

.provider-item p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   WELCOME BONUS TABLE
   ============================================================ */
.welcome-table {
  margin-top: 60px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.welcome-table__title {
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.welcome-table__desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.welcome-table__note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-dark);
  line-height: 1.7;
}

/* ============================================================
   DATA TABLES
   ============================================================ */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.data-table thead tr {
  background: var(--bg-card-alt);
}

.data-table th {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 18px;
  text-align: left;
  white-space: nowrap;
  border-bottom: 1px solid var(--border);
}

.data-table td {
  padding: 13px 18px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}

.data-table td strong {
  color: var(--text);
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

.data-table tbody tr:hover td {
  background: rgba(255,215,0,0.03);
}

/* ============================================================
   PAYMENTS SECTION
   ============================================================ */
.payments-section {
  padding: 90px 0;
  background: var(--bg-primary);
}

.payments-section__note {
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.7;
}

/* ============================================================
   VIP SECTION
   ============================================================ */
.vip-section {
  padding: 90px 0;
  background: var(--bg-secondary);
}

.vip__levels {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
  margin-bottom: 52px;
}

.vip-level {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.vip-level__badge {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 100px;
  text-transform: uppercase;
}

.vip-level__badge--silver   { background: #c0c0c0; color: #111; }
.vip-level__badge--gold     { background: var(--gold); color: #111; }
.vip-level__badge--platinum { background: #e5e4e2; color: #111; }
.vip-level__badge--diamond  { background: #b9f2ff; color: #111; }
.vip-level__badge--elite    { background: #9b59b6; color: #fff; }
.vip-level__badge--royal    { background: #2980b9; color: #fff; }
.vip-level__badge--legend   { background: linear-gradient(135deg, #f6d365, #fda085); color: #111; }

.vip-level p {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
}

.vip__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.vip__info-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.vip__info-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.vip__info-item h4 {
  font-size: 17px;
  color: var(--text);
  margin-bottom: 10px;
}

.vip__info-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================================
   CONCLUSION
   ============================================================ */
.conclusion {
  max-width: 820px;
  margin: 52px auto 0;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
}

.conclusion h3 {
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.conclusion p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .vip__levels {
    grid-template-columns: repeat(4, 1fr);
  }
  .providers__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1100px) {
  .bonuses__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .games__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 960px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .safety__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
  .about-section__inner {
    grid-template-columns: 1fr;
  }
  .about-section__img {
    display: none;
  }
  .vip__info {
    grid-template-columns: 1fr;
  }
  .vip__levels {
    grid-template-columns: repeat(4, 1fr);
  }
  .providers__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .art-section__inner--img-right {
    grid-template-columns: 1fr;
  }
  .art-section__image {
    display: none;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero__label,
  .hero__bonus-badge {
    margin: 0 auto;
  }
  .hero__btns {
    justify-content: center;
  }
  .hero__trust {
    justify-content: center;
  }
  .hero__image {
    max-width: 380px;
    margin: 0 auto;
  }

  .section-header--left {
    text-align: center;
  }
  .section-header--left .section-subtitle {
    margin: 0 auto;
  }

  .app-section__inner {
    grid-template-columns: 1fr;
  }
  .app-section__image {
    display: none;
  }

  .bonuses__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .games__grid {
    grid-template-columns: 1fr;
  }
  .vip__levels {
    grid-template-columns: repeat(3, 1fr);
  }
  .welcome-table {
    padding: 24px 20px;
  }
  .conclusion {
    padding: 24px 20px;
  }
}

@media (max-width: 700px) {
  /* BURGER NAV */
  .burger {
    display: flex;
    z-index: 200;
    position: relative;
  }

  .nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,8,15,0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 150;
  }
  .nav.is-open {
    display: flex;
  }
  .nav__link {
    font-size: 22px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
  }
  .nav__btn {
    margin: 0;
  }

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

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

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

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

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

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

  .art-section {
    padding: 50px 0;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .steps__list::before {
    display: none;
  }

  .step {
    flex-direction: row;
  }

  .hero {
    padding: 50px 0 40px;
  }
}

@media (max-width: 480px) {
  .btn--lg {
    padding: 14px 24px;
    font-size: 16px;
  }

  .hero__btns {
    flex-direction: column;
  }
  .hero__btns .btn {
    width: 100%;
  }

  .faq-question {
    font-size: 15px;
    padding: 18px 18px;
  }
  .faq-answer {
    padding: 0 18px 18px;
  }
}

/* ============================================================
   SLOTS SECTION
   ============================================================ */
.slots-section {
  padding: 44px 0 38px;
  background: var(--bg-secondary);
}

.slots-section__title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  margin-bottom: 28px;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.slot-item {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border);
  transition: transform 0.18s, border-color 0.18s;
}
.slot-item:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
}

.slot-item__img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
}

@media (max-width: 960px) {
  .slots-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .slot-item__img { height: 110px; }
}
@media (max-width: 700px) {
  .slots-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .slot-item__img { height: 100px; }
}
@media (max-width: 480px) {
  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .slot-item__img { height: 90px; }
}
