:root {
  --sr-green: #005f3b;
  --sr-green-dark: #00462d;
  --sr-green-mid: #0b7d3e;
  --sr-lime: #bed62f;
  --sr-teal: #00d6bc;
  --sr-orange: #ff8e0d;
  --sr-red: #eb1e23;
  --sr-ink: #222;
  --sr-muted: #5f6c70;
  --sr-line: #e0e0e0;
  --sr-bg: #f5f6f4;
  --sr-white: #fff;
  --sr-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

html {
  scroll-behavior: smooth;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

body {
  margin: 0;
  background: var(--sr-bg);
  color: var(--sr-ink);
  font-family: Muli, Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  overflow-x: hidden;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

.sr-page {
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  min-width: 0;
}

.sr-page a {
  color: inherit;
  text-decoration: none;
}

.sr-page img {
  display: block;
  max-width: 100%;
}

.sr-shell {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.sr-agebar {
  background: #f1f2f1;
  border-bottom: 1px solid var(--sr-line);
  color: #2f3c43;
  font-size: 12px;
  font-weight: 700;
}

.sr-agebar__inner {
  min-height: 34px;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.sr-agebar a {
  color: var(--sr-green);
  text-decoration: underline;
}

.sr-agebar span,
.sr-agebar a {
  max-width: 100%;
  white-space: normal !important;
  overflow-wrap: normal;
  word-break: normal;
}

.sr-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--sr-white);
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.08);
}

.sr-header__top {
  min-height: 70px;
  display: grid;
  grid-template-columns: auto minmax(280px, 1fr) auto auto;
  gap: 18px;
  align-items: center;
}

.sr-logo {
  width: 104px;
}

.sr-logo img {
  width: 100px;
  height: auto;
}

.sr-primary-nav,
.sr-support-nav,
.sr-auth,
.sr-menu-band__inner {
  display: flex;
  align-items: center;
}

.sr-primary-nav {
  gap: 22px;
  font-size: 16px;
  font-weight: 800;
}

.sr-primary-nav a {
  position: relative;
  padding: 23px 0;
}

.sr-primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  height: 3px;
  border-radius: 3px;
  background: var(--sr-lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.sr-primary-nav a:hover::after,
.sr-primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.sr-support-nav {
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  color: #3b4548;
}

.sr-support-nav a {
  display: grid;
  grid-template-columns: 22px auto;
  gap: 6px;
  align-items: center;
  max-width: 130px;
}

.sr-support-nav img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.sr-auth {
  gap: 8px;
  justify-content: flex-end;
  white-space: nowrap;
}

.sr-auth__login,
.sr-auth__register,
.sr-button,
.sr-flash a,
.sr-feedback a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  padding: 9px 18px;
  font-weight: 900;
  line-height: 1;
}

.sr-auth__login {
  background: var(--sr-green);
  color: var(--sr-white);
}

.sr-auth__register,
.sr-button,
.sr-flash a {
  background: var(--sr-lime);
  color: var(--sr-ink);
}

.sr-menu-band {
  background: var(--sr-green);
  color: var(--sr-white);
}

.sr-menu-band__inner {
  min-height: 42px;
  gap: 24px;
  overflow-x: auto;
  font-size: 14px;
  font-weight: 800;
  scrollbar-width: none;
}

.sr-menu-band__inner::-webkit-scrollbar,
.sr-rail::-webkit-scrollbar {
  display: none;
}

.sr-menu-band__inner a {
  flex: 0 0 auto;
  opacity: 0.95;
}

.sr-icon-button {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
}

.sr-mobile-menu {
  display: none;
  width: 32px;
  height: 32px;
  place-content: center;
  gap: 4px;
}

.sr-mobile-menu span {
  display: block;
  width: 24px;
  height: 3px;
  border-radius: 4px;
  background: #1d1d1d;
}

.sr-product-strip {
  background: var(--sr-white);
  padding: 22px 0;
}

.sr-product-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.sr-product-tile,
.sr-highlight-card {
  position: relative;
  min-height: 132px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(160deg, var(--sr-green) 0%, #058f62 100%);
  color: var(--sr-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sr-product-tile span,
.sr-highlight-card span {
  position: relative;
  z-index: 1;
  padding: 16px;
  color: var(--sr-white) !important;
  font-size: 18px;
  font-weight: 900;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.32);
}

.sr-product-tile img,
.sr-highlight-card img {
  position: absolute;
  right: -8px;
  bottom: -6px;
  width: 66%;
  max-height: 118px;
  object-fit: contain;
}

.sr-flash {
  background: linear-gradient(90deg, var(--sr-green-dark), var(--sr-green));
  color: var(--sr-white);
}

.sr-flash__inner {
  min-height: 74px;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.sr-flash img {
  width: 66px;
  height: 50px;
  object-fit: contain;
}

.sr-flash strong,
.sr-flash span {
  display: block;
}

.sr-flash__inner > div {
  min-width: 0;
}

.sr-flash strong,
.sr-flash span {
  overflow-wrap: normal;
  word-break: normal;
}

.sr-flash strong {
  font-size: 20px;
}

.sr-flash span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.sr-hero {
  background: #e9ece8;
  padding: 18px 0 26px;
}

.sr-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(260px, 0.85fr);
  gap: 14px;
}

.sr-hero__stage,
.sr-mini-promo {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #123b2c;
  box-shadow: var(--sr-shadow);
}

.sr-hero__stage {
  min-height: 410px;
}

.sr-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 260ms ease, visibility 260ms ease;
}

.sr-hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.sr-hero-slide::after,
.sr-mini-promo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 39, 27, 0.95), rgba(0, 39, 27, 0.74) 38%, rgba(0, 0, 0, 0.1) 74%);
}

