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

body {
  font-family: "Open Sans", sans-serif;
  background: #1b559c;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.header-main-qx7k9m {
  background: #303030;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.logo-link-px9k2n {
  display: block;
}

.logo-img-qm7k5x {
  height: 50px;
  width: auto;
  display: block;
}

.header-nav-tk8m3p {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list-zm5k7n {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link-wn9k2p {
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  transition: color 0.3s ease;
  font-size: 15px;
}

.nav-link-wn9k2p:hover {
  color: #945f41;
}

.nav-icon-px7k3m {
  width: 20px;
  height: 20px;
}

.dropdown-parent-mk7n4x {
  position: relative;
}

.dropdown-toggle-qx8k5m {
  cursor: pointer;
}

.dropdown-menu-px9k3n {
  position: absolute;
  top: 100%;
  left: 0;
  background: #404040;
  list-style: none;
  padding: 10px 0;
  margin-top: 10px;
  border-radius: 8px;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.dropdown-parent-mk7n4x:hover .dropdown-menu-px9k3n {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item-wm7k2p {
  color: #ffffff;
  text-decoration: none;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.3s ease;
}

.dropdown-item-wm7k2p:hover {
  background: #505050;
}

.flag-emoji-qx5k8m {
  font-size: 18px;
}

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

.online-counter-qx9k3m {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #ffffff;
}

.online-icon-wn7k2p {
  animation: pulse-qx7k3m 2s infinite;
}

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

.online-text-zm5k4n strong {
  color: #4ade80;
}

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

.btn-demo-header-qx7k3n {
  background: #737275;
  color: #ffffff;
}

.btn-demo-header-qx7k3n:hover {
  background: #5a595c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(115, 114, 117, 0.4);
}

.btn-money-header-wm9k2x {
  background: #945f41;
  color: #ffffff;
}

.btn-money-header-wm9k2x:hover {
  background: #7a4d34;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(148, 95, 65, 0.4);
}

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

.burger-line-qm8k3p {
  width: 25px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger-menu-px7k4n.active .burger-line-qm8k3p:nth-child(1) {
  transform: rotate(45deg) translateY(11px);
}

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

.burger-menu-px7k4n.active .burger-line-qm8k3p:nth-child(3) {
  transform: rotate(-45deg) translateY(-11px);
}

.hero-qw8p3x {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/hero-banner.jpg");
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  text-align: center;
  margin-bottom: 50px;
}

.hero-title-nx7k4p {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.hero-subtitle-rm5q8t {
  font-size: 20px;
  margin-bottom: 40px;
  color: #f0f0f0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.hero-buttons-wp9n2k {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-dk3m7q {
  padding: 16px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-demo-qx8p5n {
  background: #737275;
  color: #ffffff;
  border: 2px solid #737275;
}

.btn-demo-qx8p5n:hover {
  background: transparent;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(115, 114, 117, 0.4);
}

.btn-money-zm4k9p {
  background: #945f41;
  color: #ffffff;
  border: 2px solid #945f41;
}

.btn-money-zm4k9p:hover {
  background: transparent;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(148, 95, 65, 0.4);
}

.content-rx6n2m {
  flex: 1;
  padding: 40px 0;
}

.proscons-tn8w4k {
  margin-bottom: 60px;
}

.proscons-grid-kp7m3x {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.pros-block-qm9n5t,
.cons-block-zm8p6k {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-title-dx4k7p {
  font-size: 24px;
  margin-bottom: 20px;
  color: #ffffff;
}

.list-wn5k2m {
  list-style: none;
}

.list-item-px7k4n {
  padding: 12px 0 12px 30px;
  position: relative;
  font-size: 15px;
  line-height: 1.6;
}

.list-item-px7k4n:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #945f41;
  font-weight: bold;
}

.jackpots-mx7k4p {
  margin-bottom: 60px;
}

.section-title-center-wk9m3x {
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
  color: #ffffff;
}

.jackpots-grid-tn6p8m {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.jackpot-card-qx9k7n {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 2px solid;
  transition: transform 0.3s ease;
}

.jackpot-card-qx9k7n:hover {
  transform: translateY(-5px);
}

.jackpot-bronze-lm4p3k {
  border-color: #cd7f32;
}

.jackpot-silver-tm3k9x {
  border-color: #c0c0c0;
}

.jackpot-gold-pk6m8n {
  border-color: #ffd700;
}

.jackpot-level-px7n2m {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.jackpot-amount-dk8m5p {
  font-size: 36px;
  font-weight: 700;
  color: #4ade80;
  margin-bottom: 20px;
}

.winners-title-qm8p3n {
  font-size: 16px;
  margin-bottom: 10px;
  color: #ffffff;
}

.winners-list-zm5k2p {
  list-style: none;
  counter-reset: winners-counter;
  text-align: left;
}

.winner-item-nx7k4m {
  padding: 8px 0;
  font-size: 14px;
  color: #e0e0e0;
}

.app-section-rx8k3m {
  margin-bottom: 60px;
}

.app-table-zm5k8n {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 30px;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

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

.app-table-zm5k8n tr:last-child {
  border-bottom: none;
}

.table-label-px9m2k {
  padding: 15px 20px;
  font-weight: 600;
  text-align: left;
  width: 40%;
}

.table-value-wn7k5m {
  padding: 15px 20px;
  text-align: left;
}

.download-buttons-tk6m9p {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.download-btn-qx7k4n {
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-size: 15px;
}

.appstore-btn-wm3p8k {
  background: #000000;
  color: #ffffff;
}

.appstore-btn-wm3p8k:hover {
  background: #2c2c2c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.playmarket-btn-rm8n3k {
  background: #01875f;
  color: #ffffff;
}

.playmarket-btn-rm8n3k:hover {
  background: #016948;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(1, 135, 95, 0.5);
}

.apk-btn-dn7k3m {
  background: #945f41;
  color: #ffffff;
}

.apk-btn-dn7k3m:hover {
  background: #7a4d34;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(148, 95, 65, 0.5);
}

.download-icon-px5k2m {
  width: 24px;
  height: 24px;
}

.bonuses-section-mx7k5p {
  margin-bottom: 60px;
}

.bonuses-grid-tk7m3x {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.bonus-card-px9k2n {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.bonus-card-px9k2n:hover {
  transform: translateY(-5px);
}

.bonus-casino-wm6k4p {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

.bonus-amount-qx7k9m {
  font-size: 28px;
  font-weight: 700;
  color: #4ade80;
  margin-bottom: 15px;
}

.bonus-desc-zm5k3n {
  font-size: 15px;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.bonus-btn-dk8m7p {
  background: #945f41;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.bonus-btn-dk8m7p:hover {
  background: #7a4d34;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(148, 95, 65, 0.4);
}

.demo-section-rx8k4m {
  margin-bottom: 60px;
}

.demo-iframe-wrapper-mx8k3n {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 30px;
  padding-top: 56.25%;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  overflow: hidden;
}

.demo-iframe-px7k9m {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.demo-overlay-wk5m2n {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10;
}

.demo-play-btn-qx9k4p {
  background: #945f41;
  color: #ffffff;
  padding: 20px 50px;
  border: none;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.demo-play-btn-qx9k4p:hover {
  background: #7a4d34;
  transform: scale(1.05);
}

.demo-action-zm6k3m {
  text-align: center;
}

.btn-money-full-tk8m5p {
  background: #945f41;
  color: #ffffff;
  padding: 16px 50px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-money-full-tk8m5p:hover {
  background: #7a4d34;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(148, 95, 65, 0.4);
}

.content-text-rx9k4m {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 60px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.content-text-rx9k4m h2 {
  font-size: 28px;
  margin: 30px 0 20px;
  color: #ffffff;
}

.content-text-rx9k4m h3 {
  font-size: 22px;
  margin: 25px 0 15px;
  color: #ffffff;
}

.content-text-rx9k4m p {
  margin-bottom: 15px;
  line-height: 1.8;
  font-size: 16px;
}

.content-text-rx9k4m ul,
.content-text-rx9k4m ol {
  margin: 15px 0;
  padding-left: 30px;
}

.content-text-rx9k4m li {
  margin-bottom: 10px;
  line-height: 1.7;
}

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

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

.content-text-rx9k4m table th {
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
}

.footer-main-rx8k5m {
  background: #303030;
  padding: 50px 0 30px;
  margin-top: auto;
}

.footer-top-wn7k3p {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo-zm6k4p {
  height: 45px;
  width: auto;
  margin-bottom: 15px;
}

.footer-desc-tk8m5n {
  font-size: 14px;
  color: #cccccc;
  line-height: 1.6;
}

.footer-title-qm9k2n {
  font-size: 18px;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-list-wn5k8p {
  list-style: none;
}

.footer-link-mx7k4n {
  color: #cccccc;
  text-decoration: none;
  display: block;
  padding: 8px 0;
  transition: color 0.3s ease;
  font-size: 14px;
}

.footer-link-mx7k4n:hover {
  color: #945f41;
}

.footer-item-rx6k2m {
  padding: 8px 0;
  font-size: 14px;
  color: #cccccc;
}

.footer-payments-zm5k7n {
  margin-bottom: 40px;
}

.footer-title-center-px8k4m {
  text-align: center;
  font-size: 18px;
  margin-bottom: 25px;
  color: #ffffff;
}

.payments-grid-qx9k2p {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.payment-logo-wn7k3m {
  height: 38px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.payment-logo-wn7k3m:hover {
  opacity: 1;
}

.footer-licenses-tk6m8p {
  margin-bottom: 40px;
}

.licenses-flex-mx9k3n {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.license-img-qx7k2m {
  height: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.license-img-qx7k2m:hover {
  opacity: 1;
}

.footer-provider-wn8k5m {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.provider-text-px7k3n {
  font-size: 14px;
  color: #cccccc;
}

.provider-logo-qm9k2x {
  height: 40px;
  width: auto;
}

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

.copyright-text-qx9k5n {
  text-align: center;
  font-size: 14px;
  color: #cccccc;
  margin-bottom: 15px;
}

.legal-text-wn6k2m {
  text-align: center;
  font-size: 12px;
  color: #999999;
  margin-bottom: 15px;
  line-height: 1.6;
}

.legal-links-mx8k4p {
  text-align: center;
  font-size: 13px;
}

.legal-link-dk7k3n {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-link-dk7k3n:hover {
  color: #945f41;
}

.widget-fixed-qx7k3m {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #945f41;
  padding: 15px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
  animation: slideUp-mx7k3n 0.5s ease;
}

@keyframes slideUp-mx7k3n {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

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

.widget-text-pk6m2n {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}

.widget-btn-wn9k4m {
  background: #ffffff;
  color: #945f41;
  padding: 12px 40px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.widget-btn-wn9k4m:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1024px) {
  .proscons-grid-kp7m3x {
    grid-template-columns: 1fr;
  }

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

  .bonuses-grid-tk7m3x {
    grid-template-columns: 1fr;
  }

  .footer-top-wn7k3p {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .header-nav-tk8m3p {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: #303030;
    padding: 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  }

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

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

  .burger-menu-px7k4n {
    display: flex;
  }

  .online-counter-qx9k3m {
    display: none;
  }

  .hero-title-nx7k4p {
    font-size: 32px;
  }

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

  .widget-content-zm8k5p {
    flex-direction: column;
    text-align: center;
  }

  .widget-text-pk6m2n {
    font-size: 16px;
  }

  .app-table-zm5k8n {
    font-size: 14px;
  }

  .table-label-px9m2k,
  .table-value-wn7k5m {
    display: block;
    width: 100%;
    padding: 10px 15px;
  }

  .table-label-px9m2k {
    font-weight: 700;
    background: rgba(255, 255, 255, 0.05);
  }
}

.unused-class-qx9k3m {
  display: none;
}

.legacy-wrapper-zm7k4p {
  visibility: hidden;
}

.deprecated-element-px8k2n {
  opacity: 0;
}
/* ====== СЕКЦІЯ КОНТЕНТУ .app ====== */

.container.app {
  max-width: 960px;
  margin: 40px auto 60px;
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
}

/* Заголовок сторінки */
.container.app > h1 {
  font-size: 32px;
  line-height: 1.25;
  margin-bottom: 20px;
  font-weight: 700;
}

/* Базовий текст */
.container.app p {
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.8;
}

/* Підзаголовки */
.container.app h2 {
  font-size: 24px;
  margin: 28px 0 16px;
  font-weight: 700;
}

.container.app h3 {
  font-size: 20px;
  margin: 22px 0 12px;
  font-weight: 600;
}

/* Списки */
.container.app ul,
.container.app ol {
  margin: 12px 0 18px 20px;
  padding-left: 20px;
}

.container.app li {
  margin-bottom: 8px;
  line-height: 1.7;
  font-size: 15px;
}

/* Посилання всередині контенту */
.container.app a {
  color: #4ade80;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.container.app a:hover {
  color: #a5f3fc;
}

/* Таблиця характеристик */
.container.app table {
  width: 100%;
  margin: 18px 0;
  border-collapse: collapse;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  overflow: hidden;
  display: block;          /* для скролу на мобі */
  -webkit-overflow-scrolling: touch;
}

.container.app table tbody {
  display: table;
  width: 100%;
}

.container.app table td,
.container.app table th {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 14px;
}

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

.container.app table td:first-child {
  font-weight: 600;
  width: 40%;
}

/* Внутрішні відступи між блоками */
.container.app h2:first-child {
  margin-top: 0;
}

.container.app h2 + p {
  margin-top: 0;
}

/* Невеликий вертикальний ритм */
.container.app h2,
.container.app h3 {
  scroll-margin-top: 90px; /* якщо будуть якоря з меню */
}

/* ====== МОБІЛЬНА АДАПТАЦІЯ .app ====== */

@media (max-width: 768px) {
  .container.app {
    margin: 20px 12px 40px;
    padding: 20px 16px;
    border-radius: 12px;
  }

  .container.app > h1 {
    font-size: 22px;
    margin-bottom: 14px;
  }

  .container.app h2 {
    font-size: 20px;
    margin: 22px 0 12px;
  }

  .container.app h3 {
    font-size: 18px;
    margin: 18px 0 10px;
  }

  .container.app p,
  .container.app li {
    font-size: 14px;
    line-height: 1.7;
  }

  /* Таблиця: робимо горизонтальний скрол, щоб не ламалась верстка */
  .container.app table {
    font-size: 13px;
    overflow-x: auto;
  }

  .container.app table td,
  .container.app table th {
    padding: 8px 10px;
  }

  .container.app table td:first-child {
    width: 45%;
  }
}

/* Дуже маленькі екрани */
@media (max-width: 480px) {
  .container.app {
    margin: 16px 8px 32px;
    padding: 16px 12px;
  }

  .container.app > h1 {
    font-size: 20px;
  }

  .container.app h2 {
    font-size: 18px;
  }
}
/* Фіксим горизонтальний оверфлоу на всій сторінці */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

/* На всякий випадок: медіа всередині не повинні розтягуватись */
img,
iframe {
  max-width: 100%;
  height: auto;
}

/* Мобільне меню, щоб точно не давало оверфлоу */
@media (max-width: 768px) {
  .header-nav-tk8m3p {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    width: 100%;
    overflow-x: hidden;
  }
}
