@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&display=swap');

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

:root {
  --c-navy: #0d4071;
  --c-navy-dark: #092e54;
  --c-navy-light: #1a5490;
  --c-orange: #e47d19;
  --c-orange-dark: #c96d10;
  --c-green: #27762c;
  --c-green-dark: #1e5d22;
  --c-bg: #f1edb3;
  --c-bg-dark: #e8e39e;
  --c-bg-card: #faf8e8;
  --c-text: #1a1a2e;
  --c-text-light: #4a4a6a;
  --c-white: #ffffff;
  --c-gold: #d4a017;
  --c-gold-light: #f0c040;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(13,64,113,0.12);
  --shadow-md: 0 4px 20px rgba(13,64,113,0.18);
  --shadow-lg: 0 8px 40px rgba(13,64,113,0.22);
  --font-main: 'Oswald', sans-serif;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; background: var(--c-bg); }
body { font-family: var(--font-main); color: var(--c-text); background: var(--c-bg); line-height: 1.55; font-size: 16px; overflow-x: hidden; }

a { color: var(--c-orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-orange-dark); }

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

h1, h2, h3, h4, h5, h6 { font-family: var(--font-main); font-weight: 600; line-height: 1.25; }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }

p { line-height: 1.6; margin-bottom: 0.85em; }

.wrapper { min-height: 100vh; display: flex; flex-direction: column; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 16px; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }
.mt1 { margin-top: 8px; }
.mt2 { margin-top: 16px; }
.mt3 { margin-top: 24px; }
.mb1 { margin-bottom: 8px; }
.mb2 { margin-bottom: 16px; }
.mb3 { margin-bottom: 24px; }
.text-center { text-align: center; }
.text-left { text-align: left; }

