/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-bg: #fbfbfb;
  --color-black: #000;
  --color-heading: #1a1b33;
  --color-text: #556;
  --color-accent: #fe9700;
  --color-accent-dark: #f47b00;
  --color-surface: #f0f1f6;
  --color-border: #e6e9f0;
  --color-shadow: #ebedf5;
  --color-muted: #4d4d60;
  --color-accent-text: #7c4000;
  --color-white: #fff;
  --color-divider: #1f1f1f;
  --font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  --max-w: 1190px;
  --max-w-wide: 1200px;
  --radius: 5px;
  --radius-lg: 12px;
}

html { font-size: 15px; line-height: 1.4; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); font-size: 15px; font-weight: 400; color: var(--color-text); background: var(--color-bg); line-height: 1.4; }
h1, h2, h3 { font-family: var(--font); }
img { max-width: 100%; height: auto; vertical-align: middle; border-style: none; }
a { color: var(--color-accent); text-decoration: none; -ms-touch-action: manipulation; touch-action: manipulation; }
a:hover { text-decoration: none; opacity: .85; }
h1, h2, h3 { color: var(--color-heading); font-weight: 700; margin: 0; }
h2 { font-size: 28px; line-height: 1.2; }
h3 { font-size: 18px; font-weight: 600; line-height: 1.25; }
p { margin: 0 0 16px; line-height: 22px; }
p:last-child { margin-bottom: 0; }
ul { padding-left: 20px; }
li { margin-bottom: 6px; line-height: 22px; }
table { border-collapse: collapse; background: transparent; width: 100%; }

