:root{
  --bg-900:#0d0a09;
  --bg-850:#15110f;
  --bg-800:#1c1714;
  --bg-760:#241d18;
  --bg-700:#30261f;

  --paper-100:#f3e6c8;
  --paper-150:#ebd9b0;
  --paper-200:#d8c29a;
  --paper-300:#b9996a;
  --dust-400:#9a7b58;

  --gold-300:#f2cf76;
  --gold-400:#d9af56;
  --gold-500:#b98a2e;

  --red-400:#e1644a;
  --red-500:#c94a31;
  --red-600:#9c3221;

  --success-500:#4fa36c;
  --warning-500:#d7a544;
  --info-500:#6da3c9;

  --line-700:#4a392e;
  --line-500:#6a5444;

  --shadow-sm:0 2px 8px rgba(0,0,0,.18);
  --shadow-md:0 10px 24px rgba(0,0,0,.24);
  --shadow-lg:0 18px 48px rgba(0,0,0,.34);

  --radius-12:12px;
  --radius-16:16px;
  --radius-20:20px;
  --radius-24:24px;
  --radius-pill:999px;

  --container:1280px;
  --header-h:88px;
}

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

html{
  scroll-behavior:smooth;
  scroll-padding-top:110px;
}

body{
  margin:0;
  font-family:'Inter',system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  color:var(--paper-100);
  background:
    radial-gradient(circle at top, rgba(185,138,46,.08), transparent 35%),
    linear-gradient(180deg, #0b0908 0%, #15110f 40%, #0d0a09 100%);
  line-height:1.6;
  overflow-x:hidden;
}

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

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

button,
input,
textarea,
select{
  font:inherit;
}

button{
  cursor:pointer;
}

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

/* header */
.site-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:1000;
  height:var(--header-h);
  background:rgba(13,10,9,.84);
  border-bottom:1px solid rgba(217,175,86,.15);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
}

.site-header::after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(217,175,86,.4), transparent);
}

.header-inner{
  height:100%;
  display:flex;
  align-items:center;
  gap:24px;
}

.brand{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
}

.brand-logo{
  width:auto;
  height:56px;
  object-fit:contain;
}

.nav{
  flex:1 1 auto;
  display:flex;
  align-items:center;
  gap:8px;
  min-width:0;
}

.nav-link{
  position:relative;
  padding:12px 14px;
  border-radius:12px;
  color:var(--paper-200);
  font-size:14px;
  font-weight:600;
  transition:.18s ease;
  white-space:nowrap;
}

.nav-link:hover{
  color:var(--paper-100);
  background:rgba(217,175,86,.08);
}

.nav-link::after{
  content:"";
  position:absolute;
  left:14px;
  right:14px;
  bottom:6px;
  height:1px;
  transform:scaleX(0);
  transform-origin:left;
  background:linear-gradient(90deg, var(--gold-300), transparent);
  transition:.18s ease;
}

.nav-link:hover::after{
  transform:scaleX(1);
}

.nav-link-mobile-cta{
  display:none;
}

.header-actions{
  display:flex;
  align-items:center;
  gap:12px;
  flex:0 0 auto;
}

.lang{
  position:relative;
  flex:0 0 auto;
}

.lang-btn{
  min-height:44px;
  border:1px solid rgba(217,175,86,.28);
  background:rgba(36,29,24,.9);
  color:var(--paper-100);
  border-radius:999px;
  padding:0 16px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  white-space:nowrap;
  transition:.18s ease;
}

.lang-btn:hover{
  background:rgba(48,38,31,.96);
  border-color:rgba(217,175,86,.45);
}

.lang-btn-caret{
  width:10px;
  height:10px;
  border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;
  transform:rotate(45deg) translateY(-1px);
  transition:.18s ease;
}

.lang.is-open .lang-btn-caret{
  transform:rotate(225deg) translateY(-1px);
}

.lang-menu{
  position:absolute;
  top:calc(100% + 10px);
  right:0;
  min-width:220px;
  max-width:min(88vw, 280px);
  background:linear-gradient(180deg, rgba(36,29,24,.98), rgba(21,17,15,.98));
  border:1px solid rgba(217,175,86,.24);
  box-shadow:var(--shadow-lg);
  border-radius:16px;
  padding:8px;
  display:none;
}

.lang.is-open .lang-menu{
  display:block;
}

.lang-item{
  width:100%;
  min-height:44px;
  display:flex;
  align-items:center;
  text-align:left;
  padding:0 12px;
  background:transparent;
  border:0;
  color:var(--paper-200);
  border-radius:12px;
  font-weight:600;
}

.lang-item:hover{
  background:rgba(217,175,86,.08);
  color:var(--paper-100);
}

.cta-play,
.btn{
  min-height:48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:0 20px;
  border-radius:999px;
  font-size:15px;
  font-weight:800;
  line-height:1;
  border:1px solid transparent;
  transition:.18s ease;
  cursor: pointer;
}

.header-cta-mobile{
  display:none;
}

.header-cta,
.btn-primary{
  color:#fff;
  background:linear-gradient(180deg, var(--red-400), var(--red-600));
  box-shadow:0 10px 30px rgba(201,74,49,.25);
}

.header-cta:hover,
.btn-primary:hover{
  transform:translateY(-1px);
  filter:brightness(1.05);
}

.btn-secondary{
  color:var(--paper-100);
  background:rgba(36,29,24,.95);
  border-color:rgba(217,175,86,.35);
  box-shadow:0 10px 26px rgba(0,0,0,.18);
}

.btn-secondary:hover{
  transform:translateY(-1px);
  background:rgba(48,38,31,.95);
  border-color:rgba(217,175,86,.5);
}

.menu-toggle{
  width:44px;
  height:44px;
  display:none;
  align-items:center;
  justify-content:center;
  background:rgba(36,29,24,.95);
  border:1px solid rgba(217,175,86,.24);
  border-radius:12px;
  color:var(--paper-100);
  padding:0;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after{
  content:"";
  display:block;
  width:18px;
  height:2px;
  border-radius:2px;
  background:currentColor;
  position:relative;
  transition:.18s ease;
}

.menu-toggle span::before{ position:absolute; top:-6px; left:0; }
.menu-toggle span::after{ position:absolute; top:6px; left:0; }

.menu-open .menu-toggle span{
  background:transparent;
}
.menu-open .menu-toggle span::before{
  top:0;
  transform:rotate(45deg);
}
.menu-open .menu-toggle span::after{
  top:0;
  transform:rotate(-45deg);
}

/* sections */
.section{
  padding:96px 0;
}

main > .section:first-child{
  padding-top:calc(var(--header-h) + 40px);
}

.section-alt{
  background:
    linear-gradient(180deg, rgba(243,230,200,.03), rgba(243,230,200,0)),
    linear-gradient(180deg, rgba(21,17,15,.65), rgba(28,23,20,.92));
  border-top:1px solid rgba(217,175,86,.08);
  border-bottom:1px solid rgba(217,175,86,.08);
}

.section-head{
  max-width:100%;
  margin:0 auto 40px;
  text-align:center;
}

.section-head--hero{
  max-width:100%;
  margin-bottom:48px;
}

.section-head-small{
  margin-top:56px;
  margin-bottom:28px;
}

.eyebrow{
  display:inline-block;
  margin-bottom:12px;
  padding:8px 14px;
  border-radius:999px;
  color:var(--gold-300);
  background:rgba(217,175,86,.08);
  border:1px solid rgba(217,175,86,.22);
  font-size:12px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}

h1,h2,h3,h4,h5,h6{
  margin:0 0 16px;
  line-height:1.1;
  letter-spacing:-.03em;
}

h1{
  font-size:clamp(38px, 6vw, 66px);
  color:var(--paper-100);
}

h2{
  font-size:clamp(30px, 4.5vw, 46px);
}

h3{
  font-size:clamp(22px, 3vw, 30px);
}

.lead{
  margin:0 auto;
  color:var(--paper-200);
  font-size:clamp(17px, 2vw, 20px);
  line-height:1.75;
  max-width:80ch;
}

.hero-section .lead{
  max-width:78ch;
  text-align: justify;
}

/* intro */
.intro-grid{
  display:grid;
  grid-template-columns:500px 1fr;
  gap:32px;
  align-items:stretch;
}

.poster-frame{
  position:relative;
  background:linear-gradient(180deg, rgba(243,230,200,.06), rgba(243,230,200,.02));
  border:1px solid rgba(217,175,86,.18);
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow-lg);
}

