@charset "UTF-8";
@font-face {
  font-family: "Archivo";
  src: url("./Archivo-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "Tenor Sans";
  src: url("./TenorSans-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
  font-display: swap;
}
textarea {
  width: 0px;
  height: 0px;
  all: unset;
}

html,
body {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  height: 100%;
}

h1,
h2,
h3 {
  padding: 0;
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

img {
  margin: 0;
  padding: 0;
}

a {
  margin: 0;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}

a,
a:active,
a:hover {
  text-decoration: none;
}

li {
  margin: 0;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  /* Другие свойства по необходимости */
}

div {
  box-sizing: border-box;
}

input {
  all: unset;
}

a:focus,
a:active {
  text-decoration: none;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

a {
  text-decoration: none; /* Убирает подчеркивание */
  color: inherit; /* Устанавливает цвет ссылки такой же, как у родительского элемента */
  font-weight: normal; /* Устанавливает обычный вес шрифта */
  background: none; /* Убирает фоновый цвет */
  border: none; /* Убирает границу */
  outline: none; /* Убирает обводку */
}

:root {
  --color-primary: #4fa257;
  --color-secondary: #f3ea7b;
  --color-text-light: #ffffff;
  --color-text-dark: #070707;
  --font-heading: "Archivo", sans-serif;
  --font-body: "Tenor Sans", sans-serif;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-secondary);
  color: var(--color-text-dark);
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 150px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 24px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16px;
  color: var(--color-text-light);
  background: linear-gradient(180deg, #ffe015 0%, #ed8b00 100%);
  border: 2px solid var(--color-text-light);
  cursor: pointer;
  transition: transform 0.2s ease;
  max-width: 250px;
  width: 100%;
}

.btn:hover {
  transform: scale(1.05);
}

.mob-btn {
  max-width: 250px;
  width: 100%;
}
@media (max-width: 992px) {
  .mob-btn {
    max-width: 800px;
    width: 100%;
  }
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 36px;
  color: var(--color-text-dark);
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 1200px) {
  .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  .section-title {
    font-size: 24px;
  }
}
/* CSS from section:header */
.site-header {
  background-color: var(--color-primary);
  padding: 13px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 9999;
}

.logo-part2 {
  height: 24px;
  z-index: 9999;
  position: relative;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 50px;
}

.nav-links {
  display: flex;
  gap: 50px;
}

.nav-links a {
  color: var(--color-text-light);
  font-size: 16px;
}

.lang-selector {
  display: flex;
  gap: 10px;
}
.lang-selector .lang-selector-wrapper {
  position: relative;
  width: 24px;
  height: 24px;
  display: inline-block;
  text-decoration: none;
}
.lang-selector .lang-selector-wrapper .lang-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 992px) {
  .nav-links {
    gap: 20px;
  }
  .main-nav {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .header-container {
    flex-direction: row;
    gap: 10px;
  }
  .main-nav {
    flex-direction: column;
    gap: 15px;
  }
  .nav-links {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }
  .nav-links a {
    text-align: center;
  }
}
/* Burger Menu Styles */
.burger-menu {
  display: none;
  cursor: pointer;
  z-index: 1001;
}

.burger-icon {
  width: 30px;
  height: 20px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
}
.burger-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--color-text-light);
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.burger-icon span:nth-child(1) {
  top: 0;
}
.burger-icon span:nth-child(2) {
  top: 10px;
}
.burger-icon span:nth-child(3) {
  top: 20px;
}
.burger-icon.open span:nth-child(1) {
  top: 10px;
  transform: rotate(135deg);
}
.burger-icon.open span:nth-child(2) {
  opacity: 0;
  left: -30px;
}
.burger-icon.open span:nth-child(3) {
  top: 10px;
  transform: rotate(-135deg);
}

/* Mobile menu styles */
@media (max-width: 768px) {
  .burger-menu {
    display: block;
  }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--color-primary);
    flex-direction: column;
    justify-content: flex-start;
    padding: 80px 20px 20px;
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    overflow-y: auto;
  }
  .main-nav.active {
    right: 0;
  }
  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .header-container {
    position: relative;
  }
}
/* CSS from section:hero */
.hero-section {
  background-image: url("/assets/img/herobg.webp");
  background-size: cover;
  background-position: center;
  padding: 50px 0;
}

.hero-container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: var(--color-text-dark);
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 40px;
  text-transform: uppercase;
  line-height: 48px;
}

.hero-description {
  font-size: 16px;
  line-height: 1.2;
}