.sr-hero-slide img,
.sr-mini-promo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sr-hero-slide__content {
  position: absolute;
  z-index: 1;
  left: 34px;
  bottom: 34px;
  width: min(560px, calc(100% - 68px));
  color: var(--sr-white);
}

.sr-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border-radius: 999px;
  padding: 5px 10px;
  background: #6122a6;
  color: var(--sr-white);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.sr-hero-slide h2,
.sr-hero-amount,
.sr-section-head h2,
.sr-responsible h2,
.sr-feedback h2,
.sr-seo h1 {
  margin: 0;
  letter-spacing: 0;
}

.sr-hero-slide h2,
.sr-hero-amount {
  display: block;
  margin-top: 8px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 0.95;
  font-weight: 900;
}

.sr-hero-slide p {
  margin: 10px 0 0;
  max-width: 620px;
  font-size: 18px;
  font-weight: 800;
}

.sr-countdown {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.sr-countdown span {
  min-width: 58px;
  border-radius: 6px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--sr-green-dark);
  font-size: 22px;
  font-weight: 900;
  text-align: center;
}

.sr-countdown small {
  display: block;
  margin-bottom: 3px;
  color: #4b5a5e;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.sr-button {
  margin-top: 18px;
}

.sr-hero__controls {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  display: flex;
  gap: 8px;
}

.sr-hero__controls button {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.sr-hero__controls button.is-active {
  width: 28px;
  border-radius: 999px;
  background: var(--sr-lime);
}

.sr-hero__aside {
  display: grid;
  gap: 14px;
}

.sr-mini-promo {
  min-height: 198px;
  display: block;
}

.sr-mini-promo::after {
  background: linear-gradient(0deg, rgba(0, 44, 31, 0.9), rgba(0, 0, 0, 0.05) 72%);
}

.sr-mini-promo span,
.sr-mini-promo small {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  color: var(--sr-white);
}

.sr-mini-promo span {
  bottom: 48px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.15;
}

.sr-mini-promo small {
  bottom: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  line-height: 1.2;
}

.sr-section {
  padding: 34px 0;
  background: var(--sr-white);
}

.sr-section:nth-of-type(2n + 1) {
  background: #f7f8f6;
}

.sr-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.sr-section-head h2,
.sr-responsible h2,
.sr-feedback h2 {
  font-size: 28px;
  font-weight: 900;
}

.sr-section-head a {
  color: var(--sr-green);
  font-weight: 900;
  text-decoration: underline;
}

.sr-rail-wrap {
  position: relative;
}

.sr-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 248px);
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  padding: 2px 0 8px;
  scrollbar-width: none;
}