.poster-frame::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at top right, rgba(217,175,86,.14), transparent 30%),
    linear-gradient(180deg, transparent, rgba(0,0,0,.18));
}

.poster-frame img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:contain;
}

.poster-frame-sm img{
  aspect-ratio:1.05/1;
}

.panel{
  background:linear-gradient(180deg, rgba(28,23,20,.96), rgba(21,17,15,.96));
  border:1px solid rgba(217,175,86,.12);
  border-radius:24px;
  padding:28px;
  box-shadow:var(--shadow-md);
}

.panel-premium{
  border-color:rgba(217,175,86,.28);
}

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

.panel-title{
  margin:0;
  font-size:24px;
}

.status-badge{
  flex:0 0 auto;
  border-radius:999px;
  padding:8px 12px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#fff;
  background:linear-gradient(180deg, rgba(201,74,49,.95), rgba(156,50,33,.95));
}

.info-table{
  display:grid;
  gap:10px;
}

.info-row{
  display:grid;
  grid-template-columns:190px 1fr;
  gap:16px;
  padding:12px 0;
  border-bottom:1px dashed rgba(217,175,86,.14);
}

.info-row:last-child{
  border-bottom:0;
}

.info-k{
  color:var(--dust-400);
  font-weight:600;
}

.info-v{
  color:var(--paper-100);
  font-weight:700;
}

.mini-metrics{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:24px;
}

.metric-card{
  background:rgba(243,230,200,.035);
  border:1px solid rgba(217,175,86,.12);
  border-radius:16px;
  padding:16px;
}

.metric-k{
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.1em;
  color:var(--dust-400);
  margin-bottom:8px;
}

.metric-v{
  font-size:15px;
  font-weight:800;
  color:var(--paper-100);
}

.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

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

.casino-card{
  position:relative;
  background:linear-gradient(180deg, rgba(28,23,20,.96), rgba(21,17,15,.98));
  border:1px solid rgba(217,175,86,.14);
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow-md);
  overflow:hidden;
}

.casino-card-featured{
  border-color:rgba(217,175,86,.42);
  box-shadow:0 16px 40px rgba(185,138,46,.14);
}

.casino-card.casino-card-featured{
    overflow: visible;
}

.casino-ribbon{
  position:absolute;
  padding:8px 12px;
  font-size:11px;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
  border-radius:999px;
  color:#1b140f;
  background:linear-gradient(180deg, var(--gold-300), var(--gold-500));
  width: 170px;
    text-align: center;
    top: -18px;
    right: calc(50% - 85px);
}

.casino-top{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  align-items:center;
}

.casino-logo{
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  border:1px solid rgba(217,175,86,.16);
  background:rgba(243,230,200,.035);
}

.casino-logo-text{
  font-size:20px;
  font-weight:900;
  letter-spacing:.1em;
  color:var(--paper-100);
}

.casino-name{
  font-size:18px;
  font-weight:800;
  margin-bottom:8px;
}

.casino-rating{
  display:flex;
  align-items:center;
  gap:10px;
}

.stars{
  display:inline-flex;
  gap:4px;
}

.star{
  width:14px;
  height:14px;
  display:inline-block;
  clip-path:polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
  background:rgba(217,175,86,.24);
}

.star.on{
  background:var(--gold-300);
}

.star.half{
  background:linear-gradient(90deg, var(--gold-300) 50%, rgba(217,175,86,.24) 50%);
}

.rating-num{
  font-weight:800;
  color:var(--paper-100);
}

.casino-bonus{
  margin-top:20px;
  padding:16px 18px;
  border-radius:18px;
  background:linear-gradient(180deg, rgba(201,74,49,.12), rgba(201,74,49,.06));
  border:1px solid rgba(201,74,49,.18);
  text-align: center;
}

.bonus-k{
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.1em;
  color:var(--paper-200);
  margin-bottom:6px;
}

.bonus-v{
  font-size:20px;
  font-weight:900;
  color:#fff;
}

.casino-feature{
  margin-top:16px;
  display:flex;
  align-items:center;
  justify-content: center;
  gap:10px;
  color:var(--paper-200);
  font-weight:600;
}

.crown{
  color:var(--gold-300);
}

.casino-cta{
  margin-top:22px;
}

.casino-cta .btn{
  width:100%;
}

/* demo */
.game-frame{
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(217,175,86,.18);
  background:linear-gradient(180deg, rgba(28,23,20,.95), rgba(13,10,9,.98));
  box-shadow:var(--shadow-lg);
}

.game-frame-bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 18px;
  border-bottom:1px solid rgba(217,175,86,.12);
  background:rgba(243,230,200,.035);
}

.dots{
  display:flex;
  gap:6px;
}

.dots span{
  width:10px;
  height:10px;
  border-radius:50%;
  background:rgba(243,230,200,.22);
}

.frame-title{
  flex:1 1 auto;
  font-size:14px;
  font-weight:700;
  color:var(--paper-200);
}

.frame-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.frame-link{
  color:var(--paper-200);
  font-size:14px;
  font-weight:600;
}

.frame-link:hover{
  color:var(--gold-300);
}

.frame-btn{
  height:38px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid rgba(217,175,86,.22);
  background:rgba(36,29,24,.95);
  color:var(--paper-100);
  font-weight:700;
}

.game-frame-body{
  position:relative;
  aspect-ratio:16/9;
  background:#0a0807;
}

.demo-placeholder,
.video-lazy{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.demo-placeholder-img,
.video-lazy img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.demo-placeholder-overlay,
.video-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.48)),
    radial-gradient(circle at center, rgba(201,74,49,.14), transparent 35%);
}

.demo-play-btn,
.video-play-btn{
  position:relative;
  z-index:2;
  min-height:58px;
  border:1px solid rgba(217,175,86,.38);
  border-radius:999px;
  padding:0 26px;
  background:linear-gradient(180deg, var(--red-400), var(--red-600));
  color:#fff;
  font-size:16px;
  font-weight:800;
  box-shadow:0 12px 34px rgba(201,74,49,.28);
}

.demo-hint{
  position:absolute;
  left:50%;
  bottom:28px;
  transform:translateX(-50%);
  z-index:2;
  color:var(--paper-200);
  font-weight:600;
  text-align:center;
}

#demoIframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  display:none;
  background:#000;
}

.demo-fallback-note{
  position:absolute;
  left:24px;
  right:24px;
  bottom:24px;
  z-index:4;
  padding:14px 16px;
  border-radius:14px;
  background:rgba(13,10,9,.84);
  color:var(--paper-100);
  border:1px solid rgba(217,175,86,.18);
}

/* content blocks */
.content-grid{
  display:grid;
  grid-template-columns:minmax(0,1.35fr) minmax(320px,.85fr);
  gap:28px;
  align-items:start;
}

.content-card{
  background:linear-gradient(180deg, rgba(28,23,20,.95), rgba(21,17,15,.96));
  border:1px solid rgba(217,175,86,.12);
  border-radius:24px;
  padding:28px;
  box-shadow:var(--shadow-md);
}

