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

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

:root {
  --color-dark: #161324;
  --color-btn-dark: #151320;
  --color-btn-blue: #25ABD8;
  --color-bg: #ffffff;
  --color-text: #1a1a2e;
  --color-text-light: #ffffff;
  --color-text-muted: #6b7280;
  --color-border: #e5e7eb;
  --color-card-bg: #f8f9fa;
  --color-accent-hover: #1d8fb5;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.16);
  --font-main: 'Roboto', Arial, sans-serif;
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--color-btn-blue);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-accent-hover);
}

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

ul, ol {
  list-style: none;
}

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

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

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.text-center {
  text-align: center;
}

.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; }
.p05 { padding: 0 4px; }

.row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.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;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  line-height: 1;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.btn:active {
  transform: translateY(0);
}

.btn--sm {
  padding: 8px 16px;
  font-size: 13px;
}

.btn--md {
  padding: 10px 20px;
  font-size: 14px;
}

.btn--lg {
  padding: 14px 32px;
  font-size: 16px;
}

.btn--xl {
  padding: 18px 40px;
  font-size: 18px;
}

.btn--dark {
  background: var(--color-btn-dark);
  color: var(--color-text-light);
}

.btn--dark:hover {
  background: #22203a;
  color: var(--color-text-light);
}

.btn--blue {
  background: var(--color-btn-blue);
  color: var(--color-text-light);
}

.btn--blue:hover {
  background: var(--color-accent-hover);
  color: var(--color-text-light);
}

.btn--signin {
  background: var(--color-btn-dark);
  color: var(--color-text-light);
}

.btn--signin:hover {
  color: var(--color-text-light);
}

.btn--signup {
  background: var(--color-btn-blue);
  color: var(--color-text-light);
}

.btn--signup:hover {
  color: var(--color-text-light);
}

.btn--bonus {
  background: linear-gradient(135deg, #25ABD8, #1a7fa8);
  color: var(--color-text-light);
}

.btn--bonus:hover {
  color: var(--color-text-light);
}


.site-header {
  background: var(--color-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.site-header .container {
  padding-top: 0;
  padding-bottom: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  flex-wrap: nowrap;
}

.header-logo img {
  height: 24px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.header-nav a {
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.header-nav a:hover,
.header-nav a.active {
  background: rgba(37,171,216,0.15);
  color: var(--color-btn-blue);
}

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

.header-online {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}

.header-online-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.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: #fff;
  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);
}


.hero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  background: url('/images/fontan-hero.webp') center/cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(22,19,36,0.88) 0%, rgba(37,171,216,0.22) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 64px 0;
}

.hero-content h1 {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin-bottom: 28px;
}

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(37,171,216,0.4);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  backdrop-filter: blur(4px);
}


.breadcrumbs {
  background: var(--color-card-bg);
  border-bottom: 1px solid var(--color-border);
  padding: 10px 0;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--color-text-muted);
}

.breadcrumb-list a {
  color: var(--color-btn-blue);
  font-weight: 500;
}

.breadcrumb-list a:hover {
  text-decoration: underline;
}

.breadcrumb-sep {
  color: var(--color-text-muted);
  font-size: 12px;
}


.section {
  padding: 56px 0;
}

.section--sm {
  padding: 32px 0;
}

.section--dark {
  background: var(--color-dark);
  color: var(--color-text-light);
}

.section--gray {
  background: #f4f6f9;
}

.section-title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.section-title--light {
  color: var(--color-text-light);
}

.section-sub {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

.section-sub--light {
  color: rgba(255,255,255,0.7);
}


.card {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  padding: 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card--dark {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
  color: #fff;
}


.advantages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.advantage-item {
  flex: 1 1 200px;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.advantage-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.advantage-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--color-btn-blue), #1d8fb5);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.advantage-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
}

.advantage-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
}


.winners-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

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

.winners-table th {
  background: var(--color-dark);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
}

.winners-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}

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

.winners-table tr:nth-child(even) td {
  background: var(--color-card-bg);
}

.winners-table tr:hover td {
  background: rgba(37,171,216,0.06);
}

.rank-medal {
  font-size: 16px;
}

.win-amount {
  color: #16a34a;
  font-weight: 600;
}


