@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  font-family: "Montserrat", "Open Sans", sans-serif;
  background-color: #ffffff;
  color: #1a1a2e;
  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: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 100;
}
.site-header .header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
  position: relative;
}
.site-header .header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 24px;
  color: #2c5f2d;
}
.site-header .header__logo .logo__icon {
  font-size: 28px;
}
.site-header .header__nav {
  display: flex;
  gap: 45px;
}
.site-header .header__nav a {
  color: #1a1a2e;
  font-weight: 600;
  position: relative;
  font-size: 15px;
  padding: 8px 0;
  transition: color 0.3s ease;
}
.site-header .header__nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: #ff6b35;
  border-radius: 10px;
  transition: width 0.3s ease;
}
.site-header .header__nav a:hover {
  color: #ff6b35;
}
.site-header .header__nav a:hover::after {
  width: 100%;
}
.site-header .header__nav.active {
  display: flex;
}
.site-header .header__actions {
  display: flex;
  gap: 15px;
}
.site-header .header__actions.active {
  display: flex;
}
.site-header .header__actions .btn {
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 13px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}
.site-header .header__actions .btn--outline {
  border: 3px solid #2c5f2d;
  color: #1a1a2e;
  background: #ffffff;
}
.site-header .header__actions .btn--outline::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2c5f2d, #00a8cc);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.site-header .header__actions .btn--outline:hover {
  color: #ffffff;
  background-color: #2c5f2d;
}
.site-header .header__actions .btn--outline:hover::after {
  opacity: 1;
}
.site-header .header__actions .btn--primary {
  background: linear-gradient(135deg, #2c5f2d, #1c3c1c);
  color: #ffffff;
  border: 3px solid #142b14;
  box-shadow: 0 8px 20px rgba(44, 95, 45, 0.25);
}
.site-header .header__actions .btn--primary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}
.site-header .header__actions .btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(44, 95, 45, 0.35);
}
.site-header .header__actions .btn--primary:hover::before {
  width: 200px;
  height: 200px;
}
.site-header .burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}
.site-header .burger span {
  width: 28px;
  height: 3px;
  background: #1a1a2e;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.site-header .burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}
.site-header .burger.active span:nth-child(2) {
  opacity: 0;
}
.site-header .burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
@media (max-width: 992px) {
  .site-header .header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    gap: 12px;
    display: none;
    z-index: 99;
  }
  .site-header .header__nav.active {
    display: flex;
  }
  .site-header .header__actions {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    padding: 20px 0 30px;
    gap: 12px;
    display: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 98;
    margin-top: 0;
  }
  .site-header .header__actions.active {
    display: flex;
  }
  .site-header .header__nav.active + .header__actions.active {
    top: calc(100% + 250px);
    box-shadow: none;
    border-top: 1px solid #dee2e6;
  }
  .site-header .burger {
    display: flex;
    z-index: 101;
  }
}

.top-warning {
  background: #dc3545;
  color: #ffffff;
  text-align: center;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-bottom: 3px solid #bd2130;
}
@media (max-width: 576px) {
  .top-warning {
    font-size: 13px;
    padding: 12px 16px;
  }
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 40px;
  background: linear-gradient(180deg, #fcfefc 0%, #ffffff 40%, white 100%);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(44, 95, 45, 0.02) 60px, rgba(44, 95, 45, 0.02) 120px), url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232c5f2d' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.6;
}
.hero__container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1200px;
}
.hero__content {
  width: 100%;
  padding: 20px 20px;
  border-radius: 24px;
  position: relative;
  z-index: 2;
}
.hero__content:hover::before {
  opacity: 0.15;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #ff6b35, #ff581c);
  color: #ffffff;
  font-weight: 800;
  font-size: 12px;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
  border: 2px solid #ff4d0c;
}
.hero__badge::before {
  content: "★";
  font-size: 16px;
}
.hero__title {
  font-size: 52px;
  line-height: 1.1;
  font-weight: 900;
  color: #1a1a2e;
  margin-bottom: 32px;
  letter-spacing: -2px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #1a1a2e 0%, #2c5f2d 50%, #1a1a2e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__title span {
  display: block;
  color: #ff6b35;
  -webkit-text-fill-color: #ff6b35;
  font-size: 0.85em;
  margin-top: 8px;
  letter-spacing: -1px;
}
.hero__text {
  font-size: 20px;
  color: #6c757d;
  margin-bottom: 50px;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}