.content-card p{
  margin:0 0 18px;
  color:var(--paper-200);
  font-size:17px;
  line-height:1.82;
}

.content-card p:last-child{
  margin-bottom:0;
}

.content-side{
  display:grid;
  gap:22px;
}

.info-table-compact .info-row{
  grid-template-columns:140px 1fr;
}

/* tables */
.table-wrap{
  overflow:auto;
  border-radius:20px;
  border:1px solid rgba(217,175,86,.12);
  box-shadow:var(--shadow-md);
}

.data-table{
  width:100%;
  border-collapse:collapse;
  min-width:760px;
  background:linear-gradient(180deg, rgba(28,23,20,.97), rgba(21,17,15,.97));
}

.data-table caption{
  text-align:left;
  padding:18px 22px 0;
  color:var(--dust-400);
  font-size:13px;
  font-weight:700;
}

.data-table th,
.data-table td{
  text-align:left;
  vertical-align:top;
  padding:16px 22px;
  border-bottom:1px solid rgba(217,175,86,.1);
}

.data-table th{
  color:var(--paper-100);
  font-size:14px;
  font-weight:800;
  background:rgba(243,230,200,.03);
}

.data-table td{
  color:var(--paper-200);
}

.note{
  margin-top:24px;
  padding:18px 20px;
  border-radius:18px;
  border:1px solid rgba(217,175,86,.18);
  background:rgba(243,230,200,.035);
  color:var(--paper-200);
}

.note-warning{
  border-color:rgba(215,165,68,.24);
  background:rgba(215,165,68,.06);
}

.note-info{
  border-color:rgba(109,163,201,.22);
  background:rgba(109,163,201,.06);
}

/* features */
.feature-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}

.feature-card{
  background:linear-gradient(180deg, rgba(28,23,20,.95), rgba(21,17,15,.98));
  border:1px solid rgba(217,175,86,.12);
  border-radius:24px;
  padding:26px;
  box-shadow:var(--shadow-md);
}

.feature-icon{
  width:56px;
  height:56px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--gold-300);
  background:rgba(217,175,86,.08);
  border:1px solid rgba(217,175,86,.22);
  border-radius:16px;
  margin-bottom:18px;
}

.feature-icon svg{
  width:28px;
  height:28px;
}

.feature-card p{
  color:var(--paper-200);
  margin:0 0 18px;
}

.list-check{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:10px;
}

.list-check li{
  position:relative;
  padding-left:24px;
  color:var(--paper-200);
}

.list-check li::before{
  content:"";
  position:absolute;
  left:0;
  top:.5em;
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--gold-300);
  box-shadow:0 0 0 4px rgba(217,175,86,.12);
}

/* media */
.media-grid{
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(320px,.9fr);
  gap:28px;
  align-items:start;
}

.video-shell,
.manual-card{
  min-width:0;
}

.video-shell{
  background:linear-gradient(180deg, rgba(28,23,20,.95), rgba(21,17,15,.98));
  border:1px solid rgba(217,175,86,.12);
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow-md);
}

.video-lazy{
  position:relative;
  aspect-ratio:16/9;
}

.manual-card{
  background:linear-gradient(180deg, rgba(28,23,20,.95), rgba(21,17,15,.98));
  border:1px solid rgba(217,175,86,.12);
  border-radius:24px;
  padding:26px;
  box-shadow:var(--shadow-md);
}

.manual-list{
  margin:0;
  padding-left:20px;
  display:grid;
  gap:14px;
  color:var(--paper-200);
}

/* slider */
.slider-shell{
  position:relative;
  display:flex;
  align-items:center;
  gap:12px;
}

.slider-viewport{
  overflow:hidden;
  width:100%;
}

.slider-track{
  display:flex;
  gap:20px;
  will-change:transform;
  transition:transform .28s cubic-bezier(.2,.8,.2,1);
}

.slide-card{
  flex:0 0 calc((100% - 40px) / 3);
  aspect-ratio:3/2;
  border:1px solid rgba(217,175,86,.16);
  background:rgba(243,230,200,.04);
  border-radius:22px;
  overflow:hidden;
  padding:0;
  box-shadow:var(--shadow-md);
}

.slide-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.slider-arrow{
  width:46px;
  height:46px;
  flex:0 0 46px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  border:1px solid rgba(217,175,86,.22);
  background:rgba(36,29,24,.95);
  color:var(--paper-100);
  font-size:28px;
  line-height:1;
}

.slider-arrow[disabled]{
  opacity:.38;
  cursor:default;
}

/* conclusion */
.final-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}

.final-card{
  background:linear-gradient(180deg, rgba(28,23,20,.95), rgba(21,17,15,.98));
  border:1px solid rgba(217,175,86,.12);
  border-radius:24px;
  padding:26px;
  box-shadow:var(--shadow-md);
}

.final-card--pros{
  border-color:rgba(79,163,108,.26);
}

.final-card--cons{
  border-color:rgba(201,74,49,.24);
}

.final-head{
  margin-bottom:18px;
}

.final-badge{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(79,163,108,.16);
  color:#b7ebc8;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:12px;
}

.final-badge--hades{
  background:rgba(201,74,49,.14);
  color:#ffb7ab;
}

.final-title{
  margin:0;
}

.final-list{
  margin:0;
  padding-left:20px;
  display:grid;
  gap:14px;
  color:var(--paper-200);
}

.final-verdict{
  margin-top:28px;
  background:linear-gradient(180deg, rgba(28,23,20,.98), rgba(21,17,15,.98));
  border:1px solid rgba(217,175,86,.26);
  border-radius:24px;
  padding:28px;
  box-shadow:var(--shadow-lg);
}

.verdict-top{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:18px;
}

.verdict-icon{
  width:66px;
  height:66px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  color:var(--gold-300);
  background:rgba(217,175,86,.08);
  border:1px solid rgba(217,175,86,.22);
}

.verdict-icon svg{
  width:32px;
  height:32px;
}

.verdict-title{
  margin:0 0 8px;
}

.verdict-score{
  display:flex;
  align-items:flex-end;
  gap:4px;
}

.score-num{
  font-size:48px;
  font-weight:900;
  line-height:1;
  color:var(--paper-100);
}

.score-max{
  font-size:20px;
  font-weight:800;
  color:var(--dust-400);
}

.verdict-text p{
  margin:0;
  color:var(--paper-200);
  font-size:17px;
  line-height:1.8;
}

.author-updated{
  margin-top:18px;
  color:var(--dust-400);
  font-size:14px;
}

/* author */
.author-card{
  background:linear-gradient(180deg, rgba(28,23,20,.96), rgba(21,17,15,.98));
  border:1px solid rgba(217,175,86,.14);
  border-radius:28px;
  padding:28px;
  box-shadow:var(--shadow-lg);
}

.author-top{
  display:grid;
  grid-template-columns:260px 1fr;
  gap:28px;
  align-items:start;
}

.author-avatar{
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(217,175,86,.18);
  background:rgba(243,230,200,.03);
}

.author-avatar img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
}

.author-name{
  margin-bottom:8px;
}

.author-role{
  color:var(--gold-300);
  font-weight:700;
  margin-bottom:16px;
}

.author-bio{
  margin:0 0 20px;
  color:var(--paper-200);
}

.author-feats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.author-feat{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:16px;
  border-radius:18px;
  border:1px solid rgba(217,175,86,.12);
  background:rgba(243,230,200,.03);
}

.author-feat-icn{
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--gold-300);
  flex:0 0 42px;
}

.author-feat-icn svg{
  width:24px;
  height:24px;
}

.author-feat-k{
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--dust-400);
  margin-bottom:6px;
}

