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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background-color: #0e1621;
  color: #e6ecf2;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

ul {
  list-style: none;
}

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

.site-header {
  background: linear-gradient(90deg, #0e1621 0%, rgb(5.6057692308, 30.5769230769, 47.3942307692) 60%, rgb(1.2903846154, 7.0384615385, 10.9096153846) 100%);
  border-bottom: 1px solid #243248;
  position: relative;
  z-index: 100;
}
.site-header .header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}
.site-header .header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
  color: #f4c430;
}
.site-header .header__logo .logo__icon {
  font-size: 22px;
}
.site-header .header__nav {
  display: flex;
  gap: 35px;
}
.site-header .header__nav a {
  color: #e6ecf2;
  font-weight: 500;
  position: relative;
  opacity: 0.85;
  transition: opacity 0.25s ease;
}
.site-header .header__nav a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: #f4c430;
  transition: width 0.3s ease;
}
.site-header .header__nav a:hover {
  opacity: 1;
}
.site-header .header__nav a:hover::after {
  width: 100%;
}
.site-header .header__nav.active {
  display: flex;
}
.site-header .header__actions {
  display: flex;
  gap: 12px;
}
.site-header .header__actions.active {
  display: flex;
}
.site-header .header__actions .btn {
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.25s ease;
}
.site-header .header__actions .btn--outline {
  border: 1px solid #243248;
  color: #e6ecf2;
}
.site-header .header__actions .btn--outline:hover {
  background: rgba(230, 236, 242, 0.08);
}
.site-header .header__actions .btn--primary {
  background: linear-gradient(135deg, #1d8cf8, rgb(68.574248927, 160.1373390558, 249.225751073));
  color: #ffffff;
}
.site-header .header__actions .btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(29, 140, 248, 0.4);
}
.site-header .burger {
  display: none;
  flex-direction: column;
  gap: 5px;
}
.site-header .burger span {
  width: 24px;
  height: 2px;
  background: #e6ecf2;
  transition: 0.3s;
}
@media (max-width: 992px) {
  .site-header .header__nav,
  .site-header .header__actions {
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    background: #121c2b;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    gap: 20px;
    display: none;
  }
  .site-header .burger {
    display: flex;
  }
}

