/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-header: #222723;
  --color-footer: #222723;
  --color-btn-login: #02504b;
  --color-btn-signup: #f9c719;
  --color-bg: #0e2f2b;
  --color-text-light: #e8f0ef;
  --color-text-dark: #1a1a1a;
  --color-accent: #02504b;
  --color-accent-hover: #037066;
  --font-main: "Roboto", -apple-system, "BlinkMacSystemFont", "Segoe UI", "Oxygen", "Ubuntu", "Cantarell", "Open Sans",
    "Helvetica Neue", "Arial", sans-serif;
}

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

body.menu-open {
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header-main {
  background-color: var(--color-header);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo-link {
  display: block;
  transition: opacity 0.3s ease;
}

.logo-link:hover {
  opacity: 0.8;
}

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

.main-nav {
  display: block;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 25px;
  margin: 0;
}

.nav-link {
  color: var(--color-text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 15px;
}

.nav-link:hover {
  color: var(--color-btn-signup);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.online-counter {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
}

.online-icon {
  font-size: 12px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.auth-buttons {
  display: flex;
  gap: 10px;
}

.btn {
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 14px;
  display: inline-block;
}

.btn-login {
  background-color: var(--color-btn-login);
  color: #fff;
}

.btn-login:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
}

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

.btn-signup:hover {
  background-color: #ffd633;
  transform: translateY(-2px);
}

.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.burger-menu span {
  width: 25px;
  height: 3px;
  background-color: var(--color-text-light);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 40px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(14, 47, 43, 0.9) 0%, rgba(2, 80, 75, 0.8) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 60px 20px;
  max-width: 800px;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 28px;
  font-weight: 600;
  color: var(--color-btn-signup);
  margin-bottom: 15px;
}

.hero-description {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.8;
}

.btn-hero {
  background-color: var(--color-btn-signup);
  color: var(--color-text-dark);
  padding: 15px 40px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(249, 199, 25, 0.4);
}

.btn-hero:hover {
  background-color: #ffd633;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(249, 199, 25, 0.6);
}

/* Content Sections */
.content-wrapper {
  padding: 20px 0;
}

.main-heading {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--color-btn-signup);
}

.section-block {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.section-block:hover {
  transform: translateY(-5px);
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--color-btn-signup);
  text-align: center;
}

/* Info Table */
.table-responsive {
  overflow-x: auto;
  margin-top: 20px;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  overflow: hidden;
}

.info-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.info-table td {
  padding: 15px 20px;
  text-align: left;
}

.param-name {
  font-weight: 600;
  color: var(--color-text-light);
  width: 40%;
}

.param-value {
  color: #b8d4d1;
}

.info-table strong {
  color: var(--color-btn-signup);
}

/* Jackpots Section */
.jackpots-block {
  background: linear-gradient(135deg, rgba(2, 80, 75, 0.3) 0%, rgba(14, 47, 43, 0.3) 100%);
}

.jackpots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.jackpot-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.jackpot-card:hover {
  border-color: var(--color-btn-signup);
  transform: scale(1.05);
}

.jackpot-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.jackpot-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-btn-signup);
}

.jackpot-amount {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.jackpot-desc {
  font-size: 14px;
  color: #b8d4d1;
}

/* Screenshots Section */
.screenshots-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin-top: 20px;
}

.screenshots-slider {
  display: flex;
  transition: transform 0.5s ease;
}

.screenshot-item {
  min-width: 100%;
  flex-shrink: 0;
}

.screenshot-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.screenshot-caption {
  text-align: center;
  margin-top: 15px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-btn-signup);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(249, 199, 25, 0.9);
  color: var(--color-text-dark);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: var(--color-btn-signup);
  transform: translateY(-50%) scale(1.1);
}

.slider-prev {
  left: 20px;
}

.slider-next {
  right: 20px;
}

/* Demo Game Section */
.demo-game-wrapper {
  margin-top: 20px;
}

.demo-placeholder {
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 60px 20px;
  text-align: center;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.demo-placeholder p {
  font-size: 18px;
  margin-bottom: 10px;
}

.demo-note {
  color: #b8d4d1;
  font-size: 14px;
}

/* FAQ Section */
.faq-wrapper {
  margin-top: 20px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.faq-question:hover {
  background: rgba(255, 255, 255, 0.08);
}

.faq-icon {
  font-size: 24px;
  color: var(--color-btn-signup);
  font-weight: 700;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  padding: 0 20px;
}

.faq-answer.active {
  max-height: 500px;
  padding: 0 20px 20px 20px;
}

.faq-answer p {
  line-height: 1.8;
  color: #b8d4d1;
}

/* Author Section */
.author-block {
  background: linear-gradient(135deg, rgba(2, 80, 75, 0.2) 0%, rgba(14, 47, 43, 0.2) 100%);
}

.author-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-btn-signup);
}