.author-feat-v{
  color:var(--paper-100);
  font-weight:700;
}

/* faq */
.faq-list{
  display:grid;
  gap:14px;
}

.faq-item{
  background:linear-gradient(180deg, rgba(28,23,20,.96), rgba(21,17,15,.98));
  border:1px solid rgba(217,175,86,.12);
  border-radius:20px;
  overflow:hidden;
  box-shadow:var(--shadow-sm);
}

.faq-q{
  width:100%;
  padding:20px 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  background:transparent;
  border:0;
  text-align:left;
  color:var(--paper-100);
  font-size:18px;
  font-weight:800;
}

.faq-plus{
  position:relative;
  width:18px;
  height:18px;
  flex:0 0 18px;
}

.faq-plus::before,
.faq-plus::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:18px;
  height:2px;
  background:var(--gold-300);
  border-radius:2px;
  transform:translate(-50%,-50%);
  transition:.18s ease;
}

.faq-plus::after{
  transform:translate(-50%,-50%) rotate(90deg);
}

.faq-item.is-open .faq-plus::after{
  transform:translate(-50%,-50%) rotate(0deg);
  opacity:0;
}

.faq-a{
  display:none;
}

.faq-a-inner{
  padding:0 22px 20px;
  color:var(--paper-200);
}

/* footer */
.site-footer{
  position:relative;
  padding:64px 0 36px;
  background:
    linear-gradient(180deg, rgba(21,17,15,.96), rgba(13,10,9,1));
  border-top:1px solid rgba(217,175,86,.12);
}

.footer-grid{
  display:grid;
  grid-template-columns:1.4fr .8fr 1fr;
  gap:28px;
}

.footer-logo img{
  height:auto;
  width:auto;
  object-fit:contain;
  margin: auto;
}

.footer-text{
  color:var(--paper-200);
  margin:18px 0;
}

.footer-title{
  font-size:15px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--gold-300);
  margin-bottom:18px;
}

.footer-nav{
  display:grid;
  align-content:start;
  gap:10px;
}

.footer-link{
  color:var(--paper-200);
}

.footer-link:hover{
  color:var(--paper-100);
}

.footer-chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.footer-chip{
  min-height:34px;
  display:inline-flex;
  align-items:center;
  padding:0 12px;
  border-radius:999px;
  background:rgba(243,230,200,.035);
  border:1px solid rgba(217,175,86,.14);
  color:var(--paper-100);
  font-size:13px;
  font-weight:700;
}

.footer-chip-link:hover{
  border-color:rgba(217,175,86,.34);
  color:var(--gold-300);
}

.safe-card{
  padding:18px;
  border-radius:20px;
  background:rgba(243,230,200,.03);
  border:1px solid rgba(217,175,86,.12);
}

.safe-row{
  display:flex;
  gap:14px;
  align-items:flex-start;
  margin-bottom:14px;
}

.safe-icn{
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  color:var(--gold-300);
  background:rgba(217,175,86,.08);
  border:1px solid rgba(217,175,86,.16);
  flex:0 0 42px;
}

.safe-icn svg{
  width:22px;
  height:22px;
}

.safe-k{
  font-weight:800;
  margin-bottom:6px;
}

.safe-v{
  color:var(--paper-200);
}

.footer-disclaimer{
  margin:28px 0 20px;
  color:var(--dust-400);
  padding-top:20px;
  border-top:1px solid rgba(217,175,86,.08);
}

.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

.footer-copy{
  color:var(--paper-200);
}

.footer-bottom-links{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.footer-mini{
  color:var(--paper-200);
}

.footer-mini:hover{
  color:var(--gold-300);
}

.footer-dot{
  color:var(--dust-400);
}

/* sticky cta / to top */
.to-top{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:930;
  width:52px;
  height:52px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  border:1px solid rgba(217,175,86,.24);
  background:rgba(21,17,15,.92);
  color:var(--paper-100);
  box-shadow:var(--shadow-md);
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:.18s ease;
}

.to-top.is-visible{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.sticky-cta{
  position:fixed;
  left:16px;
  right:16px;
  bottom:16px;
  z-index:920;
  max-width:760px;
  margin:0 auto;
  padding:14px 14px 12px;
  border-radius:22px;
  background:rgba(13,10,9,.92);
  border:1px solid rgba(217,175,86,.18);
  box-shadow:var(--shadow-lg);
  display:none;
}

.sticky-close{
  position:absolute;
  right:10px;
  top:10px;
  width:30px;
  height:30px;
  border:0;
  border-radius:50%;
  background:rgba(243,230,200,.06);
  color:var(--paper-100);
}

.sticky-inner{
  display:flex;
  gap:12px;
}

.sticky-btn{
  flex:1 1 0;
}

.btn-icn{
  width:18px;
  height:18px;
  display:inline-flex;
}

.btn-icn svg{
  width:18px;
  height:18px;
}

/* lightbox */
.lightbox{
  position:fixed;
  inset:0;
  z-index:1100;
  display:none;
}

.lightbox.is-open{
  display:block;
}

.lightbox-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.78);
  backdrop-filter:blur(4px);
}

.lightbox-panel{
  position:absolute;
  inset:50% auto auto 50%;
  transform:translate(-50%,-50%);
  width:min(96vw, 1100px);
  max-height:92vh;
  padding:18px;
  border-radius:24px;
  background:rgba(21,17,15,.98);
  border:1px solid rgba(217,175,86,.2);
  box-shadow:var(--shadow-lg);
}

.lightbox-close{
  position:absolute;
  top:10px;
  right:10px;
  width:40px;
  height:40px;
  border-radius:50%;
  border:0;
  color:var(--paper-100);
  background:rgba(243,230,200,.08);
  z-index:3;
}

.lightbox-img{
  width:100%;
  max-height:calc(92vh - 36px);
  object-fit:contain;
  border-radius:16px;
}

/* responsive */
@media (max-width: 1180px){
  .nav{
    gap:2px;
  }
  .nav-link{
    padding:12px 10px;
    font-size:13px;
  }
  .intro-grid{
    grid-template-columns:420px 1fr;
  }
}

@media (max-width: 980px){
  :root{ --header-h:80px; }

  .menu-toggle{
    display:inline-flex;
  }

  .nav{
    position:fixed;
    top:var(--header-h);
    left:0;
    right:0;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:4px;
    padding:14px 16px 18px;
    background:rgba(13,10,9,.98);
    border-bottom:1px solid rgba(217,175,86,.12);
    box-shadow:var(--shadow-lg);
  }

  .menu-open .nav{
    display:flex;
  }

  .nav-link{
    padding:14px 16px;
    border-radius:14px;
    background:rgba(243,230,200,.02);
  }

  .nav-link-mobile-cta{
    display:flex;
    justify-content:center;
    margin-top:6px;
    color:#fff;
    background:linear-gradient(180deg, var(--red-400), var(--red-600));
  }

  .header-inner{
    gap:10px;
  }

  .brand{
    margin-right:auto;
  }

  .header-cta{
    display:none;
  }

  .header-cta-mobile{
    display:inline-flex;
  }

  .intro-grid,
  .content-grid,
  .media-grid,
  .author-top,
  .footer-grid,
  .feature-grid,
  .final-grid{
    grid-template-columns:1fr;
  }

  .poster-frame{
    max-width:600px;
    margin:0 auto;
  }

  .author-feats{
    grid-template-columns:1fr;
  }

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

  .mini-metrics{
    grid-template-columns:1fr;
  }
}