.hero__actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__btn {
  padding: 20px 30px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 17px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero__btn--primary {
  background: linear-gradient(135deg, #2c5f2d, #1c3c1c);
  color: #ffffff;
  box-shadow: 0 20px 40px rgba(44, 95, 45, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border: 3px solid #142b14;
}
.hero__btn--primary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.hero__btn--primary:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 30px 60px rgba(44, 95, 45, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.hero__btn--primary:hover::before {
  width: 300px;
  height: 300px;
}
.hero__btn--secondary {
  background: #ffffff;
  color: #1a1a2e;
  border: 3px solid #2c5f2d;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  position: relative;
}
.hero__btn--secondary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2c5f2d, #00a8cc);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}
.hero__btn--secondary:hover {
  color: #ffffff;
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 40px rgba(44, 95, 45, 0.3);
}
.hero__btn--secondary:hover::after {
  opacity: 1;
}
.hero__visual {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}
.hero__orb {
  position: absolute;
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  filter: blur(80px);
  opacity: 0.25;
  animation: float 8s ease-in-out infinite;
}
.hero__orb--one {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #2c5f2d, #00a8cc);
  top: -10%;
  left: -5%;
  animation-delay: 0s;
}
.hero__orb--two {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, #ff6b35, #00a8cc);
  bottom: -10%;
  right: -5%;
  animation-delay: 2s;
  border-radius: 70% 30% 30% 70%/70% 70% 30% 30%;
}
.hero__orb--three {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #00a8cc, #2c5f2d);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 4s;
}
@media (max-width: 992px) {
  .hero {
    padding: 20px 0 20px;
  }
  .hero__content {
    padding: 50px 40px;
  }
  .hero__title {
    font-size: 52px;
  }
  .hero__badge {
    margin-bottom: 28px;
  }
  .hero__orb {
    display: block;
  }
  .hero__orb--one {
    width: 300px;
    height: 300px;
  }
  .hero__orb--two {
    width: 280px;
    height: 280px;
  }
  .hero__orb--three {
    width: 240px;
    height: 240px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 20px 0 20px;
  }
  .hero__content {
    padding: 45px 35px;
  }
  .hero__title {
    font-size: 42px;
    letter-spacing: -1px;
  }
  .hero__text {
    font-size: 17px;
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .hero {
    padding: 20px 0 20px;
  }
  .hero__content {
    padding: 35px 25px;
  }
  .hero__badge {
    font-size: 11px;
    padding: 10px 20px;
    margin-bottom: 24px;
  }
  .hero__title {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 24px;
  }
  .hero__text {
    font-size: 14px;
    margin-bottom: 35px;
  }
  .hero__actions {
    flex-direction: column;
    gap: 14px;
    width: 100%;
  }
  .hero__btn {
    width: 100%;
    padding: 16px 30px;
    font-size: 15px;
  }
  .hero__orb--one, .hero__orb--two, .hero__orb--three {
    opacity: 0.15;
    filter: blur(60px);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}
.games {
  padding: 70px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}
.games::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 168, 204, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.games__head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  position: relative;
  z-index: 1;
}
.games__title {
  font-size: 38px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.games__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #00a8cc);
  margin: 20px auto 0;
  border-radius: 2px;
}
.games__subtitle {
  font-size: 17px;
  color: #6c757d;
  line-height: 1.6;
}
.games__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}
.games .game-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(44, 95, 45, 0.12);
  transition: all 0.35s ease;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}
.games .game-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #00a8cc, #2c5f2d);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.games .game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(44, 95, 45, 0.15);
  border-color: #2c5f2d;
}
.games .game-card:hover::before {
  opacity: 1;
}
.games .game-card:hover .game-card__image::after {
  opacity: 0.5;
}
.games .game-card:hover .game-card__image img {
  transform: scale(1.08);
}
.games .game-card:hover .game-card__title {
  color: #2c5f2d;
}
.games .game-card__image {
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #f5fbf6, white);
  position: relative;
}
.games .game-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(44, 95, 45, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.games .game-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.games .game-card__content {
  padding: 28px;
}
.games .game-card__title {
  font-size: 21px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
  transition: color 0.35s ease;
}
.games .game-card__text {
  font-size: 15px;
  line-height: 1.6;
  color: #6c757d;
}
@media (max-width: 992px) {
  .games {
    padding: 60px 0;
  }
  .games__head {
    margin-bottom: 40px;
  }
  .games__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .games__title {
    font-size: 32px;
  }
  .games__title::after {
    width: 50px;
    height: 3px;
    margin-top: 16px;
  }
  .games .game-card__image {
    height: 200px;
  }
  .games .game-card__content {
    padding: 24px;
  }
  .games .game-card__title {
    font-size: 19px;
  }
}
@media (max-width: 768px) {
  .games {
    padding: 50px 0;
  }
  .games__title {
    font-size: 28px;
  }
  .games__subtitle {
    font-size: 16px;
  }
  .games .game-card__image {
    height: 180px;
  }
}
@media (max-width: 576px) {
  .games__title {
    font-size: 26px;
  }
  .games .game-card__content {
    padding: 20px;
  }
  .games .game-card__title {
    font-size: 18px;
  }
  .games .game-card__text {
    font-size: 14px;
  }
}

.game-manual {
  padding: 70px 0;
  background: #ffffff;
}
.game-manual__head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}
.game-manual__title {
  font-size: 36px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.game-manual__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #00a8cc);
  margin: 20px auto 0;
  border-radius: 2px;
}
.game-manual__subtitle {
  font-size: 16px;
  color: #6c757d;
  line-height: 1.6;
}
.game-manual__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}
.game-manual__notice {
  max-width: 800px;
  margin: 0 auto;
  padding: 28px 36px;
  background: white;
  border-left: 4px solid #ff6b35;
  border-radius: 8px;
}
.game-manual__notice p {
  font-size: 14px;
  line-height: 1.7;
  color: #545b62;
  margin: 0;
}
.game-manual .manual-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 26px;
  border: 2px solid #dee2e6;
  transition: all 0.3s ease;
}
.game-manual .manual-card:hover {
  transform: translateY(-4px);
  border-color: #2c5f2d;
  box-shadow: 0 12px 28px rgba(44, 95, 45, 0.12);
}
.game-manual .manual-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f8f9fa;
}
.game-manual .manual-card__icon {
  font-size: 36px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eef7ef, white);
  border-radius: 12px;
  flex-shrink: 0;
}
.game-manual .manual-card__title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
  letter-spacing: -0.3px;
}
.game-manual .manual-card__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.game-manual .manual-card__step {
  font-size: 14px;
  line-height: 1.6;
  color: #6c757d;
  padding-left: 16px;
  position: relative;
}
.game-manual .manual-card__step::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #ff6b35;
  font-weight: 700;
}
.game-manual .manual-card__step strong {
  color: #1a1a2e;
  font-weight: 600;
}
@media (max-width: 992px) {
  .game-manual__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .game-manual {
    padding: 60px 0;
  }
  .game-manual__title {
    font-size: 30px;
  }
  .game-manual__subtitle {
    font-size: 15px;
  }
  .game-manual__notice {
    padding: 24px 28px;
  }
}
@media (max-width: 576px) {
  .game-manual__title {
    font-size: 26px;
  }
  .game-manual .manual-card {
    padding: 24px 20px;
  }
  .game-manual .manual-card__icon {
    width: 50px;
    height: 50px;
    font-size: 28px;
  }
  .game-manual .manual-card__title {
    font-size: 19px;
  }
}