.hero-btn {
  align-self: flex-start;
}

.hero-image {
  flex-shrink: 0;
}

.hero-image img {
  width: 405px;
  height: 405px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: left;
    gap: 0;
  }
  .hero-btn {
    align-self: left;
  }
  .hero-title {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 400px) {
  .hero-container {
    flex-direction: column;
    text-align: left;
    gap: 0;
  }
  .hero-btn {
    align-self: left;
  }
  .hero-title {
    font-size: 32px;
    line-height: 1.2;
  }
  .hero-image img {
    width: 300px;
    height: 300px;
  }
}
/* CSS from section:games */
.games-section {
  padding: 50px 0;
}

.games-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.game-card {
  background-color: var(--color-primary);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--color-text-light);
}

.game-info {
  display: flex;
  align-items: center;
  gap: 24px;
}

.game-logo {
  width: 150px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}

.game-text h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 24px;
  margin-bottom: 16px;
}

.game-text p {
  font-size: 16px;
  line-height: 24px;
}

@media (max-width: 992px) {
  .game-card {
    flex-direction: column;
    text-align: left;
  }
  .game-text h3 {
    font-size: 20px;
  }
  .game-info {
    flex-direction: row;
  }
  .game-logo {
    width: 100px;
  }
}
/* CSS from section:wins */
.wins-section {
  padding: 50px 0;
}

.wins-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.wins-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
}

.win-card {
  background-color: var(--color-primary);
  border: 2px solid var(--color-text-light);
  border-radius: 30px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  color: var(--color-text-light);
}
.win-card .win-logo {
  align-self: center;
}
.win-card .win-date,
.win-card .win-amount,
.win-card .win-winners,
.win-card .mob-btn {
  align-self: flex-start;
  text-align: left;
}

.win-logo {
  height: 130px;
  -o-object-fit: contain;
     object-fit: contain;
}

.win-date,
.win-winners {
  font-size: 16px;
  line-height: 24px;
}

.win-amount {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 24px;
}

@media (max-width: 768px) {
  .wins-grid {
    grid-template-columns: 1fr;
  }
}
/* CSS from section:contact */
.contact-section {
  padding: 50px 0;
}

.contact-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.contact-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-header p {
  font-size: 16px;
  line-height: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 900px;
  align-items: center;
}
@media (max-width: 768px) {
  .contact-form {
    width: 90%;
  }
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e6e6e6;
  background-color: var(--color-text-light);
  font-family: var(--font-body);
  font-size: 16px;
  color: #999999;
}

.form-input {
  border-radius: 10px;
  height: 47px;
}

.form-textarea {
  border-radius: 20px;
  height: 100px;
  resize: vertical;
}

.thank-you-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.thank-you-popup.show {
  display: flex;
}
.thank-you-popup .popup-content {
  background-color: #fff;
  padding: 30px 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  max-width: 400px;
}
.thank-you-popup .popup-content p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #333;
}
.thank-you-popup .popup-content .close-btn {
  padding: 10px 20px;
  background-color: black;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.thank-you-popup .popup-content .close-btn:hover {
  background-color: #333;
}

/* CSS from section:responsible-gaming */
.rg-section {
  padding: 50px 0;
}

.rg-content-box {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  border-radius: 30px;
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.rg-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
}

.rg-title-brand {
  text-transform: uppercase;
}

.rg-text {
  font-size: 16px;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.rg-text h3 {
  font-family: var(--font-heading);
  font-weight: 100;
  font-size: 18px;
  margin-top: 1em;
  margin-bottom: 0.5em;
}

.rg-text ul {
  list-style: none;
  padding: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .rg-content-box {
    padding: 30px 20px;
  }
  .rg-text ul {
    text-align: center;
  }
  .rg-text h3 {
    font-size: 16px;
    margin: 0;
  }
}
/* CSS from section:footer */
.site-footer {
  background-color: var(--color-primary);
  color: #ededed;
  padding: 50px 0;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-container p {
  font-size: 16px;
  line-height: 22.4px;
  max-width: 1140px;
}
.footer-container p .underlined {
  text-decoration: underline;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .partner-logos {
    gap: 12px;
  }
}

.partner-logos img {
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .partner-logos img {
    width: 70px;
  }
}

/* Patterns Section */
.patterns-section {
  padding: 50px 0;
}
.patterns-section .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.patterns-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}

.patterns-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.08;
  color: var(--color-text-dark);
  margin: 0;
}
@media (max-width: 768px) {
  .patterns-title {
    font-size: 28px;
  }
}

.patterns-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.17;
  color: var(--color-text-dark);
  margin: 0;
}