@media (max-width: 700px){
  .container{
    width:min(calc(100% - 20px), var(--container));
  }

  .site-header{
    height:auto;
    min-height:var(--header-h);
  }

  .header-inner{
    min-height:var(--header-h);
    padding:10px 0;
    display:grid;
    grid-template-columns:auto 1fr auto auto;
    gap:8px;
    align-items:center;
  }

  .brand-logo{
    height:44px;
    max-width:130px;
  }

  .header-cta-mobile{
    min-height:40px;
    padding:0 14px;
    font-size:14px;
  }

  .lang-btn{
    min-height:40px;
    padding:0 12px;
    max-width:100%;
    font-size:13px;
  }

  .lang-btn-text{
    max-width:110px;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
  }

  .lang-menu{
    right:0;
    left:auto;
    min-width:210px;
    max-width:min(92vw, 250px);
  }

  .menu-toggle{
    width:40px;
    height:40px;
  }

  .section{
    padding:72px 0;
  }

  main > .section:first-child{
    padding-top:calc(var(--header-h) + 50px);
  }

  .panel,
  .content-card,
  .feature-card,
  .manual-card,
  .final-card,
  .final-verdict,
  .author-card{
    padding:22px;
    border-radius:20px;
  }

  .info-row{
    grid-template-columns:1fr;
    gap:6px;
    text-align: center;
  }

  .game-frame-bar{
    flex-wrap:wrap;
    align-items:flex-start;
  }

  .frame-actions{
    width:100%;
    justify-content:space-between;
  }

  .slider-shell{
    gap:8px;
  }

  .slide-card{
    flex:0 0 100%;
  }

  .slider-arrow{
    width:40px;
    height:40px;
    flex-basis:40px;
  }

  .sticky-cta{
    display:block;
  }

  .sticky-inner{
    flex-direction:column;
  }

  .to-top{
    right:14px;
    bottom:128px;
  }
}
.demo-placeholder,
.video-lazy{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.demo-placeholder-img,
.video-lazy > img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.demo-placeholder-overlay,
.video-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.48)),
    radial-gradient(circle at center, rgba(201,74,49,.14), transparent 35%);
}

.demo-play-btn,
.video-play-btn{
  position:relative;
  z-index:2;
}

.demo-hint{
  position:absolute;
  left:50%;
  bottom:28px;
  transform:translateX(-50%);
  z-index:2;
}

/* =========================
   DEMO
========================= */
.game-frame-body{
  position:relative;
  aspect-ratio:16/9;
  background:#0a0807;
}

.demo-placeholder{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.demo-placeholder-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.demo-placeholder-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.48)),
    radial-gradient(circle at center, rgba(201,74,49,.14), transparent 35%);
}

.demo-play-btn{
  position:relative;
  z-index:2;
  min-height:58px;
  border:1px solid rgba(217,175,86,.38);
  border-radius:999px;
  padding:0 26px;
  background:linear-gradient(180deg, var(--red-400), var(--red-600));
  color:#fff;
  font-size:16px;
  font-weight:800;
  box-shadow:0 12px 34px rgba(201,74,49,.28);
}

.demo-hint{
  position:absolute;
  left:50%;
  bottom:28px;
  transform:translateX(-50%);
  z-index:2;
  color:var(--paper-200);
  font-weight:600;
  text-align:center;
}

#demoIframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  display:none;
  background:#000;
}

/* =========================
   VIDEO
========================= */
.video-shell{
  background:linear-gradient(180deg, rgba(28,23,20,.95), rgba(21,17,15,.98));
  border:1px solid rgba(217,175,86,.12);
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow-md);
}

.video-lazy{
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  overflow:hidden;
  background:#0a0807;
}

.video-lazy > img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.video-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.48)),
    radial-gradient(circle at center, rgba(201,74,49,.14), transparent 35%);
}

.video-play-btn{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%, -50%);
  z-index:2;
  min-height:58px;
  border:1px solid rgba(217,175,86,.38);
  border-radius:999px;
  padding:0 26px;
  background:linear-gradient(180deg, var(--red-400), var(--red-600));
  color:#fff;
  font-size:16px;
  font-weight:800;
  box-shadow:0 12px 34px rgba(201,74,49,.28);
}

.video-lazy iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

:root{
  --header-h:88px;
  --header-h-mobile:126px;
}

/* HEADER */
.site-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:1000;
  background:rgba(13,10,9,.84);
  border-bottom:1px solid rgba(217,175,86,.15);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
}

.site-header::after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(217,175,86,.4), transparent);
}

.header-inner{
  display:flex;
  flex-direction:column;
}

.header-top-row{
  min-height:88px;
  display:flex;
  align-items:center;
  gap:24px;
}

.header-bottom-row{
  display:none;
}

.brand{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
}

.brand-logo{
  width:auto;
  height:56px;
  object-fit:contain;
}

.header-actions{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:12px;
  flex:0 0 auto;
}

.lang{
  position:relative;
  flex:0 0 auto;
}

.lang-btn{
  min-height:44px;
  border:1px solid rgba(217,175,86,.28);
  background:rgba(36,29,24,.9);
  color:var(--paper-100);
  border-radius:999px;
  padding:0 16px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  white-space:nowrap;
  transition:.18s ease;
}

.lang-btn:hover{
  background:rgba(48,38,31,.96);
  border-color:rgba(217,175,86,.45);
}

.lang-btn-caret{
  width:10px;
  height:10px;
  border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;
  transform:rotate(45deg) translateY(-1px);
  transition:.18s ease;
}

.lang.is-open .lang-btn-caret{
  transform:rotate(225deg) translateY(-1px);
}

.lang-menu{
  position:absolute;
  top:calc(100% + 10px);
  right:0;
  min-width:240px;
  max-width:min(88vw, 280px);
  background:linear-gradient(180deg, rgba(36,29,24,.98), rgba(21,17,15,.98));
  border:1px solid rgba(217,175,86,.24);
  box-shadow:var(--shadow-lg);
  border-radius:16px;
  padding:8px;
  display:none;
}

.lang.is-open .lang-menu{
  display:block;
}

.lang-item{
  width:100%;
  min-height:44px;
  display:flex;
  align-items:center;
  text-align:left;
  padding:0 12px;
  background:transparent;
  border:0;
  color:var(--paper-200);
  border-radius:12px;
  font-weight:600;
}

.lang-item:hover{
  background:rgba(217,175,86,.08);
  color:var(--paper-100);
}

.header-cta,
.header-cta-mobile{
  min-height:48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 22px;
  border-radius:999px;
  font-size:14px;
  font-weight:900;
  line-height:1;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:#fff;
  background:linear-gradient(180deg, var(--red-400), var(--red-600));
  box-shadow:0 10px 30px rgba(201,74,49,.25);
  border:1px solid rgba(255,255,255,.08);
  transition:.18s ease;
  text-align:center;
}

.header-cta:hover,
.header-cta-mobile:hover{
  transform:translateY(-1px);
  filter:brightness(1.05);
}