.top-warning {
  background: linear-gradient(90deg, rgb(225.9863636364, 63.0636363636, 38.5136363636), #e5533d, rgb(225.9863636364, 63.0636363636, 38.5136363636));
  color: #ffffff;
  text-align: center;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
@media (max-width: 576px) {
  .top-warning {
    font-size: 13px;
    padding: 8px 12px;
  }
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 70px;
  background: radial-gradient(1200px 600px at 20% -10%, rgba(29, 140, 248, 0.25), transparent 60%), radial-gradient(900px 500px at 90% 10%, rgba(244, 196, 48, 0.18), transparent 65%), linear-gradient(180deg, #121c2b 0%, #0e1621 100%);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 60, 93, 0.15), transparent 40%, rgba(11, 60, 93, 0.25));
  pointer-events: none;
}
.hero__container {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px;
}
.hero__content {
  max-width: 620px;
}
.hero__badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(29, 140, 248, 0.15);
  color: #f4c430;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 24px;
  border: 1px solid rgba(29, 140, 248, 0.3);
}
.hero__title {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 800;
  color: #e6ecf2;
  margin-bottom: 24px;
}
.hero__title span {
  color: #f4c430;
}
.hero__text {
  font-size: 18px;
  color: #9aa4b2;
  margin-bottom: 40px;
}
.hero__actions {
  display: flex;
  gap: 18px;
}
.hero__btn {
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
}
.hero__btn--primary {
  background: linear-gradient(135deg, #1d8cf8, rgb(88.3613733906, 170.2060085837, 249.8386266094));
  color: #ffffff;
  box-shadow: 0 20px 40px rgba(29, 140, 248, 0.35);
}
.hero__btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 60px rgba(29, 140, 248, 0.5);
}
.hero__btn--secondary {
  background: rgba(18, 28, 43, 0.8);
  color: #e6ecf2;
  border: 1px solid #243248;
}
.hero__btn--secondary:hover {
  background: #121c2b;
  border-color: #f4c430;
}
.hero__visual {
  position: relative;
  width: 100%;
  height: 420px;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.8;
}
.hero__orb--one {
  width: 220px;
  height: 220px;
  background: #1d8cf8;
  top: 20%;
  left: 10%;
}
.hero__orb--two {
  width: 280px;
  height: 280px;
  background: #f4c430;
  top: 45%;
  left: 45%;
  opacity: 0.6;
}
.hero__orb--three {
  width: 180px;
  height: 180px;
  background: #0b3c5d;
  top: 10%;
  right: 5%;
  opacity: 0.7;
}
@media (max-width: 992px) {
  .hero .hero {
    padding: 90px 0 100px;
    background: linear-gradient(180deg, #121c2b 0%, #0e1621 100%);
  }
  .hero .hero__bg {
    display: none;
  }
  .hero .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero .hero__content {
    margin: 0 auto;
  }
  .hero .hero__actions {
    justify-content: center;
  }
  .hero .hero__visual {
    display: none;
  }
  .hero .hero__orb {
    display: none;
  }
}
@media (max-width: 768px) {
  .hero .hero {
    background: linear-gradient(180deg, #121c2b 0%, #0e1621 100%);
  }
  .hero .hero__bg {
    display: none;
  }
  .hero .hero__visual {
    display: none;
  }
  .hero .hero__container {
    gap: 40px;
  }
  .hero .hero__badge {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 576px) {
  .hero .hero {
    padding: 70px 0 80px;
  }
  .hero .hero__title {
    font-size: 34px;
    line-height: 1.15;
  }
  .hero .hero__text {
    font-size: 15px;
    margin-bottom: 32px;
  }
  .hero .hero__actions {
    flex-direction: column;
    gap: 14px;
  }
  .hero .hero__btn {
    width: 100%;
    padding: 14px 20px;
  }
}

.games {
  padding: 60px 0;
  background: linear-gradient(180deg, #0e1621 0%, #121c2b 100%);
  position: relative;
}
.games__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}
.games__title {
  font-size: 44px;
  font-weight: 800;
  color: #e6ecf2;
  margin-bottom: 16px;
}
.games__subtitle {
  font-size: 18px;
  color: #9aa4b2;
}
.games__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.games .game-card {
  background: linear-gradient(180deg, rgba(18, 28, 43, 0.9), rgba(14, 22, 33, 0.9));
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #243248;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}
.games .game-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(300px 120px at 50% 0%, rgba(244, 196, 48, 0.18), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.games .game-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45), 0 0 40px rgba(29, 140, 248, 0.25);
}
.games .game-card:hover::before {
  opacity: 1;
}
.games .game-card:hover .game-card__image img {
  transform: scale(1.08);
}
.games .game-card__image {
  height: 220px;
  overflow: hidden;
}
.games .game-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.games .game-card__content {
  padding: 30px;
}
.games .game-card__title {
  font-size: 22px;
  font-weight: 700;
  color: #f4c430;
  margin-bottom: 14px;
}
.games .game-card__text {
  font-size: 15px;
  line-height: 1.6;
  color: #9aa4b2;
}
@media (max-width: 992px) {
  .games .games {
    padding: 90px 0;
  }
  .games .games__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .games .games__title {
    font-size: 36px;
  }
  .games .game-card__image {
    height: 200px;
  }
}
@media (max-width: 576px) {
  .games .games__subtitle {
    font-size: 16px;
  }
  .games .game-card__content {
    padding: 24px;
  }
}

.game-manual {
  padding: 40px 0;
  background: linear-gradient(180deg, #0e1621 0%, #121c2b 100%);
}
.game-manual__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 80px;
}
.game-manual__title {
  font-size: 44px;
  font-weight: 800;
  color: #e6ecf2;
  margin-bottom: 18px;
}
.game-manual__subtitle {
  font-size: 18px;
  color: #9aa4b2;
}
.game-manual__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-bottom: 70px;
}
.game-manual__notice {
  max-width: 920px;
  margin: 0 auto;
  padding: 32px 40px;
  background: linear-gradient(180deg, rgba(18, 28, 43, 0.95), rgba(14, 22, 33, 0.95));
  border: 1px solid #243248;
  border-radius: 16px;
  text-align: center;
}
.game-manual__notice p {
  font-size: 14px;
  line-height: 1.7;
  color: #9aa4b2;
}
.game-manual .manual-card {
  background: linear-gradient(180deg, rgba(18, 28, 43, 0.95), rgba(14, 22, 33, 0.95));
  border-radius: 22px;
  padding: 40px 32px;
  border: 1px solid #243248;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.game-manual .manual-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.45), 0 0 35px rgba(29, 140, 248, 0.25);
}
.game-manual .manual-card__game {
  font-size: 24px;
  font-weight: 800;
  color: #f4c430;
  margin-bottom: 28px;
  text-align: center;
}
.game-manual .manual-card__steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.game-manual .manual-card__steps li {
  display: flex;
  gap: 16px;
  font-size: 15px;
  line-height: 1.6;
  color: #9aa4b2;
}
.game-manual .manual-card__steps li span {
  min-width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(29, 140, 248, 0.15);
  color: #1d8cf8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
@media (max-width: 1200px) {
  .game-manual .game-manual__list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .game-manual .game-manual {
    padding: 90px 0;
  }
  .game-manual .game-manual__title {
    font-size: 36px;
  }
}
@media (max-width: 576px) {
  .game-manual .manual-card {
    padding: 32px 24px;
  }
}

.contact-faq {
  padding: 50px 0;
  background: linear-gradient(180deg, #121c2b 0%, #0e1621 100%);
}
.contact-faq__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-faq__title {
  font-size: 36px;
  font-weight: 800;
  color: #e6ecf2;
  margin-bottom: 16px;
}
.contact-faq__text {
  color: #9aa4b2;
  margin-bottom: 32px;
}
.contact-faq__form, .contact-faq__info {
  background: linear-gradient(180deg, rgba(18, 28, 43, 0.95), rgba(14, 22, 33, 0.95));
  border: 1px solid #243248;
  border-radius: 22px;
  padding: 40px;
}
.contact-faq .form-group {
  margin-bottom: 18px;
}
.contact-faq .form-group input,
.contact-faq .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(14, 22, 33, 0.8);
  border: 1px solid #243248;
  border-radius: 10px;
  color: #e6ecf2;
  font-size: 15px;
}
.contact-faq .form-group input:focus,
.contact-faq .form-group textarea:focus {
  outline: none;
  border-color: #1d8cf8;
}
.contact-faq .form-btn {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  color: #ffffff;
  background: linear-gradient(135deg, #1d8cf8, rgb(78.4678111588, 165.1716738197, 249.5321888412));
  transition: all 0.3s ease;
}
.contact-faq .form-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(29, 140, 248, 0.35);
}
.contact-faq .faq {
  margin-bottom: 40px;
}
.contact-faq .faq-item {
  border-bottom: 1px solid #243248;
}
.contact-faq .faq-question {
  width: 100%;
  padding: 18px 0;
  background: none;
  color: #e6ecf2;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contact-faq .faq-question span {
  width: 18px;
  height: 18px;
  position: relative;
}
.contact-faq .faq-question span::before, .contact-faq .faq-question span::after {
  content: "";
  position: absolute;
  background: #f4c430;
  transition: 0.3s;
}
.contact-faq .faq-question span::before {
  width: 18px;
  height: 2px;
  top: 8px;
  left: 0;
}
.contact-faq .faq-question span::after {
  width: 2px;
  height: 18px;
  top: 0;
  left: 8px;
}
.contact-faq .faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
  padding-bottom: 18px;
}
.contact-faq .faq-item.active .faq-question span::after {
  opacity: 0;
}
.contact-faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  color: #9aa4b2;
  font-size: 15px;
  transition: all 0.3s ease;
}
.contact-faq .contact-details p {
  font-size: 14px;
  color: #9aa4b2;
  margin-bottom: 10px;
}
.contact-faq .contact-details p strong {
  color: #e6ecf2;
}
@media (max-width: 992px) {
  .contact-faq .contact-faq__container {
    grid-template-columns: 1fr;
  }
}

.thankyou-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}
.thankyou-popup__content {
  background: #121c2b;
  border: 1px solid #243248;
  border-radius: 18px;
  padding: 40px;
  text-align: center;
  max-width: 360px;
}
.thankyou-popup__content h3 {
  color: #f4c430;
  font-size: 26px;
  margin-bottom: 12px;
}
.thankyou-popup__content p {
  color: #9aa4b2;
  margin-bottom: 24px;
}
.thankyou-popup__content button {
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: 700;
  color: #fff;
  background: #1d8cf8;
}
.thankyou-popup.active {
  display: flex;
}

.site-footer {
  background: linear-gradient(180deg, #0e1621 0%, rgb(7.9234042553, 12.4510638298, 18.6765957447) 100%);
  border-top: 1px solid #243248;
  margin-top: 40px;
}
.site-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding: 80px 0;
}
.site-footer__bottom {
  border-top: 1px solid #243248;
  padding: 24px 0;
  text-align: center;
}
.site-footer__bottom p {
  font-size: 13px;
  color: #9aa4b2;
}
.site-footer .footer-brand__logo {
  font-size: 28px;
  font-weight: 800;
  color: #f4c430;
  display: inline-block;
  margin-bottom: 22px;
}
.site-footer .footer-brand__text {
  font-size: 14px;
  line-height: 1.7;
  color: #9aa4b2;
  margin-bottom: 14px;
}
.site-footer .footer-nav h4 {
  font-size: 18px;
  font-weight: 700;
  color: #e6ecf2;
  margin-bottom: 22px;
}
.site-footer .footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-footer .footer-nav ul a {
  font-size: 14px;
  color: #9aa4b2;
  transition: color 0.25s ease;
}
.site-footer .footer-nav ul a:hover {
  color: #f4c430;
}
.site-footer .footer-references h4 {
  font-size: 18px;
  font-weight: 700;
  color: #e6ecf2;
  margin-bottom: 22px;
}
.site-footer .footer-references__logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: center;
  justify-items: center;
}
.site-footer .footer-references__logos a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 70px;
}
.site-footer .footer-references__logos img {
  max-height: 50px;
  max-width: 140px;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.site-footer .footer-references__logos img:hover {
  opacity: 1;
  transform: translateY(-2px) scale(1.05);
}
.site-footer .age-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid #e5533d;
  color: #e5533d;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.site-footer .age-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(229, 83, 61, 0.35);
}
.site-footer .footer-responsible h4 {
  font-size: 18px;
  font-weight: 700;
  color: #e6ecf2;
  margin-bottom: 22px;
}
.site-footer .footer-responsible p {
  font-size: 14px;
  line-height: 1.7;
  color: #9aa4b2;
  margin-bottom: 14px;
}