.tabs-container {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
@media (max-width: 768px) {
  .tabs-container {
    flex-direction: column;
    align-items: flex-end;
  }
}

.tabs-nav {
  flex-grow: 1;
  background-color: var(--color-primary);
  border-radius: 8px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .tabs-nav {
    gap: 10px;
    padding: 10px;
    width: 100%;
    justify-content: center;
  }
}

.tab-item {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.08;
  color: var(--color-text-dark);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .tab-item {
    font-size: 16px;
    padding: 6px 12px;
  }
}
.tab-item.active {
  background-color: var(--color-text-light);
  color: var(--color-primary);
  font-weight: 700;
}
.tab-item:hover:not(.active) {
  background-color: rgba(255, 255, 255, 0.2);
}

.filter-container {
  position: relative;
}

.filter-button {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.filter-button img {
  width: 24px;
  height: 24px;
}

.filter-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 10px;
  display: none;
  flex-direction: column;
  gap: 8px;
  min-width: 160px;
  z-index: 100;
}
.filter-dropdown.show {
  display: flex;
}

.filter-option {
  padding: 8px 16px;
  border: none;
  background: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--color-text-dark);
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.filter-option:hover {
  background-color: #f0f0f0;
}
.filter-option.active {
  background-color: var(--color-primary);
  color: white;
}

.results-card {
  display: flex;
  justify-content: space-between;
  border: 1px solid var(--color-text-light);
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .results-card {
    flex-direction: column;
  }
}

.winning-numbers {
  padding: 30px 50px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex-grow: 1;
}
@media (max-width: 992px) {
  .winning-numbers {
    padding: 20px;
  }
}

.winning-numbers-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.08;
  margin: 0;
}

.winning-numbers-subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.17;
  margin: 0;
}

.lotto-balls-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.lotto-ball {
  width: 42px;
  height: 41px;
  background-color: var(--color-primary);
  border-radius: 20px;
  color: var(--color-text-light);
  font-family: var(--font-body);
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 480px) {
  .lotto-ball {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}

.prize-amount {
  background-color: var(--color-primary);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: var(--color-text-light);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.08;
  max-width: 520px;
  width: 100%;
}
@media (max-width: 992px) {
  .prize-amount {
    border-radius: 0;
    border-top: 1px solid var(--color-text-light);
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .prize-amount {
    padding: 20px;
  }
}

.prize-amount-label,
.prize-amount-value {
  margin: 0;
}

/* CSS from section:news */
.news-section .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.news-section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.08;
  text-align: center;
  margin-top: 30px;
}

.news-article {
  display: flex;
  gap: 30px;
}

.news-image {
  width: 330px;
  height: 430px;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}

.news-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-headline {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.08;
  margin: 0;
}

.news-story {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.17;
  margin: 0;
}

@media (max-width: 992px) {
  .news-article {
    flex-direction: column-reverse;
    align-items: center;
  }
  .news-image {
    width: 100%;
    max-width: 400px;
    height: auto;
  }
}
/* CSS from section:subscribe */
.subscribe-section .container {
  padding-top: 50px;
  padding-bottom: 50px;
}

.subscribe-box {
  background-color: var(--color-primary);
  border: 1px solid #39f287;
  border-radius: 40px;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  color: var(--color-text-light);
}
@media (max-width: 768px) {
  .subscribe-box {
    padding: 50px 10px;
  }
}

.subscribe-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.08;
  margin: 0;
  text-transform: uppercase;
}

.subscribe-subtitle {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.08;
  margin: 0;
}

.subscribe-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.form-fields {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-input-news {
  background-color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(252, 252, 252, 0.6);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text-light);
  width: 96.5%;
}
@media (max-width: 768px) {
  .form-input-news {
    width: 93%;
  }
}

.form-input-news::-moz-placeholder {
  color: rgba(252, 252, 252, 0.6);
}

.form-input-news::placeholder {
  color: rgba(252, 252, 252, 0.6);
}

.thank-you-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.thank-you-popup.show {
  display: flex;
}
.thank-you-popup .popup-content {
  background-color: #fff;
  padding: 30px 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  max-width: 400px;
}
.thank-you-popup .popup-content p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #333;
}
.thank-you-popup .popup-content .close-btn {
  padding: 10px 20px;
  background-color: black;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
.thank-you-popup .popup-content .close-btn:hover {
  background-color: #333;
}/*# sourceMappingURL=main.css.map */