.sr-bonus-card,
.sr-game-card,
.sr-promo-card,
.sr-app-card,
.sr-news-card,
.sr-responsible__boxes a {
  overflow: hidden;
  border: 1px solid var(--sr-line);
  border-radius: 8px;
  background: var(--sr-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.sr-bonus-card {
  min-height: 218px;
  display: grid;
  grid-template-rows: 74px auto auto auto auto;
  gap: 4px;
  padding: 16px;
  scroll-snap-align: start;
}

.sr-bonus-card img {
  width: 86px;
  height: 64px;
  object-fit: contain;
  justify-self: end;
  align-self: center;
}

.sr-bonus-card span {
  color: var(--sr-muted);
  font-size: 11px;
  font-weight: 900;
}

.sr-bonus-card strong {
  min-height: 46px;
  color: var(--sr-green-dark);
  font-size: 19px;
  line-height: 1.15;
}

.sr-bonus-card small {
  color: var(--sr-muted);
  font-weight: 800;
}

.sr-bonus-card b {
  font-size: 28px;
  line-height: 1;
}

.sr-rail-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 36px;
  height: 50px;
  border: 0;
  border-radius: 7px;
  background: var(--sr-green);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
  color: var(--sr-white);
  cursor: pointer;
  transform: translateY(-50%);
}

.sr-rail-btn--prev {
  left: -18px;
}

.sr-rail-btn--next {
  right: -18px;
}

.sr-rail-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 11px;
  height: 11px;
  margin: auto;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
}

.sr-rail-btn--prev::before {
  transform: rotate(-135deg);
}

.sr-rail-btn--next::before {
  transform: rotate(45deg);
}

.sr-highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.sr-highlight-card {
  min-height: 150px;
  background: #00653b;
}

.sr-highlight-card:nth-child(2n) {
  background: #0b7d3e;
}

.sr-highlight-card:nth-child(3n) {
  background: #2f3c43;
}

.sr-highlight-card img {
  width: 72%;
  max-height: 130px;
}

.sr-game-card {
  position: relative;
  min-height: 244px;
  display: grid;
  grid-template-rows: 128px auto auto;
  gap: 8px;
  padding: 10px;
  scroll-snap-align: start;
}

.sr-game-card em {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  border-radius: 999px;
  padding: 4px 8px;
  background: #6122a6;
  color: var(--sr-white);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.sr-game-card__image {
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 7px;
  background: #e7ece8;
}

.sr-game-card--lottery .sr-game-card__image {
  background: #44a038;
}

.sr-game-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sr-game-card--lottery img {
  width: 88%;
  height: 88%;
  object-fit: contain;
}

.sr-game-card strong {
  font-size: 15px;
  line-height: 1.2;
}

.sr-game-card span {
  color: var(--sr-muted);
  font-size: 13px;
  font-weight: 800;
}

.sr-promo-grid,
.sr-app-grid,
.sr-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.sr-promo-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.sr-promo-card {
  min-height: 230px;
  display: grid;
  grid-template-rows: 106px auto;
}

.sr-promo-card img,
.sr-news-card img,
.sr-app-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sr-promo-card div {
  display: grid;
  gap: 6px;
  padding: 12px;
}

.sr-promo-card span {
  color: var(--sr-red);
  font-size: 12px;
  font-weight: 900;
}

.sr-promo-card strong {
  font-size: 16px;
  line-height: 1.1;
}

.sr-promo-card small {
  color: var(--sr-muted);
  font-weight: 800;
}

.sr-apps {
  background: #f4f5f4;
}

.sr-app-card {
  min-height: 272px;
  display: grid;
  grid-template-rows: 132px auto auto auto;
  gap: 6px;
  padding-bottom: 16px;
}

.sr-app-card img {
  border-bottom: 1px solid var(--sr-line);
}

.sr-app-card span,
.sr-app-card strong,
.sr-app-card small {
  margin-inline: 16px;
}

.sr-app-card span {
  margin-top: 12px;
  color: var(--sr-green);
  font-size: 12px;
  font-weight: 900;
}

.sr-app-card strong {
  font-size: 18px;
}

.sr-app-card small {
  color: var(--sr-muted);
  font-weight: 700;
}

.sr-responsible {
  padding: 38px 0;
  background: var(--sr-white);
}

.sr-responsible__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
}

