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

:root {
  --color-nav: #2d1770;
  --color-nav-dark: #1e0f50;
  --color-btn-orange: #fa8159;
  --color-btn-green: #026741;
  --color-bg: #95c6db;
  --color-bg-light: #b8d9e8;
  --color-white: #ffffff;
  --color-text: #1a1a2e;
  --color-text-light: #f0eeff;
  --color-card: #ffffff;
  --color-border: #d0e8f2;
  --color-accent: #fa8159;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(45,23,112,0.10);
  --shadow-md: 0 6px 24px rgba(45,23,112,0.15);
  --shadow-lg: 0 12px 48px rgba(45,23,112,0.18);
  --font-main: 'Oswald', sans-serif;
}

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

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

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

a { color: var(--color-btn-orange); text-decoration: none; transition: color 0.2s; }
a:hover { color: var( --color-text); }

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

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

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

.container--full { max-width: 100%; padding: 0; }

.site-header {
  background: var(--color-nav);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
}

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

.header-logo a { display: flex; align-items: center; gap: 10px; }
.header-logo img { height: 50px; width: auto; object-fit: contain; }
.header-logo .logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.header-nav { display: flex; align-items: center; gap: 6px; }
.header-nav a {
  color: var(--color-text-light);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s, color 0.2s;
}
.header-nav a:hover { background: rgba(255,255,255,0.12); color: var(--color-white); }
.header-nav svg { width: 16px; height: 16px; flex-shrink: 0; }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s, filter 0.18s;
  text-transform: uppercase;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.18); filter: brightness(1.07); }
.btn:active { transform: translateY(0); }

.btn--green { background: var(--color-btn-green); color: #fff; }
.btn--orange { background: var(--color-btn-orange); color: #fff; }
.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.45);
}
.btn--outline:hover { background: rgba(255,255,255,0.12); color: #fff; }

.btn--lg { font-size: 1rem; padding: 13px 30px; border-radius: var(--radius-md); }
.btn--xl { font-size: 1.1rem; padding: 15px 38px; border-radius: var(--radius-md); }

.btn--pulse {
  animation: btnPulse 2.2s infinite;
}
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(2,103,65,0.5); }
  50% { box-shadow: 0 0 0 10px rgba(2,103,65,0); }
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.burger:hover { background: rgba(255,255,255,0.1); }
.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.28s, opacity 0.28s;
}
.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-nav {
  display: none;
  background: var(--color-nav-dark);
  padding: 12px 20px 18px;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--color-text-light);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}
.mobile-nav a:hover { background: rgba(255,255,255,0.08); }
.mobile-nav svg { width: 16px; height: 16px; }

.hero-section {
  position: relative;
  background: var(--color-nav);
  overflow: hidden;
  padding: 60px 0 56px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/img/fishin-frenzy-hero.jpg');
  background-size: cover;
  background-position: center top;
  opacity: 0.22;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,23,112,0.88) 0%, rgba(2,103,65,0.25) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(250,129,89,0.18);
  border: 1px solid rgba(250,129,89,0.45);
  color: var(--color-btn-orange);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 100px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.hero-title span { color: var(--color-btn-orange); }

.hero-desc {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 560px;
  line-height: 1.65;
}

.hero-tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-tile {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 130px;
  backdrop-filter: blur(6px);
  transition: background 0.2s, transform 0.2s;
}
.hero-tile:hover { background: rgba(255,255,255,0.16); transform: translateY(-2px); }
.hero-tile__label {
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-tile__value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-white);
}
.hero-tile__value span { color: var(--color-btn-orange); }

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

.section { padding: 60px 0; }
.section--alt { background: rgba(255,255,255,0.35); }
.section--dark { background: var(--color-nav); color: var(--color-text-light); }

.section-header { text-align: center; margin-bottom: 40px; }
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--color-nav);
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  display: block;
  width: 54px;
  height: 3px;
  background: var(--color-btn-orange);
  border-radius: 2px;
  margin: 8px auto 0;
}
.section--dark .section-title { color: var(--color-white); }
.section-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: #4a5568;
  margin-top: 8px;
}
.section--dark .section-subtitle { color: rgba(255,255,255,0.7); }

.advantages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.adv-card {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  flex: 1 1 200px;
  max-width: 260px;
  transition: transform 0.22s, box-shadow 0.22s;
  border: 1px solid var(--color-border);
}
.adv-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.adv-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-nav) 0%, #4a2ba8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.adv-icon svg { width: 26px; height: 26px; color: #fff; }

.adv-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-nav);
}
.adv-card p {
  font-size: 0.88rem;
  font-weight: 300;
  color: #555;
  line-height: 1.6;
}

.game-layout {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.game-details-wrap { flex: 1 1 380px; }
.game-demo-wrap { flex: 1 1 480px; }

.game-table-container {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.game-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-card);
  font-size: 0.9rem;
}
.game-table th, .game-table td {
  text-align: left;
  padding: 11px 14px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}