.menu-toggle{
  width:44px;
  height:44px;
  display:none;
  align-items:center;
  justify-content:center;
  background:rgba(36,29,24,.95);
  border:1px solid rgba(217,175,86,.24);
  border-radius:12px;
  color:var(--paper-100);
  padding:0;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after{
  content:"";
  display:block;
  width:18px;
  height:2px;
  border-radius:2px;
  background:currentColor;
  position:relative;
  transition:.18s ease;
}

.menu-toggle span::before{
  position:absolute;
  top:-6px;
  left:0;
}

.menu-toggle span::after{
  position:absolute;
  top:6px;
  left:0;
}

.menu-open .menu-toggle span{
  background:transparent;
}

.menu-open .menu-toggle span::before{
  top:0;
  transform:rotate(45deg);
}

.menu-open .menu-toggle span::after{
  top:0;
  transform:rotate(-45deg);
}

/* desktop nav */
.nav{
  flex:1 1 auto;
  display:flex;
  align-items:center;
  gap:8px;
  min-width:0;
}

.nav-link{
  position:relative;
  padding:12px 14px;
  border-radius:12px;
  color:var(--paper-200);
  font-size:14px;
  font-weight:600;
  transition:.18s ease;
  white-space:nowrap;
}

.nav-link:hover{
  color:var(--paper-100);
  background:rgba(217,175,86,.08);
}

.nav-link::after{
  content:"";
  position:absolute;
  left:14px;
  right:14px;
  bottom:6px;
  height:1px;
  transform:scaleX(0);
  transform-origin:left;
  background:linear-gradient(90deg, var(--gold-300), transparent);
  transition:.18s ease;
}

.nav-link:hover::after{
  transform:scaleX(1);
}

/* tablet/mobile */
@media (max-width: 980px){
  .header-top-row{
    min-height:80px;
    gap:10px;
  }

  .menu-toggle{
    display:inline-flex;
  }

  .header-cta{
    display:none;
  }

  .header-bottom-row{
    display:block;
    padding:0 0 12px;
  }

  .header-cta-mobile{
    width:100%;
    min-height:46px;
  }

  .nav{
    position:fixed;
    top:var(--header-h-mobile);
    left:0;
    right:0;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:4px;
    padding:14px 16px 18px;
    background:rgba(13,10,9,.98);
    border-bottom:1px solid rgba(217,175,86,.12);
    box-shadow:var(--shadow-lg);
  }

  .menu-open .nav{
    display:flex;
  }

  .nav-link{
    padding:14px 16px;
    border-radius:14px;
    background:rgba(243,230,200,.02);
  }
}

@media (max-width: 700px){
  .header-top-row{
    min-height:72px;
    display:grid;
    grid-template-columns:auto 1fr auto;
    gap:8px;
    align-items:center;
  }
  .panel-head{
      flex-direction: column;
  }

  .brand-logo{
    height:44px;
    max-width:130px;
  }

  .header-actions{
    margin-left:0;
    width:100%;
    justify-content:flex-end;
    gap:8px;
  }

  .lang-btn{
    min-height:40px;
    padding:0 12px;
    max-width:100%;
    font-size:13px;
  }

  .lang-btn-text{
    max-width:118px;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
  }

  .lang-menu{
    right:0;
    left:auto;
    min-width:220px;
    max-width:min(92vw, 250px);
  }

  .menu-toggle{
    width:40px;
    height:40px;
  }

  .header-bottom-row{
    padding:0 0 10px;
  }

  .header-cta-mobile{
    min-height:44px;
    padding:0 14px;
    font-size:13px;
    letter-spacing:.05em;
  }
}

:root{
  --header-h:88px;
  --header-h-mobile:126px;
}

.site-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:1000;
  background:rgba(13,10,9,.84);
  border-bottom:1px solid rgba(217,175,86,.15);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
}

.site-header::after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(217,175,86,.4), transparent);
}

.header-inner{
  height:var(--header-h);
  display:flex;
  align-items:center;
  gap:24px;
}

.header-mobile-bottom{
  display:none;
}

.brand{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
}

.brand-logo{
  width:auto;
  height:56px;
  object-fit:contain;
}

.nav{
  flex:1 1 auto;
  display:flex;
  align-items:center;
  gap:8px;
  min-width:0;
}

.nav-link{
  position:relative;
  padding:12px 14px;
  border-radius:12px;
  color:var(--paper-200);
  font-size:14px;
  font-weight:600;
  transition:.18s ease;
  white-space:nowrap;
}

.nav-link:hover{
  color:var(--paper-100);
  background:rgba(217,175,86,.08);
}

.nav-link::after{
  content:"";
  position:absolute;
  left:14px;
  right:14px;
  bottom:6px;
  height:1px;
  transform:scaleX(0);
  transform-origin:left;
  background:linear-gradient(90deg, var(--gold-300), transparent);
  transition:.18s ease;
}

.nav-link:hover::after{
  transform:scaleX(1);
}

.header-actions{
  display:flex;
  align-items:center;
  gap:12px;
  flex:0 0 auto;
}

.lang{
  position:relative;
  flex:0 0 auto;
}

.lang-btn{
  min-height:44px;
  border:1px solid rgba(217,175,86,.28);
  background:rgba(36,29,24,.9);
  color:var(--paper-100);
  border-radius:999px;
  padding:0 16px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  white-space:nowrap;
  transition:.18s ease;
}

.lang-btn:hover{
  background:rgba(48,38,31,.96);
  border-color:rgba(217,175,86,.45);
}

.lang-btn-caret{
  width:10px;
  height:10px;
  border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;
  transform:rotate(45deg) translateY(-1px);
  transition:.18s ease;
}

.lang.is-open .lang-btn-caret{
  transform:rotate(225deg) translateY(-1px);
}

.lang-menu{
  position:absolute;
  top:calc(100% + 10px);
  right:0;
  min-width:240px;
  max-width:min(88vw, 280px);
  background:linear-gradient(180deg, rgba(36,29,24,.98), rgba(21,17,15,.98));
  border:1px solid rgba(217,175,86,.24);
  box-shadow:var(--shadow-lg);
  border-radius:16px;
  padding:8px;
  display:none;
}

.lang.is-open .lang-menu{
  display:block;
}

.lang-item{
  width:100%;
  min-height:44px;
  display:flex;
  align-items:center;
  text-align:left;
  padding:0 12px;
  background:transparent;
  border:0;
  color:var(--paper-200);
  border-radius:12px;
  font-weight:600;
}

.lang-item:hover{
  background:rgba(217,175,86,.08);
  color:var(--paper-100);
}

.header-cta,
.header-cta-mobile{
  min-height:48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:0 22px;
  border-radius:999px;
  font-size:14px;
  font-weight:900;
  line-height:1;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:#fff;
  background:linear-gradient(180deg, var(--red-400), var(--red-600));
  box-shadow:0 10px 30px rgba(201,74,49,.25);
  border:1px solid rgba(255,255,255,.08);
  transition:.18s ease;
  text-align:center;
}

.header-cta:hover,
.header-cta-mobile:hover{
  transform:translateY(-1px);
  filter:brightness(1.05);
}

.header-cta-mobile{
  display:none;
}

.menu-toggle{
  width:44px;
  height:44px;
  display:none;
  align-items:center;
  justify-content:center;
  background:rgba(36,29,24,.95);
  border:1px solid rgba(217,175,86,.24);
  border-radius:12px;
  color:var(--paper-100);
  padding:0;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after{
  content:"";
  display:block;
  width:18px;
  height:2px;
  border-radius:2px;
  background:currentColor;
  position:relative;
  transition:.18s ease;
}

.menu-toggle span::before{
  position:absolute;
  top:-6px;
  left:0;
}

.menu-toggle span::after{
  position:absolute;
  top:6px;
  left:0;
}

.menu-open .menu-toggle span{
  background:transparent;
}

.menu-open .menu-toggle span::before{
  top:0;
  transform:rotate(45deg);
}

.menu-open .menu-toggle span::after{
  top:0;
  transform:rotate(-45deg);
}

@media (max-width: 980px){
  .header-inner{
    height:72px;
    display:grid;
    grid-template-columns:auto 1fr auto;
    gap:10px;
    align-items:center;
  }

  .brand{
    margin-right:0;
  }

  .header-actions{
    margin-left:0;
    justify-content:flex-end;
    gap:8px;
  }

  .header-cta{
    display:none;
  }

  .header-mobile-bottom{
    display:block;
    padding:0 0 12px;
  }

  .header-cta-mobile{
    display:flex;
    width:100%;
    min-height:46px;
  }

  .menu-toggle{
    display:inline-flex;
  }

  .nav{
    position:fixed;
    top:var(--header-h-mobile);
    left:0;
    right:0;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:4px;
    padding:14px 16px 18px;
    background:rgba(13,10,9,.98);
    border-bottom:1px solid rgba(217,175,86,.12);
    box-shadow:var(--shadow-lg);
  }

  .menu-open .nav{
    display:flex;
  }

  .nav-link{
    padding:14px 16px;
    border-radius:14px;
    background:rgba(243,230,200,.02);
  }
}

@media (max-width: 700px){
  .brand-logo{
    height:44px;
    max-width:130px;
  }

  .lang-btn{
    min-height:40px;
    padding:0 12px;
    max-width:100%;
    font-size:13px;
  }

  .lang-btn-text{
    max-width:118px;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
  }

  .lang-menu{
    right:0;
    left:auto;
    min-width:220px;
    max-width:min(92vw, 250px);
  }

  .menu-toggle{
    width:40px;
    height:40px;
  }

  .header-cta-mobile{
    min-height:44px;
    padding:0 14px;
    font-size:13px;
    letter-spacing:.05em;
  }
}

:root{
  --header-h:88px;
  --header-h-mobile:126px;
}

.site-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:1000;
  background:rgba(13,10,9,.84);
  border-bottom:1px solid rgba(217,175,86,.15);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
}