.sr-responsible__image {
  overflow: hidden;
  border-radius: 8px;
}

.sr-responsible__image img {
  width: 100%;
  min-height: 280px;
  object-fit: cover;
}

.sr-responsible p {
  margin: 12px 0 22px;
  color: #3a474a;
  font-weight: 700;
}

.sr-responsible__boxes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.sr-responsible__boxes a {
  min-height: 150px;
  display: grid;
  grid-template-rows: auto 70px auto;
  gap: 8px;
  padding: 12px;
}

.sr-responsible__boxes span {
  color: var(--sr-green-dark);
  font-weight: 900;
}

.sr-responsible__boxes img {
  width: 100%;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
}

.sr-responsible__boxes small {
  color: var(--sr-green);
  font-weight: 900;
  text-decoration: underline;
}

.sr-feedback {
  background: var(--sr-green);
  color: var(--sr-white);
}

.sr-feedback__inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.sr-feedback a {
  background: var(--sr-white);
  color: var(--sr-green);
}

.sr-news-card {
  min-height: 246px;
  display: grid;
  grid-template-rows: 126px auto auto auto;
  gap: 6px;
  padding-bottom: 14px;
}

.sr-news-card span,
.sr-news-card strong,
.sr-news-card small {
  margin-inline: 14px;
}

.sr-news-card span {
  margin-top: 10px;
  color: var(--sr-muted);
  font-size: 12px;
  font-weight: 900;
}

.sr-news-card strong {
  line-height: 1.2;
}

.sr-news-card small {
  color: var(--sr-green);
  font-weight: 900;
}

.sr-seo {
  padding: 36px 0 46px;
  background: var(--sr-white);
}

.sr-seo .sr-shell {
  max-width: 1040px;
}

.sr-seo h1 {
  margin-bottom: 12px;
  font-size: 30px;
  font-weight: 900;
}

.sr-seo h2 {
  margin: 26px 0 8px;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 0;
}

.sr-seo p {
  margin: 0;
  color: #3a4346;
  font-family: Roboto, Arial, sans-serif;
  font-size: 15px;
}

.sr-seo p + p {
  margin-top: 12px;
}

.sr-footer {
  background: #2f3c43;
  color: var(--sr-white);
  padding: 36px 0 28px;
}

.sr-footer__brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.sr-footer__brand img {
  width: 104px;
}

.sr-footer__brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.sr-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding: 26px 0;
}

.sr-footer h2 {
  margin: 0 0 12px;
  color: var(--sr-lime);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
}

.sr-footer__grid a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.sr-footer__awards {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.sr-footer__awards span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 6px 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 800;
}

.sr-footer__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  padding-top: 12px;
}

.sr-footer__logos img {
  width: auto;
  height: 34px;
  object-fit: contain;
  opacity: 0.78;
}