.bonuses-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.bonus-card {
  flex: 1 1 280px;
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.bonus-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.bonus-card-header {
  background: linear-gradient(135deg, var(--color-dark), #25355a);
  color: #fff;
  padding: 20px;
}

.bonus-card-header h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.bonus-amount {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-btn-blue);
}

.bonus-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bonus-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bonus-features li {
  font-size: 13px;
  color: var(--color-text-muted);
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.bonus-features li::before {
  content: '✓';
  color: var(--color-btn-blue);
  font-weight: 700;
  flex-shrink: 0;
}


.demo-wrap {
  background: var(--color-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.demo-wrap iframe {
  width: 100%;
  height: 500px;
  border: none;
  display: block;
}


.content-block {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.content-block h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
  margin: 24px 0 12px;
  line-height: 1.3;
}

.content-block h2:first-child {
  margin-top: 0;
}

.content-block h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
  margin: 20px 0 10px;
}

.content-block h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 16px 0 8px;
}

.content-block p {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 14px;
}

.content-block ul,
.content-block ol {
  padding-left: 24px;
  margin-bottom: 14px;
}

.content-block ul {
  list-style: disc;
}

.content-block ol {
  list-style: decimal;
}

.content-block li {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.65;
  margin-bottom: 6px;
}

.content-block a {
  color: var(--color-btn-blue);
  text-decoration: underline;
}

.content-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
}

.content-block table th {
  background: var(--color-dark);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  border: 1px solid var(--color-border);
}

.content-block table td {
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  vertical-align: top;
}

.content-block table tr:nth-child(even) td {
  background: var(--color-card-bg);
}

.content-block blockquote {
  border-left: 4px solid var(--color-btn-blue);
  padding: 12px 18px;
  background: rgba(37,171,216,0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 16px 0;
  font-style: italic;
  color: var(--color-text-muted);
}


.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--color-bg);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  transition: background var(--transition);
}

.faq-question:hover {
  background: var(--color-card-bg);
}

.faq-question.active {
  background: rgba(37,171,216,0.07);
  color: var(--color-btn-blue);
}

.faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: var(--color-btn-blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  transition: transform var(--transition);
  line-height: 1;
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.faq-answer.open {
  display: block;
  animation: fadeIn 0.2s ease;
}


.author-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 28px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--color-btn-blue);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 6px;
}

.author-bio {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.author-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.author-links a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-btn-blue);
  padding: 5px 12px;
  border: 1px solid var(--color-btn-blue);
  border-radius: 20px;
  transition: background var(--transition), color var(--transition);
}

.author-links a:hover {
  background: var(--color-btn-blue);
  color: #fff;
}


.site-footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.75);
  margin-top: auto;
}

.footer-top {
  padding: 48px 0 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 180px;
  min-width: 140px;
}

.footer-logo {
  display: block;
  margin-bottom: 12px;
  width: fit-content;
}

.footer-logo img {
  height: 24px;width: auto;
}

.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-nav a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--color-btn-blue);
}

.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.payment-badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.footer-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.provider-badge {
  background: rgba(37,171,216,0.12);
  border: 1px solid rgba(37,171,216,0.25);
  border-radius: var(--radius-sm);
  padding: 3px 9px;
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 10px;
}

.footer-legal-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

.footer-legal-links a:hover {
  color: var(--color-btn-blue);
}


.bottom-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--color-dark);
  border-top: 2px solid var(--color-btn-blue);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.3);
}

.widget-text {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.widget-bonus-label {
  background: var(--color-btn-blue);
  color: #fff;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 700;
}

.widget-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  padding: 4px;
  transition: color var(--transition);
  flex-shrink: 0;
}

.widget-close:hover {
  color: #fff;
}

body.widget-open {
  padding-bottom: 60px;
}


.reviews-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.review-card {
  flex: 1 1 240px;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--color-border);
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-top: 2px;
}

.review-stars svg {
  width: 14px;
  height: 14px;
  fill: #f59e0b;
}

.review-text {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
}


.review-form {
  background: var(--color-card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: 28px;
}

.review-form h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
}

.form-group input,
.form-group textarea {
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 14px;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-btn-blue);
  box-shadow: 0 0 0 3px rgba(37,171,216,0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-success {
  display: none;
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: #065f46;
  font-size: 14px;
  font-weight: 500;
  margin-top: 10px;
}


.info-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  margin: 0 auto;
}

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

.info-table td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  vertical-align: top;
}

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

.info-table tr:nth-child(even) td {
  background: var(--color-card-bg);
}

.info-table .param-name {
  font-weight: 600;
  color: var(--color-text);
  width: 40%;
  white-space: nowrap;
}

.info-table .param-value {
  color: var(--color-text-muted);
}


.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

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

.compare-table th {
  background: var(--color-dark);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.compare-table th:last-child {
  border-right: none;
}

.compare-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
}

.compare-table td:last-child {
  border-right: none;
}

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

.compare-table tr:nth-child(even) td {
  background: var(--color-card-bg);
}

.badge-high { color: #16a34a; font-weight: 600; }
.badge-med { color: #d97706; font-weight: 600; }
.badge-low { color: #dc2626; font-weight: 600; }


.jackpot-block {
  background: linear-gradient(135deg, #161324 0%, #1e2a4a 100%);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(37,171,216,0.3);
}

.jackpot-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}

.jackpot-amount {
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 700;
  color: var(--color-btn-blue);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 24px rgba(37,171,216,0.5);
  margin-bottom: 6px;
}

.jackpot-currency {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
}


.rtp-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

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

.rtp-table th {
  background: var(--color-dark);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
}

.rtp-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--color-border);
}

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

.rtp-table tr:nth-child(even) td {
  background: var(--color-card-bg);
}

.rtp-bar {
  height: 6px;
  background: #e5e7eb;
  border-radius: 3px;
  overflow: hidden;
  width: 100px;
}

.rtp-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-btn-blue), #22d3ee);
  border-radius: 3px;
}