.contact-faq {
  padding: 70px 0;
  background: #f8f9fa;
}
.contact-faq__head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}
.contact-faq__title {
  font-size: 36px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.contact-faq__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #00a8cc);
  margin: 20px auto 0;
  border-radius: 2px;
}
.contact-faq__subtitle {
  font-size: 16px;
  color: #6c757d;
  line-height: 1.6;
}
.contact-faq .faq {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-faq .faq-item {
  background: #ffffff;
  border-radius: 12px;
  border: 2px solid #dee2e6;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.contact-faq .faq-item.active {
  border-color: #2c5f2d;
}
.contact-faq .faq-item.active .faq-question {
  color: #2c5f2d;
}
.contact-faq .faq-item.active .faq-question svg {
  transform: rotate(180deg);
}
.contact-faq .faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 28px 24px;
}
.contact-faq .faq-question {
  width: 100%;
  padding: 24px 28px;
  background: none;
  color: #1a1a2e;
  font-weight: 700;
  font-size: 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color 0.3s ease;
  text-align: left;
}
.contact-faq .faq-question:hover {
  color: #2c5f2d;
}
.contact-faq .faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #ff6b35;
}
.contact-faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 28px;
}
.contact-faq .faq-answer p {
  font-size: 15px;
  line-height: 1.7;
  color: #6c757d;
  margin: 0;
}
@media (max-width: 768px) {
  .contact-faq {
    padding: 60px 0;
  }
  .contact-faq__title {
    font-size: 30px;
  }
  .contact-faq__subtitle {
    font-size: 15px;
  }
  .contact-faq .faq-question {
    font-size: 16px;
    padding: 20px 24px;
  }
  .contact-faq .faq-answer {
    padding: 0 24px;
  }
  .contact-faq .faq-answer p {
    font-size: 14px;
  }
  .contact-faq .faq-item.active .faq-answer {
    padding: 0 24px 20px;
  }
}
@media (max-width: 576px) {
  .contact-faq__title {
    font-size: 26px;
  }
  .contact-faq .faq-question {
    font-size: 15px;
    padding: 18px 20px;
  }
  .contact-faq .faq-answer {
    padding: 0 20px;
  }
  .contact-faq .faq-item.active .faq-answer {
    padding: 0 20px 18px;
  }
}