/* ===== HEADER ===== */
.header {
  background: var(--color-black);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.header-inner {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 52px; width: auto; }
.logo-text { font-size: 22px; font-weight: 700; color: var(--color-white); }

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

/* Language selector */
.lang-selector { position: relative; flex-shrink: 0; }
.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: var(--radius);
  padding: 7px 12px;
  color: var(--color-white);
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.lang-btn:hover { background: #2a2a2a; }
.lang-btn .globe-icon { font-size: 16px; }
.lang-btn .arrow {
  font-size: 10px;
  transition: transform .25s;
  margin-left: 2px;
}
.lang-selector.open .arrow { transform: rotate(180deg); }

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: var(--radius);
  min-width: 220px;
  max-height: 240px;
  overflow-y: auto;
  z-index: 300;
  scrollbar-width: thin;
  scrollbar-color: #444 transparent;
}
.lang-dropdown::-webkit-scrollbar { width: 4px; }
.lang-dropdown::-webkit-scrollbar-thumb { background: #444; border-radius: 4px; }
.lang-selector.open .lang-dropdown { display: block; }
.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  color: #ccc;
  font-size: 14px;
  cursor: pointer;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.lang-option:hover { background: #2a2a2a; color: var(--color-white); }
.lang-option.active { color: var(--color-accent); font-weight: 700; }
.lang-flag { font-size: 18px; line-height: 1; }

/* Header CTA */
.header-cta {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 22px;
  background: var(--color-accent);
  background-image: linear-gradient(to right, var(--color-accent) 0, var(--color-accent-dark) 100%);
  color: var(--color-heading) !important;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 0;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(254,151,0,.4);
  transition: opacity .2s, box-shadow .2s;
  flex-shrink: 0;
}
.header-cta:hover { opacity: .88; box-shadow: 0 4px 18px rgba(254,151,0,.55); }

/* ===== HERO ===== */
.hero {
  position: relative;
  background: var(--color-black);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('image/background.webp');
  background-size: cover;
  background-position: center;
  opacity: .35;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 56px 24px;
  display: flex;
  align-items: center;
  gap: 48px;
  width: 100%;
}
.hero-text { flex: 1; }
/* .hero-badge removed */
.hero h1 {
  color: var(--color-white);
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,.8), 0 1px 3px rgba(0,0,0,.9);
}
.hero-desc {
  color: rgba(255,255,255,.95);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 28px;
  text-shadow: 0 1px 6px rgba(0,0,0,.85);
  background: rgba(0,0,0,.25);
  display: inline-block;
  padding: 6px 10px;
  border-radius: 4px;
  backdrop-filter: blur(2px);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-note {
  margin: 10px 0 0;
  font-size: 12px;
  color: rgba(255,255,255,.65);
  text-shadow: 0 1px 4px rgba(0,0,0,.7);
  font-style: italic;
  letter-spacing: .2px;
}
/* Primary = accent (Play for Real Money) */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  height: 52px;
  padding: 0 32px;
  background: var(--color-accent);
  background-image: linear-gradient(to right, var(--color-accent) 0, var(--color-accent-dark) 100%);
  color: var(--color-heading) !important;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(254,151,0,.5);
  transition: opacity .2s, transform .2s;
}
.btn-hero-primary:hover { opacity: .9; transform: translateY(-2px); }
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  height: 52px;
  padding: 0 28px;
  background: rgba(0,0,0,.45);
  border: 2px solid rgba(255,255,255,.7);
  color: var(--color-white) !important;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background .2s, border-color .2s;
  backdrop-filter: blur(4px);
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
}
.btn-hero-secondary:hover { background: rgba(0,0,0,.6); border-color: #fff; color: var(--color-white) !important; }

.hero-meta {
  display: flex;
  gap: 0;
  margin-top: 32px;
  flex-wrap: wrap;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  overflow: hidden;
  max-width: 480px;
  backdrop-filter: blur(8px);
}
.hero-meta-item {
  flex: 1;
  min-width: 80px;
  text-align: center;
  padding: 14px 12px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.hero-meta-item:last-child { border-right: none; }
.hero-meta-item .val {
  display: block;
  color: var(--color-accent);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
  text-shadow: 0 1px 6px rgba(0,0,0,.7);
}
.hero-meta-item .lbl {
  display: block;
  color: rgba(255,255,255,.9);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .6px;
}

/* .hero-image removed */

/* ===== PAGE WRAPPER ===== */
.page-wrapper {
  max-width: var(--max-w);
  margin: 28px auto 0;
  padding: 0 16px;
}
.row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0;
}
.left-side-content {
  width: 100%;
}
/* sidebar removed */

/* ===== CONTENT / TEXT ===== */
.text { font-size: 15px; overflow-x: hidden; }
.text > * { color: var(--color-text); font-size: 15px; }
.text p { line-height: 22px; margin: 0 0 16px; }
.text h2 {
  font-size: 26px;
  color: var(--color-heading);
  margin: 40px 0 12px;
  line-height: 33px;
}
.text h3 {
  font-size: 24px;
  color: var(--color-heading);
  line-height: 1.25;
  margin: 24px 0 12px;
  font-weight: 700;
}
.text ul li { color: var(--color-text); }
.text strong { color: var(--color-heading); }
.left-side-content figure {
  margin: 40px auto;
  max-width: 720px;
  text-align: center;
  position: relative;
}

/* Decorative top label "Screenshot" */
.left-side-content figure::before {
  content: 'Screenshot';
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(254,151,0,.1);
  border: 1px solid rgba(254,151,0,.25);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.left-side-content figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow:
    0 2px 0 var(--color-accent),
    0 6px 32px rgba(26,27,51,.15),
    0 1px 4px rgba(26,27,51,.08);
  border: 1px solid var(--color-border);
  transition: box-shadow .25s, transform .25s;
}

.left-side-content figure img:hover {
  box-shadow:
    0 2px 0 var(--color-accent),
    0 12px 40px rgba(26,27,51,.2),
    0 2px 8px rgba(26,27,51,.1);
  transform: translateY(-2px);
}

.left-side-content figcaption {
  margin-top: 14px;
  font-size: 13px;
  color: var(--color-text);
  line-height: 1.55;
  font-style: italic;
  padding: 10px 16px 10px 14px;
  background: var(--color-surface);
  border-left: 3px solid var(--color-accent);
  border-radius: 0 6px 6px 0;
  text-align: left;
  max-width: 88%;
  display: inline-block;
  box-shadow: 0 1px 4px rgba(26,27,51,.06);
}

/* Inline table */
.text table {
  width: 100%;
  margin: 16px 0;
  font-size: 14px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.text table th {
  background: var(--color-heading);
  color: var(--color-white);
  padding: 10px 14px;
  text-align: left;
  font-weight: 700;
}
.text table td {
  padding: 9px 14px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  vertical-align: top;
}
.text table tr:last-child td { border-bottom: none; }
.text table tr:nth-child(even) td { background: var(--color-surface); }

/* ===== PLAY BUTTON BLOCK ===== */
.btn-play-block {
  display: block;
  width: 100%;
  max-width: 320px;
  height: 55px;
  line-height: 55px;
  margin: 20px auto 36px;
  background: var(--color-accent);
  background-image: linear-gradient(to right, var(--color-accent) 0, var(--color-accent-dark) 100%);
  color: var(--color-heading) !important;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(254,151,0,.35);
  transition: opacity .2s, transform .2s;
}
.btn-play-block:hover { opacity: .9; transform: translateY(-2px); }

/* ===== DEMO SECTION ===== */
.demo-section { margin: 0 0 8px; }
.demo-section h2 { font-size: 24px; color: var(--color-heading); margin-bottom: 12px; }

/* Wrapper constrains width on mobile */
.demo-frame-wrap {
  width: 100%;
  margin: 0 auto;
}

/* Placeholder — desktop 16:9 */
.demo-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-image: url('image/background.webp');
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.demo-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .62);
  border-radius: var(--radius);
}
.demo-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 58px;
  padding: 0 36px;
  background: var(--color-accent);
  background-image: linear-gradient(to right, var(--color-accent) 0, var(--color-accent-dark) 100%);
  color: var(--color-heading);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  box-shadow: 0 6px 28px rgba(0,0,0,.5), 0 0 0 3px rgba(254,151,0,.3);
  cursor: pointer;
  white-space: nowrap;
  transition: transform .2s, box-shadow .2s;
  font-family: inherit;
}
.demo-placeholder:hover .demo-play-btn {
  transform: translate(-50%, -52%);
  box-shadow: 0 10px 36px rgba(0,0,0,.6), 0 0 0 4px rgba(254,151,0,.5);
}
.demo-play-btn svg { flex-shrink: 0; }