.game-table thead th {
  background: var(--color-nav);
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.game-table tr:last-child td { border-bottom: none; }
.game-table tr:nth-child(even) { background: #f4f8fb; }
.game-table tr:hover td { background: #eaf3f9; }
.game-table .param-icon { display: flex; align-items: center; gap: 8px; font-weight: 500; color: var(--color-nav); }
.game-table .param-icon svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--color-btn-orange); }
.game-table td:last-child { font-weight: 500; color: var(--color-text); }

.demo-card {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 2px solid var(--color-btn-green);
}

.demo-header {
  background: var(--color-nav);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.demo-header span {
  color: var(--color-white);
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.demo-header svg { width: 18px; height: 18px; color: var(--color-btn-orange); }

.demo-frame-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 62%;
  background: #0a0a1a;
}
.demo-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.demo-footer {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #f8fafd;
  flex-wrap: wrap;
}
.demo-note { font-size: 0.78rem; font-weight: 300; color: #777; }

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

.bonus-card {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1 1 280px;
  max-width: 360px;
  transition: transform 0.22s, box-shadow 0.22s;
  position: relative;
  overflow: hidden;
}
.bonus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-btn-orange), var(--color-btn-green));
}
.bonus-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.bonus-casino-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-nav);
}
.bonus-amount {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-btn-green);
  line-height: 1.1;
}
.bonus-amount small { font-size: 0.85rem; font-weight: 400; color: #666; display: block; margin-top: 2px; }
.bonus-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fff3ee;
  color: var(--color-btn-orange);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(250,129,89,0.3);
}
.bonus-terms {
  font-size: 0.78rem;
  font-weight: 300;
  color: #888;
  line-height: 1.55;
}

.content-block {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 36px 40px;
  border: 1px solid var(--color-border);
}

.content-block h2 { font-size: 1.5rem; color: var(--color-nav); margin-bottom: 16px; }
.content-block h3 { font-size: 1.2rem; color: var(--color-nav); margin: 20px 0 10px; }
.content-block h4 { font-size: 1rem; color: var(--color-nav); margin: 16px 0 8px; }
.content-block p { font-size: 0.95rem; font-weight: 300; color: #333; line-height: 1.75; margin-bottom: 14px; }
.content-block ul, .content-block ol { padding-left: 22px; margin-bottom: 14px; }
.content-block li { font-size: 0.92rem; font-weight: 300; color: #444; line-height: 1.65; margin-bottom: 5px; }
.content-block a { color: var(--color-btn-orange); }
.content-block strong, .content-block b { color: var(--color-nav); font-weight: 600; }
.content-block em { color: var(--color-btn-green); font-style: italic; }
.content-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  text-align: left;
}
.content-block table th, .content-block table td {
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  font-size: 0.9rem;
}
.content-block table th { background: var(--color-nav); color: #fff; font-weight: 600; }
.content-block table tr:nth-child(even) td { background: #f6f9fd; }

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

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

.faq-question {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  user-select: none;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  transition: background 0.2s;
}
.faq-question:hover { background: #f0f6ff; }
.faq-question span {
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--color-nav);
  font-family: var(--font-main);
}
.faq-chevron {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--color-btn-orange);
  transition: transform 0.3s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  display: none;
  padding: 10px 22px 18px;
  font-size: 0.92rem;
  font-weight: 300;
  color: #444;
  line-height: 1.7;
  border-top: 1px solid var(--color-border);
}
.faq-item.open .faq-answer { display: block; }

.author-card {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 36px 40px;
  display: flex;
  gap: 30px;
  align-items: flex-start;
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}
.author-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--color-nav), var(--color-btn-green));
  border-radius: 0 0 0 var(--radius-lg);
}

.author-photo-wrap { flex-shrink: 0; }
.author-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-nav);
  box-shadow: var(--shadow-sm);
}
.author-photo-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-nav), #4a2ba8);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--color-nav);
}
.author-photo-placeholder svg { width: 48px; height: 48px; color: rgba(255,255,255,0.85); }

.author-info { flex: 1; }
.author-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-nav);
  margin-bottom: 4px;
}
.author-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-btn-orange);
  margin-bottom: 10px;
}
.author-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 14px;
}
.author-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  font-weight: 400;
  color: #555;
}
.author-meta-item svg { width: 14px; height: 14px; color: var(--color-btn-orange); }

.author-bio {
  font-size: 0.9rem;
  font-weight: 300;
  color: #444;
  line-height: 1.7;
  margin-bottom: 14px;
}