.thankyou-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  backdrop-filter: blur(5px);
}
.thankyou-popup__content {
  background: #ffffff;
  border: 2px solid #dee2e6;
  border-radius: 12px;
  padding: 50px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}
.thankyou-popup__content h3 {
  color: #ff6b35;
  font-size: 30px;
  margin-bottom: 16px;
  font-weight: 900;
}
.thankyou-popup__content p {
  color: #6c757d;
  margin-bottom: 28px;
  line-height: 1.6;
}
.thankyou-popup__content button {
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  color: #fff;
  background: #ff6b35;
  transition: all 0.3s ease;
}
.thankyou-popup__content button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}
.thankyou-popup.active {
  display: flex;
}

.site-footer {
  background: #1a1a2e;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0;
}
.site-footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 60px;
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer__bottom {
  padding: 24px 0;
  text-align: center;
}
.site-footer__bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}
.site-footer .footer-brand__logo {
  font-size: 28px;
  font-weight: 900;
  color: #ffffff;
  display: inline-block;
  margin-bottom: 20px;
}
.site-footer .footer-brand__text {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 14px;
}
.site-footer .footer-nav h4 {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.site-footer .footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-footer .footer-nav ul a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}
.site-footer .footer-nav ul a:hover {
  color: #ff6b35;
  padding-left: 8px;
}
.site-footer .footer-references h4 {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.site-footer .footer-references__logos {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 10px;
}
.site-footer .footer-references__logos a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
}
.site-footer .footer-references__logos a:hover {
  border-color: #ff6b35;
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.08);
}
.site-footer .footer-references__logos img {
  max-height: 45px;
  max-width: 130px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.site-footer .footer-references__logos .age-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid #dc3545;
  color: #dc3545;
  font-weight: 900;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.3s ease;
}
.site-footer .footer-references__logos .age-badge:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3);
}
@media (max-width: 992px) {
  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 50px 0;
  }
}
@media (max-width: 576px) {
  .site-footer__top {
    padding: 40px 0;
  }
  .site-footer .footer-brand__logo {
    font-size: 24px;
  }
}

