@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@400;500;600&display=swap');

:root {
  --color-header-bg: #2A2717;
  --color-footer-bg: #2A2717;
  --color-bg: #12100D;
  --color-btn-login: #322F1F;
  --color-btn-reg: #DAAE00;
  --color-text: #E8E2D0;
  --color-text-muted: #A89F88;
  --color-border: #3A3520;
  --color-card-bg: #1E1B12;
  --color-card-bg2: #252115;
  --color-accent: #DAAE00;
  --color-accent-dark: #B08A00;
  --color-success: #4CAF50;
  --color-white: #FFFFFF;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.45);
  --font-main: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
  --transition: 0.25s ease;
}

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

html { font-size: 16px; scroll-behavior: smooth; background: var(--color-bg); }

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

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

.container--wide { max-width: 1400px; }

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

a { color: var(--color-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-btn-reg); }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-main); font-weight: 700; line-height: 1.25; color: var(--color-white); }

p { margin-bottom: 1rem; }

.site-header {
  background: var(--color-header-bg);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.header-logo a { display: flex; align-items: center; }
.header-logo img { height: 44px; width: auto; }
.header-logo span {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--color-accent);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.header-nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.header-nav a {
  color: #C8BD98;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.header-nav a:hover { background: var(--color-border); color: var(--color-accent); }

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

.online-count {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  white-space: nowrap;
  background: #1a1810;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 3px 10px;
}
.online-count span { color: #4ade80; font-weight: 700; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
  transition: all 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); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.btn--login { background: var(--color-btn-login); color: #C8BD98; border: 1px solid #4a4530; }
.btn--login:hover { background: #3e3a28; color: var(--color-accent); }
.btn--reg { background: var(--color-btn-reg); color: #12100D; }
.btn--reg:hover { background: #f0c010; color: #12100D; box-shadow: 0 0 12px rgba(218,174,0,0.4); }
.btn--lg { padding: 14px 32px; font-size: 1rem; border-radius: var(--radius-md); }
.btn--xl { padding: 18px 44px; font-size: 1.1rem; border-radius: var(--radius-md); }
.btn--outline { background: transparent; border: 2px solid var(--color-accent); color: var(--color-accent); }
.btn--outline:hover { background: var(--color-accent); color: #12100D; }

.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1508 0%, #2a2010 50%, #12100D 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/img/eldorado-casino-hero.webp') center/cover no-repeat;
  opacity: 0.22;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 16px;
  width: 100%;
}
.hero-badge {
  display: inline-block;
  background: var(--color-btn-reg);
  color: #12100D;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  max-width: 680px;
}
.hero p {
  font-size: 1.05rem;
  color: #C8BD98;
  margin-bottom: 28px;
  max-width: 540px;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

.breadcrumbs {
  background: var(--color-card-bg);
  border-bottom: 1px solid var(--color-border);
  padding: 10px 0;
}
.breadcrumbs-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  flex-wrap: wrap;
}
.breadcrumbs-inner a { color: var(--color-text-muted); }
.breadcrumbs-inner a:hover { color: var(--color-accent); }
.breadcrumbs-inner span { color: var(--color-accent); font-weight: 600; }
.breadcrumb-sep { color: var(--color-border); }

.main-content { flex: 1; padding: 32px 0 60px; }

.section-title {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-border);
  position: relative;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--color-accent);
}

.block {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 28px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-card);
}
.block--alt { background: var(--color-card-bg2); }

.block--accent {
  background: linear-gradient(135deg, #2a2008 0%, #3a2e08 100%);
  border-color: #6a5400;
}

.block--accent2 {
  background: linear-gradient(135deg, #1a2010 0%, #0e1a0e 100%);
  border-color: #2a4020;
}

.toc { margin-bottom: 15px; }
.toc ol { padding-left: 20px; }
.toc li { margin-bottom: 8px; }
.toc a { color: var(--color-accent); font-weight: 500; font-size: 0.95rem; }
.toc a:hover { text-decoration: underline; }

.info-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.info-table tr:nth-child(even) td { background: rgba(255,255,255,0.03); }
.info-table td {
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  vertical-align: top;
}
.info-table td:first-child {
  font-weight: 600;
  color: var(--color-text-muted);
  white-space: nowrap;
  width: 38%;
  background: rgba(255,255,255,0.02);
}
.info-table td:last-child { color: var(--color-text); }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.pros-grid { display: flex; flex-wrap: wrap; gap: 16px; }
.pro-item {
  flex: 1 1 200px;
  background: var(--color-card-bg2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: transform var(--transition), border-color var(--transition);
}
.pro-item:hover { transform: translateY(-2px); border-color: var(--color-accent); }
.pro-icon { font-size: 1.6rem; flex-shrink: 0; line-height: 1; }
.pro-text h4 { font-size: 0.92rem; color: var(--color-white); margin-bottom: 4px; }
.pro-text p { font-size: 0.82rem; color: var(--color-text-muted); margin: 0; }

.jackpot-block { text-align: center; }
.jackpot-amount {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--color-accent);
  text-shadow: 0 0 30px rgba(218,174,0,0.4);
  letter-spacing: 2px;
  font-family: var(--font-main);
  animation: jackpotPulse 2s ease-in-out infinite;
}
@keyframes jackpotPulse {
  0%, 100% { text-shadow: 0 0 20px rgba(218,174,0,0.3); }
  50% { text-shadow: 0 0 40px rgba(218,174,0,0.7); }
}
.jackpot-label { font-size: 0.9rem; color: var(--color-text-muted); margin-top: 6px; }
.jackpot-sub { font-size: 0.82rem; color: #7a7060; margin-top: 4px; }

.winners-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.winners-table th {
  background: var(--color-card-bg2);
  padding: 10px 12px;
  text-align: left;
  color: var(--color-text-muted);
  font-weight: 600;
  border: 1px solid var(--color-border);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.winners-table td {
  padding: 9px 12px;
  border: 1px solid var(--color-border);
  color: var(--color-text);
}
.winners-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.winners-table td:first-child { color: var(--color-text-muted); font-weight: 500; }
.winners-table .win-amount { color: var(--color-success); font-weight: 700; }
.winners-table .winner-nick { color: var(--color-accent); }

.demo-frame-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #0a0a08;
  border: 1px solid var(--color-border);
}
.demo-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.content-review { line-height: 1.8; }
.content-review h2 { font-size: 1.3rem; margin: 28px 0 12px; color: var(--color-white); }
.content-review h3 { font-size: 1.1rem; margin: 20px 0 10px; color: #d4c89a; }
.content-review p { margin-bottom: 14px; color: var(--color-text); font-size: 0.95rem; }
.content-review ul, .content-review ol { padding-left: 22px; margin-bottom: 14px; }
.content-review li { margin-bottom: 8px; color: var(--color-text); font-size: 0.95rem; }
.content-review a { color: var(--color-accent); text-decoration: underline; }
.content-review table { width: 100%; border-collapse: collapse; margin-bottom: 16px; }
.content-review table th, .content-review table td { padding: 8px 12px; border: 1px solid var(--color-border); font-size: 0.9rem; }
.content-review table th { background: var(--color-card-bg2); color: var(--color-text-muted); }
.content-review strong { color: var(--color-white); }

.faq-list { list-style: none; }
.faq-item { border: 1px solid var(--color-border); border-radius: var(--radius-md); margin-bottom: 10px; overflow: hidden; }
.faq-question {
  width: 100%;
  background: var(--color-card-bg2);
  border: none;
  cursor: pointer;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  transition: background var(--transition);
}
.faq-question:hover { background: #2a2518; }
.faq-question.active { background: #2a2518; color: var(--color-accent); }
.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  transition: transform var(--transition), background var(--transition);
}
.faq-question.active .faq-icon { transform: rotate(45deg); background: var(--color-accent); color: #12100D; }
.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}
.faq-answer.open { padding: 14px 20px; max-height: 400px; }

.author-block {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-card-bg2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-bottom: 24px;
}
.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-accent);
  flex-shrink: 0;
}
.author-info h4 { font-size: 0.95rem; color: var(--color-white); margin-bottom: 2px; }
.author-info p { font-size: 0.8rem; color: var(--color-text-muted); margin: 0; }
.author-info a { color: var(--color-accent); font-size: 0.8rem; }

.site-footer {
  background: var(--color-footer-bg);
  border-top: 1px solid var(--color-border);
  padding: 40px 0 24px;
  margin-top: auto;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 32px;
}
.footer-col { flex: 1 1 200px; }
.footer-logo-img {display: block;width: fit-content;}
.footer-logo img { height: 50px;width: auto; margin-bottom: 12px; }
.footer-logo span {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--color-accent);
  display: block;
  margin-bottom: 10px;
}
.footer-desc { font-size: 0.82rem; color: var(--color-text-muted); line-height: 1.6; }
.footer-col h4 { font-size: 0.85rem; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; font-weight: 700; }
.footer-nav { display: flex; flex-direction: column; gap: 8px; }
.footer-nav a { font-size: 0.85rem; color: #9a9080; transition: color var(--transition); }
.footer-nav a:hover { color: var(--color-accent); }

.providers-logos, .payments-logos { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.provider-badge, .payment-badge {
  background: #1a1810;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  font-size: 0.72rem;
  color: var(--color-text-muted);
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: #6a6050;
}
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 12px; }
.footer-legal-links a { color: #6a6050; font-size: 0.78rem; }
.footer-legal-links a:hover { color: var(--color-accent); }
.footer-age {
  background: var(--color-border);
  color: var(--color-text-muted);
  font-weight: 800;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  flex-shrink: 0;
}

.bottom-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(90deg, #1a1507 0%, #2a2010 100%);
  border-top: 2px solid var(--color-accent);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
  flex-wrap: wrap;
}
.widget-text { font-size: 0.88rem; color: var(--color-text); font-weight: 600; }
.widget-text strong { color: var(--color-accent); }
.widget-close {
  position: absolute;
  right: 30px;
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  font-size: 1.1rem;
  padding: 4px;
  line-height: 1;
  transition: color var(--transition);
}
.widget-close:hover { color: var(--color-white); }

.bonuses-grid { display: flex; flex-wrap: wrap; gap: 16px; }
.bonus-card {
  flex: 1 1 260px;
  background: linear-gradient(135deg, #1e1b10 0%, #2a2410 100%);
  border: 1px solid #4a4020;
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.bonus-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(218,174,0,0.15); }
.bonus-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle, rgba(218,174,0,0.12), transparent 70%);
}
.bonus-badge {
  display: inline-block;
  background: var(--color-accent);
  color: #12100D;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.bonus-amount { font-size: 1.6rem; font-weight: 800; color: var(--color-accent); margin-bottom: 6px; font-family: var(--font-main); }
.bonus-title { font-size: 0.95rem; font-weight: 700; color: var(--color-white); margin-bottom: 6px; }
.bonus-desc { font-size: 0.82rem; color: var(--color-text-muted); margin-bottom: 14px; }
.bonus-btn { width: 100%; }

.promo-block {
  background: linear-gradient(135deg, #1a1200 0%, #2e2000 100%);
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.promo-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(218,174,0,0.07) 0%, transparent 70%);
}
.promo-label { font-size: 0.78rem; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; font-weight: 600; }
.promo-code-display {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: 6px;
  font-family: var(--font-main);
  background: rgba(0,0,0,0.3);
  border: 1px dashed #4a3c00;
  border-radius: var(--radius-md);
  padding: 12px 24px;
  display: inline-block;
  margin: 10px 0;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}
.promo-code-display:hover { background: rgba(218,174,0,0.08); border-color: var(--color-accent); }
.promo-desc { font-size: 0.85rem; color: var(--color-text-muted); margin-top: 10px; }
.copy-hint { font-size: 0.75rem; color: #6a5800; margin-top: 6px; }

.compare-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.compare-table th {
  background: var(--color-card-bg2);
  padding: 12px 14px;
  text-align: left;
  color: var(--color-text-muted);
  font-weight: 700;
  border: 1px solid var(--color-border);
  font-size: 0.82rem;
  text-transform: uppercase;
}
.compare-table td { padding: 10px 14px; border: 1px solid var(--color-border); color: var(--color-text); }
.compare-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.compare-table .highlight-row td { background: rgba(218,174,0,0.07); color: var(--color-accent); font-weight: 600; }

.reg-methods-grid { display: flex; flex-wrap: wrap; gap: 14px; }
.reg-method {
  flex: 1 1 200px;
  background: var(--color-card-bg2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.reg-method:hover { border-color: var(--color-accent); transform: translateY(-2px); }
.reg-method-icon { font-size: 2rem; margin-bottom: 10px; }
.reg-method h4 { font-size: 0.9rem; color: var(--color-white); margin-bottom: 6px; }
.reg-method p { font-size: 0.8rem; color: var(--color-text-muted); margin: 0; }

.mirror-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.mirror-table th {
  background: var(--color-card-bg2);
  padding: 11px 14px;
  text-align: left;
  color: var(--color-text-muted);
  font-weight: 700;
  border: 1px solid var(--color-border);
  font-size: 0.8rem;
}
.mirror-table td { padding: 10px 14px; border: 1px solid var(--color-border); color: var(--color-text); }
.mirror-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.mirror-table .status-active {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--color-success); font-weight: 600; font-size: 0.85rem;
}
.mirror-table .status-active::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--color-success); flex-shrink: 0; }
.mirror-timestamp { font-size: 0.8rem; color: var(--color-text-muted); margin-top: 8px; }

.access-btns { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

.security-grid { display: flex; flex-wrap: wrap; gap: 14px; }
.security-card {
  flex: 1 1 200px;
  background: var(--color-card-bg2);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-success);
  border-radius: var(--radius-md);
  padding: 16px 14px;
  transition: border-color var(--transition);
}
.security-card:hover { border-left-color: var(--color-accent); }
.security-card h4 { font-size: 0.88rem; color: var(--color-white); margin-bottom: 5px; display: flex; align-items: center; gap: 8px; }
.security-card p { font-size: 0.8rem; color: var(--color-text-muted); margin: 0; }

.slots-grid { display: flex; flex-wrap: wrap; gap: 14px; }
.slot-card {
  flex: 1 1 160px;
  background: var(--color-card-bg2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}
.slot-card:hover { transform: translateY(-3px); border-color: var(--color-accent); }
.slot-card-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; background: #1a1810; }
.slot-card-body { padding: 12px; }
.slot-card-name { font-size: 0.85rem; font-weight: 700; color: var(--color-white); margin-bottom: 4px; }
.slot-card-provider { font-size: 0.75rem; color: var(--color-text-muted); margin-bottom: 10px; }

.rtp-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.rtp-table th {
  background: var(--color-card-bg2);
  padding: 10px 14px;
  text-align: left;
  color: var(--color-text-muted);
  font-weight: 700;
  border: 1px solid var(--color-border);
  font-size: 0.8rem;
}
.rtp-table td { padding: 9px 14px; border: 1px solid var(--color-border); color: var(--color-text); }
.rtp-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.rtp-bar {
  height: 6px;
  background: var(--color-border);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 4px;
}
.rtp-bar-fill { height: 100%; background: linear-gradient(90deg, var(--color-accent), #f0c010); border-radius: 3px; }
.rtp-val { font-weight: 700; color: var(--color-accent); }

.dl-buttons { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-card-bg2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 14px 22px;
  color: var(--color-text);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition);
  text-decoration: none;
}
.dl-btn:hover { border-color: var(--color-accent); background: rgba(218,174,0,0.06); color: var(--color-accent); }
.dl-btn-icon { font-size: 1.6rem; }
.dl-btn-text span { display: block; font-size: 0.72rem; color: var(--color-text-muted); font-weight: 400; }
.dl-btn-text strong { display: block; font-size: 0.95rem; }

.app-specs-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.app-specs-table td {
  padding: 10px 14px;
  border: 1px solid var(--color-border);
}
.app-specs-table td:first-child {
  font-weight: 600;
  color: var(--color-text-muted);
  background: rgba(255,255,255,0.02);
  width: 38%;
}
.app-specs-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }

.slider-container { position: relative; overflow: hidden; }
.slider-track { display: flex; gap: 16px; transition: transform 0.35s ease; }
.slider-nav { display: none; justify-content: center; gap: 8px; margin-top: 14px; }
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  cursor: pointer;
  transition: background var(--transition);
}
.slider-dot.active { background: var(--color-accent); }
.slider-prev, .slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  width: 34px; height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all var(--transition);
}
.slider-prev { left: 4px; }
.slider-next { right: 4px; }
.slider-prev:hover, .slider-next:hover { background: var(--color-accent); color: #12100D; border-color: var(--color-accent); }

.advantages-grid { display: flex; flex-wrap: wrap; gap: 14px; }
.advantage-card {
  flex: 1 1 220px;
  background: var(--color-card-bg2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all var(--transition);
}
.advantage-card:hover { border-color: var(--color-accent); transform: translateY(-2px); }
.advantage-icon { font-size: 1.8rem; flex-shrink: 0; }
.advantage-text h4 { font-size: 0.92rem; color: var(--color-white); margin-bottom: 4px; }
.advantage-text p { font-size: 0.8rem; color: var(--color-text-muted); margin: 0; }

.get-bonus-block { text-align: center; padding: 32px 24px; }
.get-bonus-block h2 { font-size: 1.6rem; margin-bottom: 10px; }
.get-bonus-block p { color: var(--color-text-muted); margin-bottom: 20px; font-size: 0.95rem; }

.technical-content { margin: 0 auto; line-height: 1.8; }
.technical-content h1 { font-size: clamp(1.5rem, 3vw, 1.8rem); font-weight: 800; color: var(--color-white); margin-bottom: 24px; padding-bottom: 12px; border-bottom: 2px solid var(--color-border); position: relative; }
.technical-content h1::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 60px; height: 2px; background: var(--color-accent); }
.technical-content h2 { font-size: clamp(1.15rem, 2.5vw, 1.35rem); font-weight: 700; color: var(--color-white); margin: 32px 0 14px; padding-bottom: 8px; border-bottom: 1px solid var(--color-border); position: relative; }
.technical-content h2::after { content: ''; position: absolute; bottom: -1px; left: 0; width: 40px; height: 1px; background: var(--color-accent); }
.technical-content h3 { font-size: 1.05rem; font-weight: 700; color: #d4c89a; margin: 24px 0 10px; }
.technical-content h4 { font-size: 0.95rem; font-weight: 700; color: #c0b490; margin: 20px 0 8px; }
.technical-content p { font-size: 0.95rem; color: var(--color-text); margin-bottom: 14px; line-height: 1.8; }
.technical-content ul, .technical-content ol { padding-left: 24px; margin-bottom: 16px; }
.technical-content li { margin-bottom: 8px; font-size: 0.95rem; color: var(--color-text); line-height: 1.7; }
.technical-content li::marker { color: var(--color-accent); }
.technical-content a { color: var(--color-accent); text-decoration: underline; text-underline-offset: 2px; }
.technical-content a:hover { color: #f0c010; }
.technical-content strong { color: var(--color-white); }
.technical-content table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.technical-content table th, .technical-content table td { padding: 10px 14px; border: 1px solid var(--color-border); font-size: 0.9rem; }
.technical-content table th { background: var(--color-card-bg2); color: var(--color-text-muted); font-weight: 700; text-align: left; }
.technical-content table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.technical-content blockquote { border-left: 3px solid var(--color-accent); padding: 12px 20px; margin: 16px 0; background: rgba(218,174,0,0.04); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; color: var(--color-text-muted); font-style: italic; }

.page-technical .hero { display: none; }
.page-technical .main-content { padding-top: 36px; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.content__table-wrap{overflow-x:auto;-webkit-overflow-scrolling:touch;margin:16px 0;border-radius:8px;}
.content table{width:100%;min-width:500px;border-collapse:collapse;margin:0;font-size:.9rem;}
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.text-center { text-align: center; }
.text-accent { color: var(--color-accent); }
.fw-800 { font-weight: 800; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-2 { gap: 16px; }
.flex-wrap { flex-wrap: wrap; }

.d-none-x { display: none !important; }
.el-d9k3z { opacity: 0.001; position: absolute; pointer-events: none; }
.el-r7m2x { visibility: hidden; height: 0; overflow: hidden; }
.wc-block-x9q { display: none; }

@media (max-width: 1024px) {
  .header-nav a { font-size: 0.78rem; padding: 5px 8px; }
  .header-nav a:first-child {display: none;}
}

@media (max-width: 900px) {
  .pros-grid { gap: 12px; }
  .bonuses-grid { gap: 12px; }
  .header-nav a { font-size: 0.64rem; padding: 4px 6px; }
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0;
    background: #1e1c14;
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    align-items: stretch;
    padding: 70px 16px 20px;
    z-index: 999;
    gap: 4px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.6);
  }
  .header-nav.open { display: flex; }
  .header-nav a { padding: 12px 16px; font-size: 1rem; border-radius: var(--radius-sm); }
  .burger { display: flex; }
  .header-inner { flex-wrap: nowrap; }
  .btn {white-space: wrap;}
  .hero { min-height: 300px; }
  .hero-inner { padding: 40px 16px; }
  .hero h1 { font-size: 1.5rem; }
  .header-nav a:first-child {display: block;}
  .block { padding: 18px 14px; }
  .section-title { font-size: 1.1rem; }

  .footer-grid { gap: 20px; }
  .footer-col { flex: 1 1 150px; }

  .bottom-widget { padding: 8px 12px; gap: 10px; }
  .widget-text { font-size: 0.8rem; }

  .pro-item { flex: 1 1 160px; }
  .bonus-card { flex: 1 1 100%; }
  .advantage-card { flex: 1 1 160px; }
  .reg-method { flex: 1 1 140px; }
  .security-card { flex: 1 1 160px; }
  .slot-card { flex: 1 1 140px; }

  .slider-nav { display: flex; }
  .slider-prev, .slider-next { display: flex; }

  .bonuses-grid.is-slider .bonus-card { min-width: calc(100% - 32px); }
  .slots-grid.is-slider .slot-card { min-width: 200px; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 1.3rem; }
  .dl-buttons { flex-direction: column; }
  .dl-btn { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.3rem; }
  .dl-buttons { flex-direction: column; }
  .dl-btn { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 420px) {
.header-actions .btn--login {display: none;}
}