.row { display: flex; flex-wrap: wrap; margin: 0 -8px; }
.col { flex: 1; padding: 0 8px; }
.col-auto { flex: 0 0 auto; padding: 0 8px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--green { background: var(--c-green); color: var(--c-white); }
.btn--green:hover { background: var(--c-green-dark); box-shadow: 0 4px 16px rgba(39,118,44,0.4); color: var(--c-white); }

.btn--orange { background: var(--c-orange); color: var(--c-white); }
.btn--orange:hover { background: var(--c-orange-dark); box-shadow: 0 4px 16px rgba(228,125,25,0.4); color: var(--c-white); }

.btn--outline { background: transparent; color: var(--c-white); border: 2px solid var(--c-white); }
.btn--outline:hover { background: rgba(255,255,255,0.15); color: var(--c-white); }

.btn--gold { background: var(--c-gold); color: #1a1000; }
.btn--gold:hover { background: var(--c-gold-light); color: #1a1000; box-shadow: 0 4px 16px rgba(212,160,23,0.4); }

.btn--sm { padding: 7px 16px; font-size: 0.82rem; }
.btn--lg { padding: 14px 32px; font-size: 1.05rem; }
.btn--xl { padding: 16px 40px; font-size: 1.15rem; }
.btn--full { width: 100%; }

.btn--pulse { animation: pulse-btn 2s infinite; }
@keyframes pulse-btn {
  0%, 100% { box-shadow: 0 0 0 0 rgba(39,118,44,0.5); }
  50% { box-shadow: 0 0 0 10px rgba(39,118,44,0); }
}

.box { border-radius: var(--radius-md); overflow: hidden; }

.section { padding: 48px 0; }
.section-title { color: var(--c-navy); margin-bottom: 24px; position: relative; }
.section-title::after { content: ''; display: block; width: 60px; height: 3px; background: var(--c-orange); margin-top: 8px; border-radius: 2px; }
.section-title.centered { text-align: center; }
.section-title.centered::after { margin: 8px auto 0; }

.card {
  background: var(--c-bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 20px;
  border: 1px solid rgba(13,64,113,0.1);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge--gold { background: var(--c-gold); color: #1a1000; }
.badge--green { background: var(--c-green); color: var(--c-white); }
.badge--navy { background: var(--c-navy); color: var(--c-white); }

.divider { height: 2px; background: linear-gradient(90deg, transparent, var(--c-navy-light), transparent); margin: 24px 0; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }

#qn-header {
  background: var(--c-navy);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: var(--shadow-md);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; gap: 12px; min-height: 64px; }

.header-logo { flex-shrink: 0; }
.header-logo img { height: 60px; width: auto; object-fit: contain; }

.header-nav { display: flex; align-items: center; gap: 4px; }
.header-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background var(--transition), color var(--transition);
}
.header-nav a:hover { background: rgba(255,255,255,0.12); color: var(--c-white); }
.header-nav a svg { width: 15px; height: 15px; flex-shrink: 0; }

.header-cta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.burger span { display: block; width: 24px; height: 2px; background: var(--c-white); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-cta { display: none; }

@media (max-width: 900px) {
  .header-nav { display: none; position: fixed; top: 64px; left: 0; right: 0; background: var(--c-navy-dark); flex-direction: column; align-items: stretch; padding: 12px 16px 20px; gap: 2px; box-shadow: var(--shadow-lg); z-index: 998; }
  .header-nav.open { display: flex; }
  .header-nav a { font-size: 0.95rem; padding: 10px 12px; }
  .burger { display: flex; }
  .mobile-cta { display: flex; gap: 8px; }
}

@media (max-width: 480px) {
  .btn--sm { padding: 6px 12px; font-size: 0.78rem; }
}

#qn-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-navy-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/queen-of-nile-hero.webp');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9,46,84,0.88) 0%, rgba(9,46,84,0.55) 60%, rgba(9,46,84,0.2) 100%);
}
.hero-content { position: relative; z-index: 1; padding: 60px 0; }
.hero-eyebrow { color: var(--c-gold-light); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 10px; }
.hero-title { color: var(--c-white); font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700; line-height: 1.15; margin-bottom: 12px; text-shadow: 0 2px 12px rgba(0,0,0,0.4); }
.hero-title span { color: var(--c-gold-light); }
.hero-sub { color: rgba(255,255,255,0.88); font-size: 1.05rem; font-weight: 300; max-width: 500px; margin-bottom: 24px; line-height: 1.55; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }

.hero-rating { display: flex; align-items: center; gap: 10px; }
.hero-stars { display: flex; gap: 3px; }
.hero-stars svg { width: 18px; height: 18px; fill: var(--c-gold-light); }
.hero-rating-text { color: rgba(255,255,255,0.8); font-size: 0.88rem; }
.hero-rating-text strong { color: var(--c-white); }

.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.hero-badge { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); color: var(--c-white); font-size: 0.78rem; font-weight: 500; padding: 4px 12px; border-radius: 20px; backdrop-filter: blur(4px); }

@media (max-width: 640px) {
  #qn-hero { min-height: 380px; }
  .hero-bg::after { background: linear-gradient(180deg, rgba(9,46,84,0.7) 0%, rgba(9,46,84,0.85) 100%); }
}

#qn-jackpots { background: var(--c-navy); padding: 56px 0; }
#qn-jackpots .section-title { color: var(--c-gold-light); }
#qn-jackpots .section-title::after { background: var(--c-gold); }

.jackpot-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.jackpot-card {
  flex: 1 1 260px;
  max-width: 340px;
  background: linear-gradient(135deg, #0d2f5a 0%, #143b6e 100%);
  border: 2px solid;
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.jackpot-card::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 100px; height: 100px;
  border-radius: 50%;
  opacity: 0.07;
  background: var(--c-gold-light);
}
.jackpot-card.gold { border-color: var(--c-gold); }
.jackpot-card.silver { border-color: #a0aab4; }
.jackpot-card.bronze { border-color: #cd7f32; }

.jackpot-icon { font-size: 2.2rem; margin-bottom: 8px; }
.jackpot-label { color: rgba(255,255,255,0.7); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; }
.jackpot-amount {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--c-gold-light);
  margin-bottom: 16px;
  animation: countUp 1s ease-out;
}
.jackpot-card.silver .jackpot-amount { color: #d0d8e0; }
.jackpot-card.bronze .jackpot-amount { color: #e8b060; }

@keyframes countUp { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } }

.jackpot-players { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 14px; }
.jackpot-players-title { color: rgba(255,255,255,0.55); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; }
.jackpot-player { display: flex; justify-content: space-between; align-items: center; padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.jackpot-player:last-child { border-bottom: none; }
.jackpot-player-nick { color: rgba(255,255,255,0.85); font-size: 0.82rem; }
.jackpot-player-win { color: var(--c-gold-light); font-size: 0.82rem; font-weight: 600; }

#qn-app { padding: 56px 0; background: var(--c-bg); }
.app-grid { display: flex; flex-wrap: wrap; align-items: center; gap: 40px; }
.app-phone-wrap { flex: 0 0 auto; display: flex; justify-content: center; }
.app-phone-frame {
  width: 220px;
  background: #0d1b2a;
  border-radius: 36px;
  padding: 14px 10px;
  box-shadow: 0 8px 40px rgba(13,64,113,0.35), inset 0 0 0 2px #1e3a5f;
  position: relative;
}
.app-phone-frame::before {
  content: '';
  display: block;
  width: 60px; height: 6px;
  background: #1e3a5f;
  border-radius: 3px;
  margin: 0 auto 10px;
}
.app-phone-screen { border-radius: 24px; overflow: hidden; background: var(--c-navy); }
.app-phone-screen img { width: 100%; display: block; object-fit: cover; }

.app-info { flex: 1; min-width: 260px; }
.app-info h2 { color: var(--c-navy); margin-bottom: 16px; }

.app-table { width: 100%; border-collapse: collapse; margin-bottom: 24px; font-size: 0.9rem; }
.app-table th, .app-table td { text-align: left; padding: 9px 14px; border: 1.5px solid rgba(13,64,113,0.2); }
.app-table th { background: var(--c-navy); color: var(--c-white); font-weight: 500; }
.app-table tr:nth-child(even) td { background: rgba(13,64,113,0.06); }
.app-table td { color: var(--c-text); }

.app-dl-btns { display: flex; flex-wrap: wrap; gap: 10px; }
.btn--store {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: var(--radius-sm);
  font-family: var(--font-main); font-size: 0.82rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.04em;
  background: var(--c-navy); color: var(--c-white);
  transition: background var(--transition), transform var(--transition);
  border: none; cursor: pointer; text-decoration: none;
}
.btn--store:hover { background: var(--c-navy-light); transform: translateY(-2px); color: var(--c-white); }
.btn--store svg { width: 20px; height: 20px; flex-shrink: 0; }

@media (max-width: 640px) {
  .app-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

#qn-demo { background: var(--c-navy-dark); padding: 56px 0; }
#qn-demo .section-title { color: var(--c-gold-light); }
#qn-demo .section-title::after { background: var(--c-gold); }

.demo-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
  position: relative;
  border: 2px solid var(--c-gold);
  height: 620px;
}

.demo-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  position: absolute;
  inset: 0;
  z-index: 2;
}

.demo-loader {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, #092e54 0%, #0d4071 100%);
}

.demo-loader p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  margin: 0;
}

.demo-loader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255,255,255,0.15);
  border-top-color: var(--c-gold-light);
  border-radius: 50%;
  animation: demo-spin 0.8s linear infinite;
}

@keyframes demo-spin {
  to { transform: rotate(360deg); }
}

.demo-wrap::after {
  content: '⛶ Fullscreen';
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  background: rgba(0,0,0,0.6);
  color: rgba(255,255,255,0.7);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.demo-wrap:hover::after {
  opacity: 1;
}

.demo-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; background: linear-gradient(135deg, #092e54 0%, #0d4071 100%); }
.demo-placeholder-icon { font-size: 3rem; }
.demo-placeholder p { color: rgba(255,255,255,0.7); font-size: 1rem; }
.demo-cta { margin-top: 20px; text-align: center; }
.demo-cta p { color: rgba(255,255,255,0.7); margin-bottom: 12px; font-size: 0.95rem; }

@media (max-width: 900px) {
  .demo-wrap { height: 520px; }
}

@media (max-width: 640px) {
  .demo-wrap {
    height: 460px;
    border-radius: var(--radius-md);
  }
}

@media (max-width: 480px) {
  .demo-wrap { height: 400px; }
}

#qn-winners { padding: 56px 0; background: var(--c-bg); }
.winners-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.winners-table { width: 100%; border-collapse: collapse; min-width: 480px; }
.winners-table th {
  background: var(--c-navy);
  color: var(--c-white);
  padding: 12px 16px;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.winners-table td { padding: 11px 16px; border-bottom: 1px solid rgba(13,64,113,0.1); font-size: 0.9rem; background: var(--c-bg-card); }
.winners-table tr:hover td { background: #eee9b8; }
.winners-table .rank { font-weight: 700; color: var(--c-navy); width: 48px; }
.winners-table .rank-1 { color: var(--c-gold); }
.winners-table .rank-2 { color: #a0aab4; }
.winners-table .rank-3 { color: #cd7f32; }
.winners-table .nick { color: var(--c-text); font-weight: 500; }
.winners-table .win { color: var(--c-green); font-weight: 700; }
.winners-table .time { color: var(--c-text-light); font-size: 0.8rem; }

#qn-screenshots { padding: 56px 0; background: var(--c-bg-dark); }

.screenshots-grid { display: flex; gap: 16px; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 12px; scrollbar-width: thin; scrollbar-color: var(--c-navy-light) transparent; }
.screenshots-grid::-webkit-scrollbar { height: 5px; }
.screenshots-grid::-webkit-scrollbar-track { background: transparent; }
.screenshots-grid::-webkit-scrollbar-thumb { background: var(--c-navy-light); border-radius: 3px; }

.screenshot-item { flex: 0 0 320px; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); cursor: pointer; transition: transform var(--transition), box-shadow var(--transition); background: var(--c-navy); }
.screenshot-item:hover { transform: scale(1.03); box-shadow: var(--shadow-md); }
.screenshot-item img { width: 100%; height: 200px; object-fit: cover; display: block; }

@media (max-width: 768px) {
  .screenshot-item { flex: 0 0 260px; }
}

#qn-review { padding: 56px 0; background: var(--c-bg); }
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--c-bg-card);
  border: 1px solid rgba(13,64,113,0.12);
  border-left: 4px solid var(--c-navy);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 28px;
}
.review-author-avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--c-navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.review-author-avatar svg { width: 28px; height: 28px; fill: var(--c-white); }
.review-author-name { font-weight: 600; color: var(--c-navy); font-size: 1rem; }
.review-author-meta { color: var(--c-text-light); font-size: 0.82rem; margin-top: 2px; }
.review-author-meta a { color: var(--c-orange); }

.review-content { background: var(--c-bg-card); border-radius: var(--radius-md); padding: 28px 32px; border: 1px solid rgba(13,64,113,0.1); }

.review-content h2 { color: var(--c-navy); margin-bottom: 16px; }
.review-content h3 { color: var(--c-navy); margin-top: 24px; margin-bottom: 12px; }
.review-content h4 { color: var(--c-navy-light); margin-top: 18px; margin-bottom: 8px; }
.review-content p { color: var(--c-text); margin-bottom: 14px; line-height: 1.65; }
.review-content ul, .review-content ol { padding-left: 22px; margin-bottom: 14px; }
.review-content li { margin-bottom: 6px; line-height: 1.6; color: var(--c-text); }
.review-content table { width: 100%; border-collapse: collapse; margin: 16px 0; overflow-x: auto; display: block; }
.review-content th, .review-content td { padding: 9px 14px; border: 1.5px solid rgba(13,64,113,0.2); text-align: left; }
.review-content th { background: var(--c-navy); color: var(--c-white); }
.review-content tr:nth-child(even) td { background: rgba(13,64,113,0.06); }
.review-content a { color: var(--c-orange); }
.review-content strong { color: var(--c-navy); }
.review-content blockquote { border-left: 4px solid var(--c-orange); padding: 10px 16px; background: rgba(228,125,25,0.07); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 16px 0; color: var(--c-text-light); font-style: italic; }

#qn-faq { padding: 56px 0; background: var(--c-bg-dark); }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: var(--c-bg-card); border: 1px solid rgba(13,64,113,0.15); border-radius: var(--radius-md); overflow: hidden; }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-navy);
  text-align: left;
  gap: 12px;
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(13,64,113,0.05); }
.faq-question.open { background: rgba(13,64,113,0.05); color: var(--c-navy-dark); }
.faq-icon { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--c-navy); display: flex; align-items: center; justify-content: center; transition: transform var(--transition); }
.faq-icon svg { width: 12px; height: 12px; fill: none; stroke: var(--c-white); stroke-width: 2; }
.faq-question.open .faq-icon { transform: rotate(180deg); background: var(--c-orange); }
.faq-answer { display: none; padding: 0 20px 16px; color: var(--c-text); line-height: 1.65; font-size: 0.95rem; }
.faq-answer.open { display: block; }
.faq-answer p:last-child { margin-bottom: 0; }

#qn-user-reviews { padding: 56px 0; background: var(--c-bg); }
.reviews-grid { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 40px; }
.review-card { flex: 1 1 280px; max-width: 380px; background: var(--c-bg-card); border: 1px solid rgba(13,64,113,0.12); border-radius: var(--radius-md); padding: 20px; box-shadow: var(--shadow-sm); transition: box-shadow var(--transition), transform var(--transition); }
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.review-card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--c-navy); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 700; color: var(--c-white); flex-shrink: 0; }
.review-user-name { font-weight: 600; color: var(--c-navy); font-size: 0.95rem; }
.review-user-date { color: var(--c-text-light); font-size: 0.75rem; margin-top: 2px; }
.review-stars { display: flex; gap: 2px; margin-bottom: 10px; }
.review-stars svg { width: 15px; height: 15px; fill: var(--c-gold); }
.review-stars svg.empty { fill: #ddd; }
.review-text { color: var(--c-text); font-size: 0.9rem; line-height: 1.6; }

.review-form-wrap { background: var(--c-bg-card); border: 1px solid rgba(13,64,113,0.15); border-radius: var(--radius-md); padding: 28px 32px; max-width: 560px; }
.review-form-wrap h3 { color: var(--c-navy); margin-bottom: 20px; }
.review-form { display: flex; flex-direction: column; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--c-navy); letter-spacing: 0.03em; }
.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid rgba(13,64,113,0.25);
  border-radius: var(--radius-sm);
  background: var(--c-white);
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--c-text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus { outline: none; border-color: var(--c-navy); box-shadow: 0 0 0 3px rgba(13,64,113,0.1); }
textarea.form-control { resize: vertical; min-height: 110px; }
.form-success { display: none; background: rgba(39,118,44,0.1); border: 1.5px solid var(--c-green); border-radius: var(--radius-sm); padding: 12px 16px; color: var(--c-green); font-weight: 500; font-size: 0.95rem; }
.form-success.visible { display: block; }

#qn-footer {
  background: var(--c-navy-dark);
  padding: 48px 0 24px;
  margin-top: auto;
}
.footer-top { display: flex; flex-wrap: wrap; gap: 32px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 24px; }
.footer-col { flex: 1; min-width: 180px; }
.footer-logo a { display: block; width: fit-content; }
.footer-logo img { height: 60px; width: auto; object-fit: contain; margin-bottom: 12px; }
.footer-desc { color: rgba(255,255,255,0.6); font-size: 0.82rem; line-height: 1.6; }

.footer-col h4 { color: var(--c-gold-light); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; }
.footer-nav { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.footer-nav a { color: rgba(255,255,255,0.65); font-size: 0.85rem; transition: color var(--transition); }
.footer-nav a:hover { color: var(--c-white); }

.footer-logos { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.footer-logo-item { background: rgba(255,255,255,0.08); border-radius: var(--radius-sm); padding: 6px 12px; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: rgba(255,255,255,0.6); font-weight: 600; border: 1px solid rgba(255,255,255,0.1); text-transform: uppercase; letter-spacing: 0.05em; }
.footer-logo-item svg { width: 18px; height: 18px; fill: rgba(255,255,255,0.6); }
.footer-logo-item--trust { background: rgba(255,255,255,0.05); padding: 5px 10px; font-size: 0.65rem; }

.footer-social { display: flex; gap: 10px; margin-top: 10px; }
.social-btn { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; transition: background var(--transition), transform var(--transition); }
.social-btn:hover { background: var(--c-orange); transform: scale(1.1); }
.social-btn svg { width: 17px; height: 17px; fill: var(--c-white); }

.footer-contact { color: rgba(255,255,255,0.65); font-size: 0.85rem; }
.footer-contact a { color: var(--c-orange); }

.footer-bottom { text-align: center; }
.footer-flag { display: inline-flex; align-items: center; gap: 6px; margin-bottom: 10px; color: rgba(255,255,255,0.55); font-size: 0.78rem; }
.footer-flag img {height: 20px;width: auto;}
.footer-copyright { color: rgba(255,255,255,0.45); font-size: 0.78rem; line-height: 1.6; margin-bottom: 8px; }
.footer-legal { color: rgba(255,255,255,0.35); font-size: 0.72rem; line-height: 1.6; max-width: 700px; margin: 0 auto; }
.footer-age { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.4); color: rgba(255,255,255,0.6); font-size: 0.72rem; font-weight: 700; margin: 10px auto 0; }

@media (max-width: 640px) {
  .footer-col { flex: 0 0 100%; }
}

#qn-widget {
  position: fixed;
  bottom: 20px;
  right: 16px;
  z-index: 990;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.widget-card {
  background: var(--c-navy);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--c-gold);
  max-width: 160px;
  text-align: center;
  animation: slideInWidget 0.5s ease 1s both;
}
@keyframes slideInWidget { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.widget-logo img { height: 48px; width: auto; object-fit: contain; }
.widget-bonus { color: var(--c-gold-light); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; line-height: 1.35; }
.widget-close {
  position: absolute;
  top: -8px; right: -8px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--c-navy-dark);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
  font-size: 0.7rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.widget-close:hover { background: var(--c-orange); color: var(--c-white); }
#qn-widget .widget-card { position: relative; }

.breadcrumbs { padding: 10px 0; background: var(--c-bg-dark); }
.breadcrumb-list { display: flex; flex-wrap: wrap; gap: 4px; align-items: center; list-style: none; font-size: 0.78rem; }
.breadcrumb-list li { display: flex; align-items: center; gap: 4px; color: var(--c-text-light); }
.breadcrumb-list a { color: var(--c-orange); }
.breadcrumb-sep { color: var(--c-text-light); font-size: 0.7rem; }

.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 2000; align-items: center; justify-content: center; padding: 20px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.lightbox-close { position: fixed; top: 16px; right: 16px; background: rgba(255,255,255,0.15); border: none; color: #fff; width: 40px; height: 40px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; }

.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

.wp-block-group { display: block; }
.wp-block-columns { display: flex; flex-wrap: wrap; gap: 16px; }
.wp-caption { max-width: 100%; }
.entry-content { display: block; }
.site-header { display: block; }
.wp-block-image { display: block; }
.elementor-widget-container { display: block; }
#wpadminbar { display: none !important; }
.wpcf7-not-valid-tip { color: red; font-size: 0.8rem; }

.info-content { background: var(--c-bg-card); border-radius: var(--radius-md); padding: 32px 36px; box-shadow: var(--shadow-sm); }
.info-content h1 { color: var(--c-navy); margin-bottom: 20px; }
.info-content h2 { color: var(--c-navy); margin: 24px 0 12px; }
.info-content p { margin-bottom: 14px; color: var(--c-text); line-height: 1.65; }
.info-content ul { padding-left: 22px; margin-bottom: 14px; }
.info-content li { margin-bottom: 6px; color: var(--c-text); line-height: 1.6; }

@media (max-width: 768px) {
  .section { padding: 36px 0; }
  .info-content { padding: 20px 16px; }
  .review-form-wrap { padding: 20px 16px; }
  .review-content { padding: 20px 16px; }
}

.game-meta-bar {
  background: var(--c-navy);
  padding: 10px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.game-meta-inner { display: flex; gap: 0; white-space: nowrap; min-width: max-content; }
.game-meta-item { display: flex; flex-direction: column; padding: 0 20px; border-right: 1px solid rgba(255,255,255,0.12); }
.game-meta-item:last-child { border-right: none; }
.game-meta-label { color: rgba(255,255,255,0.5); font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; }
.game-meta-value { color: var(--c-white); font-size: 0.88rem; font-weight: 600; }

.qn-xr8f2 { display: none; position: absolute; pointer-events: none; opacity: 0; }
.qn-b4t9k { display: none; }