.auth {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(900px 400px at 50% 0%, rgba(29, 140, 248, 0.25), transparent 60%), linear-gradient(180deg, #121c2b 0%, #0e1621 100%);
}
.auth__card {
  width: 100%;
  max-width: 420px;
  padding: 48px 40px;
  background: linear-gradient(180deg, rgba(18, 28, 43, 0.95), rgba(14, 22, 33, 0.95));
  border: 1px solid #243248;
  border-radius: 22px;
  text-align: center;
}
.auth__title {
  font-size: 32px;
  font-weight: 800;
  color: #e6ecf2;
  margin-bottom: 10px;
}
.auth__text {
  color: #9aa4b2;
  margin-bottom: 32px;
}
.auth__group {
  margin-bottom: 18px;
}
.auth__group input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(14, 22, 33, 0.9);
  border: 1px solid #243248;
  color: #e6ecf2;
  font-size: 15px;
}
.auth__group input:focus {
  outline: none;
  border-color: #1d8cf8;
}
.auth__checkbox {
  text-align: left;
  margin-bottom: 22px;
}
.auth__checkbox label {
  font-size: 14px;
  color: #9aa4b2;
  display: flex;
  gap: 10px;
  align-items: center;
}
.auth__btn {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  color: #ffffff;
  background: linear-gradient(135deg, #1d8cf8, rgb(78.4678111588, 165.1716738197, 249.5321888412));
  transition: all 0.3s ease;
}
.auth__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(29, 140, 248, 0.35);
}
.auth__switch {
  margin-top: 26px;
  font-size: 14px;
  color: #9aa4b2;
}
.auth__switch a {
  color: #f4c430;
  font-weight: 600;
}