.author-info {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.author-avatar img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-btn-signup);
}

.author-details {
  flex: 1;
}

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

.author-bio {
  line-height: 1.8;
  margin-bottom: 15px;
  color: #b8d4d1;
}

.author-link {
  color: var(--color-btn-signup);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.author-link:hover {
  color: #ffd633;
}

/* Text Content Styling */
.text-content {
  line-height: 1.8;
}

.text-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--color-btn-signup);
}

.text-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 12px;
  color: var(--color-text-light);
}

.text-content p {
  margin-bottom: 15px;
  color: #b8d4d1;
}

.text-content ul,
.text-content ol {
  margin-bottom: 15px;
  padding-left: 30px;
  color: #b8d4d1;
}

.text-content li {
  margin-bottom: 8px;
}

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

.text-content a:hover {
  color: #ffd633;
}

.text-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: rgba(255, 255, 255, 0.03);
}

.text-content table th,
.text-content table td {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}

.text-content table th {
  background: rgba(255, 255, 255, 0.08);
  font-weight: 600;
  color: var(--color-btn-signup);
}

/* Footer Styles */
.footer-main {
  background-color: var(--color-footer);
  padding: 40px 0 20px;
  margin-top: 60px;
}

.footer-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

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

.footer-nav-list {
  display: flex;
  list-style: none;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-nav-list a {
  color: var(--color-text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-subtitle {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--color-btn-signup);
}

.payment-logos,
.provider-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.payment-logos img,
.provider-logos img {
  height: 40px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.payment-logos img:hover,
.provider-logos img:hover {
  opacity: 1;
}

.footer-legal {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-text {
  font-size: 13px;
  color: #b8d4d1;
  margin-bottom: 8px;
}

/* Sticky Widget */
.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--color-btn-login) 0%, var(--color-accent-hover) 100%);
  padding: 15px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-widget.visible {
  transform: translateY(0);
}

.widget-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.widget-bonus {
  display: flex;
  align-items: center;
  gap: 15px;
}

.widget-icon {
  font-size: 32px;
}

.widget-text {
  display: flex;
  flex-direction: column;
}

.widget-text strong {
  font-size: 18px;
  color: #fff;
}

.widget-text span {
  font-size: 14px;
  color: var(--color-btn-signup);
}

.widget-btn {
  background-color: var(--color-btn-signup);
  color: var(--color-text-dark);
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.widget-btn:hover {
  background-color: #ffd633;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
  .main-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--color-header);
    padding: 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }

  .main-nav.active {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    gap: 15px;
  }

  .burger-menu {
    display: flex;
  }

  .online-counter {
    display: none;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 22px;
  }

  .screenshots-slider {
    display: block;
  }

  .screenshot-item {
    min-width: 100%;
  }

  .slider-btn {
    display: none;
  }

  .author-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .header-left {
    gap: 20px;
  }

  .auth-buttons {
    gap: 8px;
  }

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

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-description {
    font-size: 16px;
  }

  .main-heading {
    font-size: 28px;
  }

  .section-title {
    font-size: 22px;
  }

  .section-block {
    padding: 20px;
  }

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

  .widget-content {
    flex-direction: column;
    gap: 15px;
  }

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

  .footer-top {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav-list {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .logo-img {
    max-width: 150px;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .btn-hero {
    padding: 12px 30px;
    font-size: 16px;
  }

  .param-name,
  .param-value {
    font-size: 14px;
  }

  .jackpot-amount {
    font-size: 24px;
  }
}

/* Unused styles for uniqueness */
.xk9m2p {
  display: none;
}
.zt7w4q {
  visibility: hidden;
}
.pq3n8r {
  opacity: 0;
}
.lm5k9s {
  position: absolute;
  left: -9999px;
}
.wn2j7t {
  color: transparent;
}
.vh8p4u {
  font-size: 0;
}
.rk6m3v {
  height: 0;
  overflow: hidden;
}
.dn9q2w {
  width: 0;
}
.fm4t8x {
  pointer-events: none;
}
.gp7n5y {
  user-select: none;
}
/* === NEW BLOCK (container.new) ======================================= */
.container.new{
    background: rgba(255,255,255,0.04);
    color: var(--color-text-light);
    padding: clamp(20px, 3vw, 32px);
    border-radius: 14px;
    box-shadow: 0 6px 22px rgba(0,0,0,.25);
    border: 1px solid rgba(255,255,255,0.06);
}

/* Заголовки усередині .new */
.container.new h1{
    font-size: clamp(26px, 3.2vw, 40px);
    line-height: 1.2;
    margin: 0 0 18px;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0,0,0,.25);
}
.container.new h2{
    font-size: clamp(20px, 2.4vw, 28px);
    margin: 28px 0 14px;
    color: var(--color-btn-signup);         /* жовтий акцент */
    font-weight: 800;
}
.container.new h3{
    font-size: clamp(18px, 2vw, 22px);
    margin: 22px 0 10px;
    color: #dfe9e7;
    font-weight: 700;
}
.container.new p{
    margin: 0 0 14px;
    opacity: .95;
}

/* Посилання */
.container.new a{
    color: var(--color-btn-signup);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.container.new a:hover{ color: #ffd633; }

/* Списки */
.container.new ul,
.container.new ol{
    margin: 0 0 16px 18px;
    padding-left: 14px;
}
.container.new li{ margin: 6px 0; }
.container.new ul > li::marker{ color: #4ade80; } /* легкий «зелений» акцент */

/* Таблиця (двухколоночна параметрів) */
.container.new table{
    width: 100%;
    border-collapse: collapse;
    margin: 14px 0 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    overflow: hidden;
}
.container.new th,
.container.new td{
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    text-align: left;
}
.container.new th{
    background: rgba(255,255,255,0.06);
    color: var(--color-btn-signup);
    font-weight: 700;
}
.container.new tr:last-child td{ border-bottom: none; }
.container.new strong{ color: var(--color-btn-signup); }

/* Нотиси/алерти */
.container.new .note,
.container.new .warning,
.container.new .success{
    padding: 14px 16px;
    border-radius: 10px;
    margin: 14px 0;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
}
.container.new .warning{
    border-color: rgba(239,68,68,.55);
    background: rgba(239,68,68,.12);
    color: #ffb9b9;
}
.container.new .success{
    border-color: rgba(74,222,128,.5);
    background: rgba(74,222,128,.12);
    color: #bdf4cf;
}

/* Бейджі */
.container.new .badge{
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .2px;
    background: var(--color-btn-signup);
    color: var(--color-text-dark);
}

/* CTA-посилання */
.container.new .btn-link{
    display: inline-block;
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--color-btn-signup);
    color: var(--color-text-dark);
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 4px 14px rgba(249,199,25,.35);
    transition: transform .2s ease, box-shadow .2s ease;
}
.container.new .btn-link:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249,199,25,.45);
}

/* Зображення/iframe всередині блоку */
.container.new img,
.container.new iframe{
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
}

/* Відступ до якорів, щоб не «під'їдалися» під фіксованим хедером */
.container.new [id]{ scroll-margin-top: var(--header-height, 70px); }

/* Адаптивна таблиця (mobile stack) */
@media (max-width: 700px){
    .container.new table,
    .container.new thead,
    .container.new tbody,
    .container.new tr,
    .container.new th,
    .container.new td{
        display: block;
        width: 100%;
    }
    .container.new thead{ display: none; }
    .container.new tr{
        background: rgba(255,255,255,0.03);
        margin: 0 0 10px;
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 10px;
        overflow: hidden;
    }
    .container.new td{
        border-bottom: 1px dashed rgba(255,255,255,0.08);
        position: relative;
        padding-left: 46%;
        min-height: 42px;
    }
    .container.new td:last-child{ border-bottom: none; }
    .container.new td::before{
        content: attr(data-label);          /* заповни data-label=... у td */
        position: absolute;
        left: 12px; top: 50%;
        transform: translateY(-50%);
        color: #b8d4d1;
        font-weight: 600;
        width: 40%;
        white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }
}

/* Дрібні покращення читабельності */
.container.new blockquote{
    margin: 14px 0;
    padding: 12px 16px;
    border-left: 4px solid var(--color-accent);
    background: rgba(2,80,75,.12);
    border-radius: 6px;
}
/* База */
.screenshots-wrapper{
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 20px;
}
.screenshot-item img{
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* ДЕСКТОП ≥ 993px: 3 в ряд, без слайдера */
@media (min-width: 993px){
    .screenshots-slider{
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        transform: none !important;     /* глушимо старі трансформи */
        transition: none !important;
        overflow: visible !important;
    }
    .screenshot-item{
        min-width: 0 !important;
        flex: initial !important;
    }
    .slider-btn{ display: none !important; }
}

/* МОБАЙЛЬНИЙ ≤ 992px: горизонтальний скрол + scroll-snap */
@media (max-width: 992px){
    .screenshots-slider{
        display: flex !important;
        gap: 16px;
        overflow-x: auto !important;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        transform: none !important;     /* не використовуємо translateX */
        transition: none !important;
    }
    .screenshots-slider::-webkit-scrollbar{ display:none; }
    .screenshot-item{
        flex: 0 0 100%;
        min-width: 100%;
        scroll-snap-align: start;
    }
    .slider-btn{
        display: inline-flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 5;
        width: 44px; height: 44px; border-radius: 50%;
        align-items: center; justify-content: center;
    }
    .slider-prev{ left: 6px; }
    .slider-next{ right: 6px; }
}
