/* BetIt — portal layout, light default, dark toggle, blue accent */

:root {
  --font-sans: "DM Sans", system-ui, sans-serif;
  --radius: 8px;
  --radius-sm: 6px;
  --header-h: 64px;
  --accent: #1a56f5;
  --accent-hover: #1446d0;
  --accent-muted: rgba(26, 86, 245, 0.12);
  --header-bg: #0a0a0a;
  --header-text: #ffffff;
  --header-muted: rgba(255, 255, 255, 0.65);
}

html[data-theme="light"] {
  --bg-page: #e8eaed;
  --bg-panel: #ffffff;
  --bg-panel-2: #f5f6f8;
  --border: #dde1e6;
  --border-strong: #cfd4dc;
  --text: #1a1d21;
  --text-muted: #5c6570;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  --ad-bg: #1a1d21;
  --ad-fg: #ffffff;
  --row-hover: rgba(26, 86, 245, 0.04);
  --footer-bg: #f0f2f5;
  --footer-border: #dde1e6;
}

html[data-theme="dark"] {
  --bg-page: #12161c;
  --bg-panel: #1a2028;
  --bg-panel-2: #222a35;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.12);
  --text: #e8eaed;
  --text-muted: #9aa3ad;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  --ad-bg: #0d0f12;
  --ad-fg: #e8eaed;
  --row-hover: rgba(26, 86, 245, 0.08);
  --footer-bg: #0d1014;
  --footer-border: rgba(255, 255, 255, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg-page);
  min-height: 100vh;
  overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg {
  max-width: 100%;
  height: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--header-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: env(safe-area-inset-top, 0px);
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 max(1rem, env(safe-area-inset-right)) 0 max(1rem, env(safe-area-inset-left));
  min-height: var(--header-h);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  color: var(--header-text);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.logo-img {
  height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  object-position: left center;
  display: block;
  flex-shrink: 0;
}

.logo-accent {
  color: var(--accent);
}

.logo-text--footer .logo-accent {
  color: var(--accent);
}

.nav {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  justify-content: center;
}

.nav-list a {
  color: var(--header-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.8125rem;
  text-transform: capitalize;
  transition: color 0.15s;
}

.nav-list a:hover {
  color: var(--header-text);
}

.nav-list a.is-active {
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: var(--header-text);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.15s, border-color 0.15s;
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

.theme-toggle__icon {
  display: none;
  line-height: 0;
}

html[data-theme="light"] .theme-toggle__icon--moon {
  display: block;
}

html[data-theme="dark"] .theme-toggle__icon--sun {
  display: block;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.45rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle-bar {
  width: 20px;
  height: 2px;
  background: var(--header-text);
  border-radius: 1px;
}

/* Main layout */
.page-main {
  padding: 1.25rem max(1rem, env(safe-area-inset-right)) max(2.5rem, env(safe-area-inset-bottom))
    max(1rem, env(safe-area-inset-left));
}

.layout-three {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 260px;
  gap: 1.25rem;
  align-items: start;
}

@media (max-width: 1100px) {
  .layout-three {
    grid-template-columns: 200px minmax(0, 1fr);
  }

  .sidebar--right {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .layout-three {
    grid-template-columns: 1fr;
  }
}

/* Sidebars */
.sidebar-title {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  text-transform: capitalize;
}

.league-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.league-list a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
  color: var(--text);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: background 0.12s;
}

.league-list li:last-child a {
  border-bottom: none;
}

.league-list a:hover {
  background: var(--row-hover);
}

.league-filter.is-active {
  background: var(--accent-muted);
  color: var(--accent);
  font-weight: 600;
}

.league-filter--all {
  padding-left: calc(0.85rem + 1.75rem + 0.5rem);
}

.league-ico,
.league-logo {
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
}

.league-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
}

.league-logo {
  object-fit: contain;
  object-position: center;
  display: block;
}

.ad-slot {
  margin-top: 0.5rem;
}

.ad-slot__label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.ad-slot__box {
  background: var(--ad-bg);
  color: var(--ad-fg);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
  border: 1px solid var(--border);
}

.ad-slot__brand {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
}

.ad-slot__brand .logo-accent,
.ad-slot__brand {
  color: var(--ad-fg);
}

.ad-slot__box .logo-accent {
  color: var(--accent);
}

.ad-slot__copy {
  margin: 0.35rem 0 0.85rem;
  font-size: 0.75rem;
  opacity: 0.85;
}

.btn-ad {
  display: inline-block;
  padding: 0.45rem 1rem;
  background: #f5c518;
  color: #1a1d21;
  font-weight: 700;
  font-size: 0.75rem;
  text-decoration: none;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.btn-ad:hover {
  filter: brightness(1.05);
}

/* Main column */
.main-column {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem 1.25rem 1.5rem;
  min-width: 0;
}

.page-title {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  text-transform: capitalize;
}

.date-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  padding: 0.65rem 1rem;
  background: var(--bg-panel-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.date-bar__arrow {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  background: var(--bg-panel);
  color: var(--text);
  border-radius: var(--radius-sm);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.12s, border-color 0.12s;
}

.date-bar__arrow:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.date-bar__label {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text);
}

.sub-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

@media (max-width: 640px) {
  .sub-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    gap: 0.35rem;
    padding-bottom: 0.5rem;
    margin-inline: -0.25rem;
    padding-inline: 0.25rem;
  }
}

.sub-tab {
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: capitalize;
  padding: 0.4rem 0.65rem;
  border: none;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.12s, background 0.12s;
}

@media (max-width: 640px) {
  .sub-tab {
    flex-shrink: 0;
    padding: 0.5rem 0.75rem;
    min-height: 44px;
  }
}

.sub-tab:hover {
  color: var(--text);
  background: var(--bg-panel-2);
}

.sub-tab.is-active {
  color: var(--accent);
  background: var(--accent-muted);
}

.search-row {
  margin-bottom: 1rem;
}

.search-field {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: var(--bg-panel-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.search-field__icon {
  flex-shrink: 0;
  color: var(--text-muted);
}

.search-field input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.875rem;
  color: var(--text);
  min-width: 0;
}

.search-field input::placeholder {
  color: var(--text-muted);
}

.search-field input:focus {
  outline: none;
}

/* Match feed */
.match-feed__status {
  margin: 0;
  padding: 1rem 0.85rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.match-feed__meta {
  margin: 0 0 1rem;
  padding: 0.5rem 0.65rem;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--text-muted);
  background: var(--bg-panel-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.match-feed__meta strong {
  color: var(--text);
  font-weight: 600;
}

.match-feed__error {
  margin: 0 0 1rem;
  padding: 0.75rem 0.85rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text);
  background: var(--accent-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.match-feed__error code {
  font-size: 0.75rem;
}

.league-block {
  margin-bottom: 1.25rem;
}

.league-block.is-hidden {
  display: none;
}

.league-block__title {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text);
}

.league-block__count {
  font-weight: 500;
  color: var(--text-muted);
}

.match-row {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--border);
  border-bottom: none;
  background: var(--bg-panel);
  transition: background 0.12s;
}

.league-block .match-row:first-of-type {
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.league-block .match-row:last-of-type {
  border-bottom: 1px solid var(--border);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.league-block .match-row:only-of-type {
  border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--border);
}

.match-row:hover {
  background: var(--row-hover);
}

.match-row__score {
  font-weight: 700;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.match-row__time {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

.match-row__teams {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.match-row .vs {
  font-weight: 500;
  color: var(--text-muted);
  margin: 0 0.25rem;
}

.btn-tip,
.btn-get {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.85rem;
  font-family: inherit;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: var(--accent);
  color: #ffffff;
  transition: background 0.15s, transform 0.1s;
}

.btn-tip:hover,
.btn-get:hover {
  background: var(--accent-hover);
  color: #ffffff;
}

.btn-tip:active,
.btn-get:active {
  transform: scale(0.98);
}

/* Bookmakers */
.bookmaker-list {
  list-style: none;
  margin: 0;
  padding: 0;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.bookmaker-row {
  display: grid;
  grid-template-columns: 2rem 1fr auto;
  gap: 0.65rem;
  align-items: center;
  padding: 0.75rem 0.85rem;
  border-bottom: 1px solid var(--border);
}

.bookmaker-row:last-child {
  border-bottom: none;
}

.bookmaker-rank {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
}

.bookmaker-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.bookmaker-name {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text);
}

.bookmaker-offer {
  font-size: 0.6875rem;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--footer-border);
  padding: 1.5rem max(1rem, env(safe-area-inset-right)) max(1.5rem, env(safe-area-inset-bottom))
    max(1rem, env(safe-area-inset-left));
  margin-top: auto;
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
}

.footer-brand p {
  margin: 0.35rem 0 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 320px;
}

.logo-text--footer {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-copy {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  width: 100%;
  flex-basis: 100%;
}

/* Mobile nav */
@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
  }

  .theme-toggle {
    min-width: 44px;
    min-height: 44px;
  }

  .nav {
    justify-content: flex-end;
  }

  .nav-list {
    position: fixed;
    top: calc(env(safe-area-inset-top, 0px) + var(--header-h));
    left: 0;
    right: 0;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
    background: var(--header-bg);
    padding: 0.5rem max(1rem, env(safe-area-inset-right)) 1rem max(1rem, env(safe-area-inset-left));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: none;
    z-index: 150;
    max-height: calc(100vh - env(safe-area-inset-top, 0px) - var(--header-h));
    overflow-y: auto;
  }

  .nav.is-open .nav-list {
    display: flex;
  }

  .nav-list a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.9375rem;
  }

  .nav-list li:last-child a {
    border-bottom: none;
  }

  .league-list a {
    min-height: 44px;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
}

@media (max-width: 480px) {
  .match-row {
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto;
  }

  .match-row .btn-tip {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

/* Pricing page */
.pricing-page {
  max-width: 1040px;
  margin: 0 auto;
}

.pricing-hero {
  text-align: center;
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-inline: auto;
}

.pricing-hero .page-title {
  text-align: center;
}

.pricing-lead {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.pricing-lead strong {
  color: var(--text);
}

.btn-telegram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: #229ed9;
  color: #ffffff;
  transition: background 0.15s, transform 0.1s;
}

.btn-telegram:hover {
  background: #1b8ec4;
  color: #ffffff;
}

.btn-telegram:active {
  transform: scale(0.98);
}

.btn-telegram__icon {
  flex-shrink: 0;
}

.btn-telegram--hero {
  font-size: 1rem;
  padding: 0.8rem 1.5rem;
}

.btn-telegram--block {
  width: 100%;
  margin-top: auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.pricing-grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 820px;
  margin-inline: auto;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }

  .pricing-grid--two {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.35rem;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.pricing-card--featured {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(26, 86, 245, 0.12);
}

html[data-theme="dark"] .pricing-card--featured {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.pricing-card__badge {
  position: absolute;
  top: 0;
  right: 1rem;
  transform: translateY(-50%);
  padding: 0.25rem 0.65rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--accent);
  border-radius: 999px;
}

.pricing-card__name {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

.pricing-card__tag {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent);
}

.pricing-card__period {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.pricing-card__desc {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.pricing-card__list {
  margin: 0 0 1.25rem;
  padding-left: 1.1rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text);
  flex: 1;
}

.pricing-card__list li {
  margin-bottom: 0.4rem;
}

.pricing-footnote {
  margin: 2rem auto 0;
  max-width: 40rem;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--text-muted);
  text-align: center;
}

.pricing-footnote a {
  color: var(--accent);
  font-weight: 600;
}

/* Legal pages (terms, privacy) */
.legal-doc__title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.35rem, 4.5vw, 1.85rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.legal-doc__meta {
  margin: 0 0 1.5rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.legal-doc__note {
  margin: 1.75rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.legal-doc {
  max-width: 42rem;
  margin: 0 auto;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text);
}

.legal-doc h2 {
  margin: 1.75rem 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.legal-doc h2:first-of-type {
  margin-top: 0;
}

.legal-doc p {
  margin: 0 0 0.85rem;
}

.legal-doc ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.legal-doc li {
  margin-bottom: 0.4rem;
}

.legal-doc a {
  color: var(--accent);
  font-weight: 600;
  word-break: break-word;
}

.legal-doc code {
  font-family: ui-monospace, "Cascadia Code", "Segoe UI Mono", monospace;
  font-size: 0.88em;
  padding: 0.12em 0.4em;
  background: var(--bg-panel-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

@media (max-width: 640px) {
  .legal-doc {
    font-size: 0.875rem;
  }

  .footer-links a {
    padding: 0.35rem 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

@media (max-width: 900px) {
  .btn-get,
  .btn-tip,
  .btn-ad,
  .date-bar__arrow {
    min-height: 44px;
    min-width: 44px;
  }

  .bookmaker-row .btn-get {
    padding-inline: 0.85rem;
  }
}