.site-header::after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(217,175,86,.4), transparent);
}

.header-inner{
  display:block;
}

.header-main-row{
  height:var(--header-h);
  display:flex;
  align-items:center;
  gap:24px;
}

.header-mobile-row{
  display:none;
  padding:0 0 12px;
}

.brand{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
}

.brand-logo{
  width:auto;
  height:56px;
  object-fit:contain;
}

.nav{
  flex:1 1 auto;
  display:flex;
  align-items:center;
  gap:8px;
  min-width:0;
}

.nav-link{
  position:relative;
  padding:12px 14px;
  border-radius:12px;
  color:var(--paper-200);
  font-size:14px;
  font-weight:600;
  transition:.18s ease;
  white-space:nowrap;
}

.nav-link:hover{
  color:var(--paper-100);
  background:rgba(217,175,86,.08);
}

.nav-link::after{
  content:"";
  position:absolute;
  left:14px;
  right:14px;
  bottom:6px;
  height:1px;
  transform:scaleX(0);
  transform-origin:left;
  background:linear-gradient(90deg, var(--gold-300), transparent);
  transition:.18s ease;
}

.nav-link:hover::after{
  transform:scaleX(1);
}

.header-actions{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  gap:12px;
}

.lang{
  position:relative;
  flex:0 0 auto;
}

.lang-btn{
  min-height:44px;
  border:1px solid rgba(217,175,86,.28);
  background:rgba(36,29,24,.9);
  color:var(--paper-100);
  border-radius:999px;
  padding:0 16px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  white-space:nowrap;
  transition:.18s ease;
}

.lang-btn:hover{
  background:rgba(48,38,31,.96);
  border-color:rgba(217,175,86,.45);
}

.lang-btn-caret{
  width:10px;
  height:10px;
  border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;
  transform:rotate(45deg) translateY(-1px);
  transition:.18s ease;
}

.lang.is-open .lang-btn-caret{
  transform:rotate(225deg) translateY(-1px);
}

.lang-menu{
  position:absolute;
  top:calc(100% + 10px);
  right:0;
  min-width:240px;
  max-width:min(88vw, 280px);
  background:linear-gradient(180deg, rgba(36,29,24,.98), rgba(21,17,15,.98));
  border:1px solid rgba(217,175,86,.24);
  box-shadow:var(--shadow-lg);
  border-radius:16px;
  padding:8px;
  display:none;
}

.lang.is-open .lang-menu{
  display:block;
}

.lang-item{
  width:100%;
  min-height:44px;
  display:flex;
  align-items:center;
  text-align:left;
  padding:0 12px;
  background:transparent;
  border:0;
  color:var(--paper-200);
  border-radius:12px;
  font-weight:600;
}

.lang-item:hover{
  background:rgba(217,175,86,.08);
  color:var(--paper-100);
}

.header-cta,
.header-cta-mobile{
  min-height:48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:0 22px;
  border-radius:999px;
  font-size:14px;
  font-weight:900;
  line-height:1;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:#fff;
  background:linear-gradient(180deg, var(--red-400), var(--red-600));
  box-shadow:0 10px 30px rgba(201,74,49,.25);
  border:1px solid rgba(255,255,255,.08);
  transition:.18s ease;
  text-align:center;
}

.header-cta:hover,
.header-cta-mobile:hover{
  transform:translateY(-1px);
  filter:brightness(1.05);
}

.header-cta-mobile{
  display:none;
  width:100%;
}

.menu-toggle{
  width:44px;
  height:44px;
  display:none;
  align-items:center;
  justify-content:center;
  background:rgba(36,29,24,.95);
  border:1px solid rgba(217,175,86,.24);
  border-radius:12px;
  color:var(--paper-100);
  padding:0;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after{
  content:"";
  display:block;
  width:18px;
  height:2px;
  border-radius:2px;
  background:currentColor;
  position:relative;
  transition:.18s ease;
}

.menu-toggle span::before{
  position:absolute;
  top:-6px;
  left:0;
}

.menu-toggle span::after{
  position:absolute;
  top:6px;
  left:0;
}

.menu-open .menu-toggle span{
  background:transparent;
}

.menu-open .menu-toggle span::before{
  top:0;
  transform:rotate(45deg);
}

.menu-open .menu-toggle span::after{
  top:0;
  transform:rotate(-45deg);
}

@media (max-width: 980px){
  .header-main-row{
    height:72px;
    display:grid;
    grid-template-columns:auto 1fr auto;
    gap:10px;
    align-items:center;
  }

  .nav{
    position:fixed;
    top:var(--header-h-mobile);
    left:0;
    right:0;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:4px;
    padding:14px 16px 18px;
    background:rgba(13,10,9,.98);
    border-bottom:1px solid rgba(217,175,86,.12);
    box-shadow:var(--shadow-lg);
  }

  .menu-open .nav{
    display:flex;
  }

  .nav-link{
    padding:14px 16px;
    border-radius:14px;
    background:rgba(243,230,200,.02);
  }

  .header-actions{
    justify-content:flex-end;
    gap:8px;
  }

  .header-cta{
    display:none;
  }

  .header-mobile-row{
    display:block;
  }

  .header-cta-mobile{
    display:flex;
    min-height:46px;
  }

  .menu-toggle{
    display:inline-flex;
  }
}

@media (max-width: 700px){
  .brand-logo{
    height:44px;
    max-width:130px;
  }

  .lang-btn{
    min-height:40px;
    padding:0 12px;
    max-width:100%;
    font-size:13px;
  }

  .lang-btn-text{
    max-width:118px;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
  }

  .lang-menu{
    right:0;
    left:auto;
    min-width:220px;
    max-width:min(92vw, 250px);
  }

  .menu-toggle{
    width:40px;
    height:40px;
  }

  .header-cta-mobile{
    min-height:44px;
    padding:0 14px;
    font-size:13px;
    letter-spacing:.05em;
  }
}
/* =========================
   DEMO EXTRA STATS
========================= */
.demo-stats-grid{
  margin-top:28px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
}

.demo-stat-card{
  background:linear-gradient(180deg, rgba(28,23,20,.96), rgba(21,17,15,.98));
  border:1px solid rgba(217,175,86,.14);
  border-radius:22px;
  padding:22px;
  box-shadow:var(--shadow-md);
}

.demo-stat-head{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:18px;
}

.demo-stat-icon{
  width:52px;
  height:52px;
  flex:0 0 52px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  background:rgba(217,175,86,.08);
  border:1px solid rgba(217,175,86,.2);
  color:var(--gold-300);
}

.demo-stat-icon svg{
  width:26px;
  height:26px;
}

.demo-stat-title{
  margin:0;
  font-size:21px;
  line-height:1.2;
}

.demo-stat-value{
  font-size:30px;
  font-weight:900;
  line-height:1.15;
  color:var(--paper-100);
  text-align: center;
}

/* =========================
   PROMO CODE
========================= */
.promo-code-section{
  margin-top:34px;
}

.promo-code-title{
  margin:0 0 18px;
  font-size:30px;
}

.promo-code-box{
  display:grid;
  grid-template-columns:minmax(280px, 380px) 1fr;
  gap:24px;
  align-items:stretch;
  background:linear-gradient(180deg, rgba(28,23,20,.96), rgba(21,17,15,.98));
  border:1px solid rgba(217,175,86,.14);
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow-md);
}