/* Loaded iframe */
.demo-iframe {
  display: none;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: var(--radius);
}
.demo-iframe.active { display: block; }

/* Mobile: 9:16, max 80% width */
@media (max-width: 620px) {
  .demo-frame-wrap { max-width: 80%; }
  .demo-placeholder { aspect-ratio: 9 / 16; }
  .demo-iframe { aspect-ratio: 9 / 16; }
  .demo-play-btn { font-size: 15px; padding: 0 24px; height: 50px; }
}

/* ===== SLOTS DATA (Quick Facts) ===== */
.slots-data {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 24px 0 36px;
  background: var(--color-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(26,27,51,.08), 0 1px 4px rgba(26,27,51,.05);
  border: 1px solid var(--color-border);
}
.slots-data dl {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 18px;
  margin: 0;
  border-bottom: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  background: var(--color-white);
  transition: background .15s;
}
.slots-data dl:hover { background: #f7f8fc; }
.slots-data dl:nth-child(2n) { border-right: none; }
.slots-data dl:nth-last-child(1),
.slots-data dl:nth-last-child(2):nth-child(odd) { border-bottom: none; }
.slots-data dl:last-child { border-bottom: none; }
.slots-data dl dt {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-accent-text);
  margin: 0;
}
.slots-data dl dd {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-heading);
  margin: 0;
  line-height: 1.4;
}
@media (max-width: 800px) {
  .slots-data { grid-template-columns: 1fr; }
  .slots-data dl { border-right: none; }
  .slots-data dl:nth-last-child(2) { border-bottom: 1px solid var(--color-border); }
}

