@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
}

.main-color-set-1 {
  background: #0046a1;
  color: #fff;
}

.main-color-set-2 {
  background: #434343;
  color: #fff;
}

.red-text {
  color: #c10016;
}

.green-text {
  color: #0046a1;
}

html, body {
  height: 100%;
}

a {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  text-align: center;
  color: #0046a1;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

section {
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  section {
    margin-bottom: 15px;
  }
}

body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  background: #fcf4eb;
  color: rgb(54, 69, 79);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.45;
}
body.no-scroll {
  overflow: hidden;
}

@media (max-width: 768px) {
  h2 {
    font-size: 2em;
  }
  p {
    font-size: 14px;
  }
}
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 21px;
}
@media (max-width: 768px) {
  .container {
    padding: 16px;
  }
}

.top-bar {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #000;
  align-self: stretch;
  font-size: 10px;
}
.top-bar__icon {
  max-width: 20px;
}
@media (max-width: 768px) {
  .top-bar {
    padding: 10px 16px;
    text-align: center;
  }
  .top-bar p {
    font-size: 8px;
  }
}

.header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #fcf4eb;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 5px 0px;
}
.header__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.header__logo img {
  max-height: 50px;
}
.header__nav {
  position: relative;
}
.header__links {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.header__links.active {
  right: 0;
}
.header__item {
  list-style: none;
}
.header__item a, .header__item button {
  color: rgb(54, 69, 79);
  font-weight: bold;
}
.header #registration {
  background: #0046a1;
  color: #fff;
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid transparent;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
}
.header__burger {
  position: relative;
  background: none;
  border: none;
  width: 30px;
  height: 25px;
  cursor: pointer;
  display: none;
  z-index: 110;
}
.header__burger.active .header__burger-line:nth-child(1) {
  transform: translateY(13px) rotate(45deg);
}
.header__burger.active .header__burger-line:nth-child(2) {
  opacity: 0;
}
.header__burger.active .header__burger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.header__burger-line {
  display: block;
  width: 25px;
  height: 3px;
  background-color: rgb(54, 69, 79);
  border-radius: 4px;
  transition: all 0.3s;
}
@media (max-width: 860px) {
  .header__container {
    padding: 16px;
  }
  .header__burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
  }
  .header__links {
    display: none;
  }
  .header__links.active {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(223, 221, 221, 0.6);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    list-style: none;
    transition: right 0.4s ease;
    z-index: 100;
  }
}

.hero {
  background: url("../images/lotto-bg.webp") center/cover no-repeat lightgray;
  background-color: rgba(245, 245, 238, 0.9);
  background-blend-mode: overlay;
  padding: 64px 21px;
  margin: 0;
}
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.hero__title {
  margin-bottom: 0;
  font-size: 4em;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
}
.hero__subtitle {
  font-size: 1.5em;
  font-weight: 600;
}
.hero__image {
  grid-row: span 3/span 3;
  grid-column-start: 2;
  grid-row-start: 1;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.hero__image img {
  max-width: 350px;
  width: 100%;
}
.hero__buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.hero__button {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid transparent;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  font-size: 1em;
  line-height: 1.5em;
}
@media (max-width: 930px) {
  .hero {
    padding: 20px 0;
  }
  .hero__content {
    gap: 8px;
  }
  .hero__title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 0;
  }
  .hero__subtitle {
    font-size: 1.2em;
  }
  .hero__badges {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    grid-column-start: 2;
    grid-row-start: 1;
  }
  .hero__image {
    justify-content: flex-start;
    grid-row: 1;
    grid-column-start: 1;
    grid-row-start: 1;
  }
  .hero__image img {
    width: 100%;
  }
}

.lottery__list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 10px;
}
@media (max-width: 768px) {
  .lottery__list {
    flex-wrap: wrap;
  }
}