.promo-copy-card{
  width:100%;
  text-align:left;
  border:1px solid rgba(217,175,86,.24);
  border-radius:22px;
  background:
    radial-gradient(circle at top right, rgba(217,175,86,.08), transparent 35%),
    linear-gradient(180deg, rgba(243,230,200,.04), rgba(243,230,200,.02));
  padding:22px;
  color:var(--paper-100);
  transition:.18s ease;
}

.promo-copy-card:hover{
  transform:translateY(-2px);
  border-color:rgba(217,175,86,.38);
  box-shadow:0 14px 34px rgba(185,138,46,.12);
}

.promo-copy-label{
  display:block;
  margin-bottom:12px;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:var(--dust-400);
}

.promo-copy-main{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.promo-code-text{
  font-size:40px;
  font-weight:900;
  line-height:1;
  letter-spacing:.06em;
  color:var(--gold-300);
}

.promo-copy-icon{
  width:50px;
  height:50px;
  flex:0 0 50px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  background:rgba(201,74,49,.12);
  border:1px solid rgba(201,74,49,.18);
  color:var(--paper-100);
}

.promo-copy-icon svg{
  width:24px;
  height:24px;
}

.promo-copy-text{
  display:flex;
  align-items:center;
  min-height:100%;
  padding:4px 0;
}

.promo-copy-text p{
  margin:0;
  color:var(--paper-200);
  font-size:17px;
  line-height:1.8;
}

/* =========================
   COPY TOAST
========================= */
.copy-toast{
  position:fixed;
  left:50%;
  bottom:28px;
  transform:translateX(-50%) translateY(14px);
  z-index:1200;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  min-height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 18px;
  border-radius:999px;
  background:rgba(13,10,9,.94);
  border:1px solid rgba(217,175,86,.24);
  color:var(--paper-100);
  font-size:14px;
  font-weight:800;
  box-shadow:var(--shadow-lg);
  transition:.2s ease;
}

.copy-toast.is-visible{
  opacity:1;
  visibility:visible;
  transform:translateX(-50%) translateY(0);
}

@media (max-width: 980px){
  .demo-stats-grid{
    grid-template-columns:1fr;
  }

  .promo-code-box{
    grid-template-columns:1fr;
  }
}

@media (max-width: 700px){
  .demo-stat-card,
  .promo-code-box{
    padding:20px;
    border-radius:20px;
  }

  .promo-code-title{
    font-size:26px;
  }

  .promo-code-text{
    font-size:32px;
  }

  .promo-copy-main{
    gap:12px;
  }

  .promo-copy-text p{
    font-size:16px;
    line-height:1.75;
  }
}

/* =========================
   INFO / REVIEW EXTENSIONS
========================= */

.paytable-card{
  position:relative;
  width:100%;
  aspect-ratio:3/2;
  display:block;
  padding:0;
  margin:0;
  border:1px solid rgba(217,175,86,.16);
  border-radius:24px;
  overflow:hidden;
  background:rgba(243,230,200,.04);
  box-shadow:var(--shadow-lg);
}

.paytable-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.paytable-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.36)),
    radial-gradient(circle at center, rgba(217,175,86,.08), transparent 36%);
  transition:.18s ease;
}

.paytable-card:hover .paytable-overlay{
  background:
    linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.28)),
    radial-gradient(circle at center, rgba(217,175,86,.14), transparent 40%);
}

.paytable-zoom{
  position:absolute;
  right:22px;
  bottom:22px;
  z-index:2;
  min-height:48px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:0 18px;
  border-radius:999px;
  background:rgba(13,10,9,.86);
  border:1px solid rgba(217,175,86,.24);
  color:var(--paper-100);
  font-size:14px;
  font-weight:800;
  box-shadow:var(--shadow-md);
}

.paytable-zoom-icn{
  width:18px;
  height:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.paytable-zoom-icn svg{
  width:18px;
  height:18px;
}

/* compare versions */
.doa-compare-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}

.doa-version-card{
  background:linear-gradient(180deg, rgba(28,23,20,.96), rgba(21,17,15,.98));
  border:1px solid rgba(217,175,86,.14);
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow-md);
}

.doa-version-card-current{
  border-color:rgba(217,175,86,.34);
  box-shadow:0 16px 42px rgba(185,138,46,.12);
}

.doa-version-mark{
  width:72px;
  height:72px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 18px auto;
  border-radius:20px;
  color:var(--gold-300);
  background:rgba(217,175,86,.08);
  border:1px solid rgba(217,175,86,.22);
}

.doa-version-mark svg{
  width:42px;
  height:42px;
}

.doa-version-title{
  font-size:24px;
  font-weight:900;
  line-height:1.15;
  margin-bottom:18px;
  color:var(--paper-100);
  text-align: center;
}

.doa-mini-table{
  display:grid;
  gap:0;
  border:1px solid rgba(217,175,86,.12);
  border-radius:18px;
  overflow:hidden;
  background:rgba(243,230,200,.025);
  margin-bottom:18px;
}

.doa-mini-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  padding:14px 16px;
  border-bottom:1px solid rgba(217,175,86,.08);
}

.doa-mini-row:last-child{
  border-bottom:0;
}

.doa-mini-k{
  color:var(--dust-400);
  font-weight:700;
}

.doa-mini-v{
  color:var(--paper-100);
  font-weight:800;
  text-align:right;
}

.doa-version-text{
  color:var(--paper-200);
  font-size:16px;
  line-height:1.78;
}

/* summary box */
.doa-summary-box{
  margin-top:28px;
  background:linear-gradient(180deg, rgba(28,23,20,.98), rgba(21,17,15,.98));
  border:1px solid rgba(217,175,86,.24);
  border-radius:24px;
  padding:28px;
  box-shadow:var(--shadow-lg);
}

.doa-summary-head{
  margin-bottom:18px;
}

.doa-summary-badge{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(217,175,86,.1);
  color:var(--gold-300);
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:12px;
}

.doa-summary-title{
  margin:0;
}

.doa-summary-text p{
  margin:0 0 16px;
  color:var(--paper-200);
  font-size:17px;
  line-height:1.82;
}

.doa-summary-text p:last-child{
  margin-bottom:0;
}

/* responsive */
@media (max-width: 980px){
  .doa-compare-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 700px){
  .paytable-card,
  .doa-version-card,
  .doa-summary-box{
    border-radius:20px;
  }

  .paytable-zoom{
    right:14px;
    bottom:14px;
    min-height:42px;
    padding:0 14px;
    font-size:13px;
  }

  .doa-version-card,
  .doa-summary-box{
    padding:20px;
  }

  .doa-version-title{
    font-size:22px;
  }

  .doa-mini-row{
    grid-template-columns:1fr;
    gap:6px;
  }

  .doa-mini-v{
    text-align:left;
  }

  .doa-summary-text p{
    font-size:16px;
    line-height:1.75;
  }
}