.author-links { display: flex; flex-wrap: wrap; gap: 10px; }
.author-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0f4ff;
  color: var(--color-nav);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--color-border);
  transition: background 0.2s, color 0.2s;
}
.author-link:hover { background: var(--color-nav); color: #fff; }
.author-link svg { width: 14px; height: 14px; }

.author-dates {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.78rem;
  font-weight: 300;
  color: #888;
}
.author-dates span { display: flex; align-items: center; gap: 4px; }
.author-dates svg { width: 12px; height: 12px; }

.site-footer {
  background: var(--color-nav);
  color: rgba(255,255,255,0.75);
  padding: 50px 0 24px;
  margin-top: auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
  padding-bottom: 36px;
  margin-bottom: 30px;
}

.footer-logo img { height: 50px;width: auto; object-fit: contain; margin-bottom: 12px; }
.footer-logo .logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.footer-logo p { font-size: 0.82rem; font-weight: 300; max-width: 220px; line-height: 1.6; }

.footer-nav h4 {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.footer-nav ul a {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  font-weight: 300;
  transition: color 0.2s;
}
.footer-nav ul a:hover { color: var(--color-btn-orange); }

.footer-trust h4 {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.footer-trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.trust-badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.trust-badge svg { width: 13px; height: 13px; }

.footer-payments h4 {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.footer-payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.pay-badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
}

.footer-social { display: flex; gap: 10px; margin-top: 10px; }
.social-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  color: rgba(255,255,255,0.8);
}
.social-icon:hover { background: var(--color-btn-orange); color: #fff; transform: translateY(-2px); }
.social-icon svg { width: 15px; height: 15px; }

.footer-email {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}
.footer-email svg { width: 14px; height: 14px; color: var(--color-btn-orange); }
.footer-email a { color: var(--color-btn-orange); }

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.footer-flag-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-flag-row img { height: 18px; width: auto; border-radius: 2px; }
.footer-provider-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-provider-row img { height: 28px; width: auto; object-fit: contain; opacity: 0.75; filter: brightness(2); }

.footer-legal {
  font-size: 0.76rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 760px;
  text-align: center;
}

.copyright {
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
}

.bonus-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(90deg, var(--color-btn-green) 0%, #03815a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.22);
  flex-wrap: wrap;
}
.bonus-widget__text {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.bonus-widget__text svg { width: 18px; height: 18px; }
.bonus-widget__close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.bonus-widget__close:hover { background: rgba(0,0,0,0.15); color: #fff; }
.bonus-widget__close svg { width: 14px; height: 14px; }

.slider-wrap { position: relative; overflow: hidden; }
.slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
}
.slider-controls {
  display: none;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}
.slider-btn {
  background: var(--color-nav);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.slider-btn:hover { background: var(--color-btn-orange); }
.slider-btn svg { width: 18px; height: 18px; }

.text-center { text-align: center; }
.text-orange { color: var(--color-btn-orange); }
.text-green { color: var(--color-btn-green); }
.text-nav { color: var(--color-nav); }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.badge--green { background: #e6f4ef; color: var(--color-btn-green); border: 1px solid #b2d8ca; }
.badge--orange { background: #fff3ee; color: var(--color-btn-orange); border: 1px solid #fdd5c4; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.fade-in-up { animation: fadeInUp 0.55s ease both; }
.fade-in { animation: fadeIn 0.45s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

.wp-block-image { margin: 16px 0; }
.wp-caption { font-size: 0.82rem; color: #888; text-align: center; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.wpcf7 { display: none; }
.entry-content .wp-block-group { margin-bottom: 20px; }
.elementor-element { display: block; }
.elementor-widget { margin-bottom: 16px; }

@media (max-width: 1024px) {
  .game-layout { flex-direction: column; }
  .game-demo-wrap { width: 100%; }
  .game-details-wrap { width: 100%; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .burger { display: flex; }
  .hero-section { padding: 40px 0 44px; }
  .hero-tiles { gap: 10px; }
  .hero-tile { min-width: 110px; padding: 12px 14px; }
  .section { padding: 44px 0; }
  .author-card { flex-direction: column; gap: 20px; padding: 24px 20px; }
  .content-block { padding: 24px 20px; }
  .bonuses-grid { flex-direction: column; align-items: stretch; }
  .bonus-card { max-width: 100%; }
  .advantages-grid { gap: 14px; }
  .adv-card { flex: 1 1 150px; max-width: none; padding: 20px 16px; }
  .slider-controls { display: flex; }
  .footer-top { gap: 28px; }
  .bonus-widget { padding: 8px 46px 8px 20px; justify-content: center; text-align: center; }
  .bonus-widget__text { font-size: 0.82rem; }
  .footer-top {flex-direction: column;}
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.8rem; }
  .header-inner { height: 60px; }
  .header-logo img { height: 36px; }
  .section-title { font-size: 1.4rem; }
  .game-table th, .game-table td { padding: 9px 10px; font-size: 0.82rem; }
  .adv-card { flex: 1 1 130px; }
  .content-block { padding: 20px 16px; }
  .container {padding: 0 16px;}
}
@media (max-width: 420px) {
.header-cta .btn--orange{display: none;}
}