.lottery-card {
  max-width: 400px;
  width: 100%;
  border-radius: 20px;
  color: rgb(54, 69, 79);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  background-color: #fff;
  padding: 20px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 8px 0px;
}
.lottery-card__logo {
  width: 100%;
}
.lottery-card__image-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 20px;
}
.lottery-card__title {
  margin: 0;
}
.lottery-card__info {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.lottery-card__button {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid transparent;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  font-size: 1em;
  line-height: 1.5em;
}
@media (max-width: 768px) {
  .lottery-card__info {
    padding: 10px;
    justify-content: center;
  }
  .lottery-card__logo {
    max-width: 100%;
    height: 150px;
    width: unset;
  }
}

.steps__list {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
@media (max-width: 768px) {
  .steps__list {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.step__card {
  cursor: pointer;
  overflow: hidden;
  display: flex;
  border-radius: 20px;
  color: rgb(54, 69, 79);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding: 20px;
  text-align: center;
}
.step__icon {
  font-size: 60px;
}
.step__title {
  margin: 0;
}
.step__description {
  margin: 0;
}
@media (max-width: 768px) {
  .step__info {
    padding: 10px;
    justify-content: center;
  }
}

.why-us__list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 10px;
}
@media (max-width: 768px) {
  .why-us__list {
    flex-wrap: wrap;
  }
}
.why-us__card {
  max-width: 400px;
  width: 100%;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  border-radius: 20px;
  color: rgb(54, 69, 79);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  background-color: #fff;
  padding: 20px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 8px 0px;
}
.why-us__title {
  margin: 0;
}
.why-us__icon {
  font-size: 60px;
}

.responsibility {
  text-align: center;
}

.info {
  background: linear-gradient(210deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 6, 17, 0.9) 100%);
  backdrop-filter: blur(10px);
}
.info__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.info__image {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.info__image img {
  max-width: 100%;
}
@media (max-width: 1024px) {
  .info__container {
    flex-direction: column-reverse;
    padding: 21px;
  }
}

.content-block {
  text-align: left;
  max-width: 1240px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 20px;
  margin: 20px auto;
}
.content-block h2, .content-block h3, .content-block h4, .content-block p, .content-block ul, .content-block ol {
  margin-bottom: 0;
  text-align: left;
}

.popup-button {
  font-size: 1em;
  background: none;
  border: none;
  cursor: pointer;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  padding: 20px;
}
.popup_opened {
  opacity: 1;
  visibility: visible;
}
.popup__container {
  background: white;
  border-radius: 16px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s;
  max-height: 90vh;
  overflow-y: auto;
}
.popup__container_opened .popup__container__container {
  transform: scale(1);
}
.popup__close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #999;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.popup__close:hover {
  background: #f0f0f0;
  color: #333;
}
.popup__title {
  font-size: 28px;
  margin-bottom: 25px;
  margin-top: 0;
  color: #333;
  font-weight: 700;
}
.popup .form__field {
  margin-bottom: 20px;
}
.popup .form__label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #555;
  font-size: 14px;
}
.popup .form__input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  transition: border-color 0.2s;
  font-family: inherit;
}
.popup:focus {
  outline: none;
}
.popup_error {
  border-color: #ff4444;
}
.popup_error .form__error {
  color: #ff4444;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}
.popup_visible {
  display: block;
}
.popup_visible .form__checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.popup_visible .form__checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}
.popup-label {
  font-size: 13px;
  color: #666;
  cursor: pointer;
}
.popup .form__submit {
  width: 100%;
  padding: 14px;
  background: #0046a1;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 10px;
}
.popup:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}
.popup:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.popup .form__link {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
  color: #666;
}
.popup a {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
}
.popup a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .popup .popup__container {
    padding: 30px 20px;
  }
  .popup .popup__container .popup__title {
    font-size: 24px;
  }
  .popup .popup__container .demo-button {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .popup .popup__container {
    padding: 25px 15px;
  }
  .popup .popup__container .popup__title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .popup .popup__container .form__input {
    padding: 10px 12px;
    font-size: 14px;
  }
  .popup .popup__container .form__submit {
    padding: 12px;
  }
}

.footer {
  background: #1f1f1f;
  color: #ccc;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__disclaimer {
  color: #c10016;
}
.footer__nav-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.footer__nav-item {
  list-style: none;
}
.footer__nav-item a {
  color: #ccc;
}
.footer__logos {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.footer__logos img {
  height: 60px;
  background: #fff;
  padding: 10px;
  margin: 10px;
  border-radius: 10px;
  max-width: 100%;
}
.footer__legal-text {
  text-align: center;
}
@media (max-width: 768px) {
  .footer__company {
    display: flex;
    flex-direction: column-reverse;
  }
  .footer__nav-list {
    padding: 0;
  }
  .footer__company-info {
    margin-bottom: 10px;
  }
  .footer__logos {
    flex-wrap: wrap;
    gap: 0;
  }
}

/*# sourceMappingURL=styles.css.map */