.promo-block {
  background: linear-gradient(135deg, var(--color-dark), #1e2a4a);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  border: 1px solid rgba(37,171,216,0.3);
  box-shadow: var(--shadow-lg);
}

.promo-block h2 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 8px;
}

.promo-block p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.promo-code-box {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 2px dashed var(--color-btn-blue);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
}

.promo-code-text {
  padding: 14px 24px;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-btn-blue);
  letter-spacing: 0.1em;
  font-family: monospace;
  background: rgba(37,171,216,0.1);
  cursor: pointer;
  user-select: all;
}

.promo-copy-btn {
  background: var(--color-btn-blue);
  color: #fff;
  border: none;
  padding: 14px 18px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-main);
  transition: background var(--transition);
}

.promo-copy-btn:hover {
  background: var(--color-accent-hover);
}


.reg-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.reg-method-card {
  flex: 1 1 200px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.reg-method-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.reg-method-icon {
  font-size: 28px;
}

.reg-method-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}

.reg-method-desc {
  font-size: 12px;
  color: var(--color-text-muted);
}


.download-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.download-btn {
  flex: 1 1 200px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--color-dark);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.1);
  transition: background var(--transition), transform var(--transition);
}

.download-btn:hover {
  background: #22203a;
  transform: translateY(-2px);
  color: #fff;
}

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

.download-btn-label {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  display: block;
  margin-bottom: 2px;
}

.download-btn-name {
  font-size: 16px;
  font-weight: 700;
  display: block;
}


.app-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.app-spec-item {
  flex: 1 1 180px;
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 18px;
}

.app-spec-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.app-spec-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
}


.alternatives-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.alt-card {
  flex: 1 1 160px;
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  transition: background var(--transition), transform var(--transition);
}

.alt-card:hover {
  background: rgba(37,171,216,0.08);
  transform: translateY(-2px);
  color: var(--color-btn-blue);
}


.slots-features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.slot-feature-item {
  flex: 1 1 180px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.slot-feature-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.slot-feature-icon {
  font-size: 28px;
}

.slot-feature-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
}


.get-bonus-block {
  background: linear-gradient(135deg, rgba(37,171,216,0.12), rgba(37,171,216,0.04));
  border: 2px solid var(--color-btn-blue);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.get-bonus-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 6px;
}

.get-bonus-content p {
  font-size: 14px;
  color: var(--color-text-muted);
}


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

.mirror-action-btn {
  flex: 1 1 200px;
  background: var(--color-dark);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 18px 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid rgba(37,171,216,0.3);
  transition: background var(--transition), transform var(--transition);
  text-decoration: none;
  display: block;
}

.mirror-action-btn:hover {
  background: var(--color-btn-blue);
  color: #fff;
  transform: translateY(-2px);
}


.adv-post-reg {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.adv-post-item {
  flex: 1 1 180px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.adv-post-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.adv-post-icon {
  font-size: 30px;
  margin-bottom: 10px;
}

.adv-post-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
}


.technical-content {
  max-width: 860px;
  margin: 0 auto;
}

.technical-content h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 28px 0 10px;
  color: var(--color-text);
}

.technical-content h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 20px 0 8px;
  color: var(--color-text);
}

.technical-content p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.technical-content ul {
  padding-left: 24px;
  list-style: disc;
  margin-bottom: 12px;
}

.technical-content li {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 5px;
}
.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;}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeInUp 0.5s ease both;
}


.slider-wrap {
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.slider-track-bonus {
  display: flex;
  gap: 20px;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  flex-wrap: wrap;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.slider-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--color-text);
  transition: background var(--transition), color var(--transition);
  box-shadow: var(--shadow-sm);
}

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


.online-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(37,171,216,0.15);
  border: 1px solid rgba(37,171,216,0.3);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
}

.wpcf7-response-output { display: none; }
.elementor-invisible { visibility: hidden; }
.wp-block-spacer { height: 30px; }


@media (max-width: 1024px) {
  .header-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--color-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 16px 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    gap: 2px;
    z-index: 999;
  }

  .header-nav.open {
    display: flex;
    animation: fadeIn 0.2s ease;
  }

  .header-nav a {
    width: 100%;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
  }

  .burger {
    display: flex;
  }

  .site-header .container {
    position: relative;
  }

  .header-online {
    display: none;
  }
}

@media (max-width: 768px) {
  .section { padding: 36px 0; }
  .hero { min-height: 360px; }
  .hero-content { padding: 40px 0; }
  .content-block { padding: 20px; }
  .author-card { flex-direction: column; }
  .footer-grid { gap: 24px; }
  .bonus-card { flex: 1 1 100%; }
  .bottom-widget { flex-wrap: wrap; gap: 8px; }
  .jackpot-block { padding: 24px; }
  .get-bonus-block { flex-direction: column; text-align: center; }
  .review-card { flex: 1 1 100%; }
  .download-btn { flex: 1 1 100%; }
  .slider-track {flex-wrap: wrap;}
}

@media (max-width: 480px) {
  .header-actions .btn--signin {display: none;}
  .content-block { padding: 16px; }
  .btn {white-space: wrap;}
  .hero-content h1 { font-size: 22px; }
  .section-title { font-size: 20px; }
}