.auth {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
}
.auth__card {
  width: 100%;
  max-width: 480px;
  padding: 55px 50px;
  background: #ffffff;
  border: 2px solid #dee2e6;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
.auth__title {
  font-size: 36px;
  font-weight: 900;
  color: #1a1a2e;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.auth__text {
  color: #6c757d;
  margin-bottom: 38px;
  line-height: 1.6;
}
.auth__group {
  margin-bottom: 22px;
}
.auth__group input {
  width: 100%;
  padding: 16px 20px;
  border-radius: 8px;
  background: #f8f9fa;
  border: 2px solid #dee2e6;
  color: #1a1a2e;
  font-size: 15px;
  transition: all 0.3s ease;
}
.auth__group input:focus {
  outline: none;
  border-color: #00a8cc;
  background: #ffffff;
}
.auth__checkbox {
  text-align: left;
  margin-bottom: 28px;
}
.auth__checkbox label {
  font-size: 14px;
  color: #6c757d;
  display: flex;
  gap: 12px;
  align-items: center;
  line-height: 1.6;
}
.auth__btn {
  width: 100%;
  padding: 18px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, #2c5f2d, #1c3c1c);
  border: 3px solid #142b14;
  box-shadow: 0 8px 20px rgba(44, 95, 45, 0.25);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}
.auth__btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}
.auth__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(44, 95, 45, 0.35);
}
.auth__btn:hover::before {
  width: 300px;
  height: 300px;
}
.auth__switch {
  margin-top: 30px;
  font-size: 14px;
  color: #6c757d;
}
.auth__switch a {
  color: #00a8cc;
  font-weight: 700;
}

.auth-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  backdrop-filter: blur(5px);
}
.auth-popup__content {
  background: #ffffff;
  border: 2px solid #dee2e6;
  border-radius: 12px;
  padding: 50px;
  text-align: center;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}
.auth-popup__content h3 {
  color: #00a8cc;
  font-size: 30px;
  margin-bottom: 16px;
  font-weight: 900;
}
.auth-popup__content p {
  color: #6c757d;
  line-height: 1.6;
}
.auth-popup.active {
  display: flex;
}

.responsible-gaming {
  padding: 70px 0;
  background: #ffffff;
}
.responsible-gaming__head {
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
}
.responsible-gaming__title {
  font-size: 36px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.responsible-gaming__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #00a8cc);
  margin: 20px auto 0;
  border-radius: 2px;
}
.responsible-gaming__subtitle {
  font-size: 16px;
  color: #6c757d;
  line-height: 1.6;
}
.responsible-gaming__content {
  max-width: 900px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.responsible-gaming__notice {
  max-width: 900px;
  margin: 0 auto;
  padding: 28px 36px;
  background: white;
  border-left: 4px solid #ff6b35;
  border-radius: 8px;
}
.responsible-gaming__notice p {
  font-size: 14px;
  line-height: 1.7;
  color: #545b62;
  margin: 0;
}
.responsible-gaming .rg-block {
  background: #ffffff;
  border: 2px solid #dee2e6;
  border-radius: 16px;
  padding: 28px 26px;
  transition: all 0.3s ease;
}
.responsible-gaming .rg-block:hover {
  transform: translateY(-4px);
  border-color: #2c5f2d;
  box-shadow: 0 12px 28px rgba(44, 95, 45, 0.12);
}
.responsible-gaming .rg-block h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
  padding-bottom: 14px;
  border-bottom: 2px solid #f8f9fa;
  position: relative;
}
.responsible-gaming .rg-block h3::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #ff6b35;
}
.responsible-gaming .rg-block p {
  font-size: 14px;
  line-height: 1.7;
  color: #6c757d;
  margin-bottom: 12px;
}
.responsible-gaming .rg-block p:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .responsible-gaming__content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .responsible-gaming .rg-block {
    padding: 24px 20px;
  }
}
@media (max-width: 768px) {
  .responsible-gaming {
    padding: 60px 0;
  }
  .responsible-gaming__title {
    font-size: 30px;
  }
  .responsible-gaming__subtitle {
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  .responsible-gaming__title {
    font-size: 26px;
  }
  .responsible-gaming__notice {
    padding: 24px 28px;
  }
}

@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 */