.auth-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}
.auth-popup__content {
  background: #121c2b;
  border: 1px solid #243248;
  border-radius: 18px;
  padding: 40px;
  text-align: center;
  width: 100%;
  max-width: 360px;
}
.auth-popup__content h3 {
  color: #f4c430;
  font-size: 26px;
  margin-bottom: 12px;
}
.auth-popup__content p {
  color: #9aa4b2;
}
.auth-popup.active {
  display: flex;
}

.responsible-gaming {
  padding: 40px 0;
  background: linear-gradient(180deg, #0e1621 0%, #121c2b 100%);
}
.responsible-gaming__head {
  max-width: 820px;
  margin: 0 auto 90px;
  text-align: center;
}
.responsible-gaming__title {
  font-size: 44px;
  font-weight: 800;
  color: #e6ecf2;
  margin-bottom: 18px;
}
.responsible-gaming__subtitle {
  font-size: 18px;
  color: #9aa4b2;
}
.responsible-gaming__content {
  max-width: 980px;
  margin: 0 auto 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.responsible-gaming__notice {
  max-width: 980px;
  margin: 0 auto;
  padding: 32px 40px;
  background: linear-gradient(180deg, rgba(18, 28, 43, 0.95), rgba(14, 22, 33, 0.95));
  border: 1px solid #243248;
  border-radius: 18px;
  text-align: center;
}
.responsible-gaming__notice p {
  font-size: 14px;
  line-height: 1.7;
  color: #9aa4b2;
}
.responsible-gaming .rg-block {
  background: linear-gradient(180deg, rgba(18, 28, 43, 0.9), rgba(14, 22, 33, 0.9));
  border: 1px solid #243248;
  border-radius: 22px;
  padding: 42px 44px;
}
.responsible-gaming .rg-block h3 {
  font-size: 22px;
  font-weight: 700;
  color: #f4c430;
  margin-bottom: 18px;
}
.responsible-gaming .rg-block p {
  font-size: 15px;
  line-height: 1.7;
  color: #9aa4b2;
  margin-bottom: 14px;
}
@media (max-width: 992px) {
  .responsible-gaming .responsible-gaming {
    padding: 100px 0;
  }
  .responsible-gaming .responsible-gaming__title {
    font-size: 36px;
  }
  .responsible-gaming .responsible-gaming__content {
    gap: 36px;
  }
  .responsible-gaming .rg-block {
    padding: 36px 30px;
  }
}
@media (max-width: 576px) {
  .responsible-gaming .responsible-gaming__subtitle {
    font-size: 16px;
  }
}

@media (max-width: 1200px) {
  .site-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
}
@media (max-width: 952px) {
  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .site-footer .footer-brand,
  .site-footer .footer-nav,
  .site-footer .footer-references,
  .site-footer .footer-responsible {
    text-align: center;
  }
  .site-footer .footer-nav ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 28px;
    justify-items: center;
  }
  .site-footer .footer-references__logos {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .site-footer {
    margin-top: 20px;
  }
  .site-footer__top {
    padding: 50px 0;
    gap: 36px;
  }
  .site-footer .footer-nav ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 28px;
    justify-items: center;
  }
  .site-footer .footer-brand__logo {
    font-size: 24px;
  }
  .site-footer .footer-brand__text {
    font-size: 13px;
  }
  .site-footer .footer-nav h4,
  .site-footer .footer-references h4,
  .site-footer .footer-responsible h4 {
    font-size: 16px;
  }
  .site-footer .footer-responsible p {
    font-size: 13px;
  }
  .site-footer .footer-references__logos {
    gap: 20px;
  }
  .site-footer .age-badge {
    width: 48px;
    height: 48px;
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .site-footer__top {
    padding: 40px 0;
    gap: 32px;
  }
  .site-footer .footer-nav ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 28px;
    justify-items: center;
  }
  .site-footer .footer-brand__logo {
    font-size: 22px;
  }
  .site-footer .footer-references__logos {
    gap: 16px;
  }
}/*# sourceMappingURL=style.css.map */