/* ===== PROS & CONS ===== */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 16px 0 24px;
}
.pros-cons-col {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.pros-cons-col__head {
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pros-cons-col--pros .pros-cons-col__head {
  background: #e6f4ea;
  color: #1e6b35;
  border-bottom: 1px solid #b7dfc3;
}
.pros-cons-col--cons .pros-cons-col__head {
  background: #fdecea;
  color: #a82b2b;
  border-bottom: 1px solid #f5c2be;
}
.pros-cons-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pros-cons-col ul li {
  padding: 9px 16px 9px 12px;
  font-size: 14px;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
  margin: 0;
}
.pros-cons-col ul li:last-child { border-bottom: none; }
.pros-cons-col--pros ul li::before {
  content: '✓';
  color: #1e6b35;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.pros-cons-col--cons ul li::before {
  content: '✗';
  color: #a82b2b;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
@media (max-width: 620px) {
  .pros-cons { grid-template-columns: 1fr; }
}

/* ===== FAQ ===== */
.faq { margin-bottom: 40px; }
.faq-title {
  text-transform: uppercase;
  color: var(--color-heading);
  font-weight: 700;
  font-size: 22px;
  margin: 40px 0 20px;
}
.faq-item {
  margin-bottom: 8px;
  border: 1px solid var(--color-border);
  box-shadow: 0 2px 8px var(--color-shadow);
  border-radius: 8px;
  background: var(--color-white);
}
.faq-question-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  cursor: pointer;
  border-radius: 8px;
  background: var(--color-white);
  transition: background .15s;
}
.faq-question-wrapper:hover { background: #f9f9fc; }
.faq-question {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-heading);
  margin: 0;
  padding-right: 16px;
  line-height: 1.3;
}
.faq-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-text);
  font-size: 18px;
  font-weight: 700;
  transition: transform .25s;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 4px 16px 14px;
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.6;
  background: var(--color-white);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.faq-item.open .faq-answer { display: block; }

/* ===== CASINO CARDS ===== */
.casinos-section { width: 100%; margin-bottom: 8px; }
.casinos-title { font-size: 22px; color: var(--color-heading); margin: 0 0 16px; }
.casino-card {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--color-surface);
  padding: 16px;
  margin-bottom: 12px;
  border-radius: var(--radius);
  position: relative;
  transition: transform .2s ease-out, box-shadow .2s ease-out;
}
.casino-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px #d7dae0; }
.casino-logo { width: 110px; flex-shrink: 0; margin-right: 16px; }
.casino-logo img { width: 110px; height: 80px; object-fit: cover; border-radius: var(--radius); display: block; }
.casino-info { flex: 1; }
.casino-name { font-size: 20px; font-weight: 700; color: var(--color-heading); margin-bottom: 6px; }
.casino-bonus { font-size: 14px; color: var(--color-text); line-height: 1.4; }
.casino-bonus strong { color: var(--color-accent); }
.casino-btn-wrap { flex-shrink: 0; margin-left: 16px; }
.btn-casino {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 20px;
  background: var(--color-accent);
  background-image: linear-gradient(to right, var(--color-accent) 0, var(--color-accent-dark) 100%);
  color: var(--color-heading) !important;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--radius);
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(254,151,0,.3);
  transition: opacity .2s;
}
.btn-casino:hover { opacity: .85; }

/* ===== UPDATED AT ===== */
.updated-at {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-muted);
  margin: 20px 0 0;
}
.updated-at time { font-weight: 600; color: var(--color-heading); }

/* ===== FOOTER ===== */
.footer { background: var(--color-black); margin-top: 48px; }
.footer-inner {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 12px 16px 32px;
  border-top: 2px solid var(--color-divider);
}
.footer-logos { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.footer-logos img { height: 36px; border-radius: var(--radius); }
.footer-text {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  text-align: center;
  line-height: 1.6;
}
.footer-text p { margin-bottom: 6px; text-align: justify; line-height: 20px; }
.footer-text a { color: rgba(255,255,255,.6); text-decoration: underline; }
.footer-text a:hover { color: var(--color-white); }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero h1 { font-size: 34px; }
}
@media (max-width: 800px) {
  .slots-data dl { width: 100%; }
}
@media (max-width: 620px) {
  .hero h1 { font-size: 26px; }
  .hero-desc { font-size: 14px; }
  .hero-meta { max-width: 100%; }
  .text h2 { font-size: 22px; margin: 32px 0 8px; }
  .text h3 { font-size: 18px; }
  .casino-card { flex-direction: column; align-items: flex-start; }
  .casino-logo { margin-right: 0; margin-bottom: 10px; }
  .casino-btn-wrap { margin-left: 0; margin-top: 10px; width: 100%; }
  .btn-casino { display: block; width: 100%; text-align: center; }
}
@media (max-width: 480px) {
  .hero-inner { padding: 36px 16px; }
  .btn-hero-primary, .btn-hero-secondary { height: 44px; font-size: 14px; padding: 0 20px; }
  .hero-meta-item { padding: 10px 8px; }
  .hero-meta-item .val { font-size: 19px; }
}