.sr-product-tile,
.sr-highlight-card,
.sr-bonus-card,
.sr-game-card,
.sr-promo-card,
.sr-app-card,
.sr-news-card,
.sr-mini-promo,
.sr-responsible__boxes a {
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.sr-product-tile:hover,
.sr-highlight-card:hover,
.sr-bonus-card:hover,
.sr-game-card:hover,
.sr-promo-card:hover,
.sr-app-card:hover,
.sr-news-card:hover,
.sr-mini-promo:hover,
.sr-responsible__boxes a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.sr-auth a:focus-visible,
.sr-button:focus-visible,
.sr-flash a:focus-visible,
.sr-feedback a:focus-visible,
.sr-page a:focus-visible,
.sr-page button:focus-visible {
  outline: 3px solid var(--sr-orange);
  outline-offset: 3px;
}

@media (max-width: 1180px) {
  .sr-header__top {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .sr-support-nav {
    display: none;
  }

  .sr-promo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .sr-shell {
    width: min(100% - 24px, 720px);
  }

  .sr-agebar__inner {
    flex-direction: column;
    gap: 2px;
    padding: 7px 0;
  }

  .sr-header__top {
    grid-template-columns: auto auto 1fr;
    min-height: 62px;
    gap: 12px;
  }

  .sr-mobile-menu {
    display: grid;
    grid-column: 1;
    grid-row: 1;
  }

  .sr-logo {
    grid-column: 2;
    grid-row: 1;
  }

  .sr-primary-nav {
    position: absolute;
    grid-column: 1 / -1;
    top: 62px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--sr-white);
    border-top: 1px solid var(--sr-line);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.13);
  }

  .sr-header.is-open .sr-primary-nav {
    display: flex;
  }

  .sr-primary-nav a {
    padding: 15px 24px;
    border-bottom: 1px solid var(--sr-line);
  }

  .sr-primary-nav a::after {
    display: none;
  }

  .sr-auth {
    grid-column: 3 !important;
    grid-row: 1;
    justify-self: end;
    min-width: 0;
  }

  .sr-auth__login,
  .sr-auth__register {
    min-height: 34px;
    padding-inline: 12px;
    font-size: 13px;
  }

  .sr-menu-band__inner {
    min-height: 40px;
    gap: 18px;
  }

  .sr-product-strip__grid,
  .sr-highlight-grid,
  .sr-app-grid,
  .sr-news-grid,
  .sr-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sr-flash__inner {
    grid-template-columns: 50px minmax(0, 1fr);
    padding: 12px 0;
  }

  .sr-flash a {
    grid-column: 2;
    justify-self: start;
  }

  .sr-hero__grid,
  .sr-responsible__grid {
    grid-template-columns: 1fr;
  }

  .sr-hero__stage {
    min-height: 420px;
  }

  .sr-hero__aside {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sr-promo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sr-responsible__boxes {
    grid-template-columns: 1fr;
  }

  .sr-rail-btn {
    display: none;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .sr-logo,
  .sr-logo img {
    width: 86px;
  }

  .sr-auth__login {
    display: none;
  }

  .sr-auth__register {
    max-width: 112px;
    padding-inline: 14px;
  }

  .sr-flash strong {
    font-size: 18px;
    line-height: 1.15;
  }

  .sr-product-strip__grid,
  .sr-highlight-grid,
  .sr-app-grid,
  .sr-news-grid,
  .sr-promo-grid,
  .sr-footer__grid,
  .sr-hero__aside {
    grid-template-columns: 1fr;
  }

  .sr-product-tile,
  .sr-highlight-card {
    min-height: 118px;
  }

  .sr-hero__stage {
    min-height: 460px;
  }

  .sr-hero-slide::after {
    background: linear-gradient(0deg, rgba(0, 37, 26, 0.94), rgba(0, 0, 0, 0.12) 70%);
  }

  .sr-hero-slide__content {
    left: 18px;
    right: 18px;
    bottom: 48px;
    width: auto;
  }

  .sr-hero-slide h2,
  .sr-hero-amount {
    font-size: 34px;
  }

  .sr-hero-slide p {
    font-size: 16px;
  }

  .sr-countdown span {
    min-width: 52px;
    font-size: 19px;
  }

  .sr-rail {
    grid-auto-columns: minmax(220px, 82vw);
  }

  .sr-section {
    padding: 28px 0;
  }

  .sr-section-head {
    align-items: flex-end;
  }

  .sr-section-head h2,
  .sr-responsible h2,
  .sr-feedback h2 {
    font-size: 24px;
  }

  .sr-feedback__inner,
  .sr-footer__brand {
    align-items: flex-start;
    flex-direction: column;
  }
}
