@charset "UTF-8";
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-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; /* Убирает обводку */
}

body {
  font-family: "Montserrat", sans-serif;
}

:root {
  --primary-red: #c8102e;
  --primary-blue: #003366;
  --accent-gold: #ffc72c;
  --light-gray: #f5f7fa;
  --dark-gray: #333333;
  --white: #ffffff;
  --transition: all 0.3s ease;
}

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

body {
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
}
.btn-primary {
  background-color: var(--primary-red);
  color: var(--white);
}
.btn-primary:hover {
  background-color: rgb(152.7777777778, 12.2222222222, 35.1388888889);
  transform: translateY(-2px);
}
.btn-secondary {
  background-color: var(--primary-blue);
  color: var(--white);
}
.btn-secondary:hover {
  background-color: rgb(0, 25.5, 51);
  transform: translateY(-2px);
}
.btn-login, .btn-register {
  padding: 8px 20px;
  font-size: 14px;
}
.btn-login {
  background-color: transparent;
  color: var(--primary-blue);
  border: 1px solid var(--primary-blue);
}
.btn-login:hover {
  background-color: var(--primary-blue);
  color: var(--white);
}
.btn-register {
  background-color: var(--primary-red);
  color: var(--white);
}
.btn-register:hover {
  background-color: rgb(152.7777777778, 12.2222222222, 35.1388888889);
}
.btn-game {
  background-color: var(--accent-gold);
  color: var(--dark-gray);
  width: 100%;
  text-align: center;
}
.btn-game:hover {
  background-color: rgb(248, 182.1800947867, 0);
}

.age-warning {
  background-color: var(--primary-red);
  color: var(--white);
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 600;
}
.age-warning .fa-exclamation-triangle {
  margin-right: 8px;
}

.age-warning {
  background-color: var(--primary-red);
  color: var(--white);
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 600;
}
.age-warning .fa-exclamation-triangle {
  margin-right: 8px;
}

.header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  position: relative;
  z-index: 1;
}
.menu-open .header-content {
  z-index: 0;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--primary-blue);
  z-index: 1002;
}
.logo-icon {
  font-size: 28px;
  margin-right: 10px;
  color: var(--primary-red);
}
.logo-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 24px;
}
.logo-text span {
  color: var(--primary-red);
}

@media (max-width: 992px) {
  .nav {
    display: none;
  }
}
.nav-list {
  display: flex;
  list-style: none;
}
.nav-list li {
  margin: 0 15px;
}
.nav-list li a {
  text-decoration: none;
  color: var(--dark-gray);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  padding: 8px 0;
}
.nav-list li a:hover, .nav-list li a.active {
  color: var(--primary-red);
}
.nav-list li a:hover:after, .nav-list li a.active:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-red);
}

.header-buttons {
  display: flex;
  gap: 10px;
}
@media (max-width: 992px) {
  .header-buttons {
    display: none;
  }
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
}
.btn-login, .btn-register {
  padding: 8px 20px;
  font-size: 14px;
}
.btn-login {
  background-color: transparent;
  color: var(--primary-blue);
  border: 1px solid var(--primary-blue);
}
.btn-login:hover {
  background-color: var(--primary-blue);
  color: var(--white);
}
.btn-register {
  background-color: var(--primary-red);
  color: var(--white);
}
.btn-register:hover {
  background-color: rgb(152.7777777778, 12.2222222222, 35.1388888889);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 24px;
  color: var(--primary-blue);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  z-index: 1002;
}
@media (max-width: 992px) {
  .mobile-menu-btn {
    display: flex;
  }
}
.mobile-menu-btn:hover {
  color: var(--primary-red);
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100%;
  background-color: var(--white);
  z-index: 1001;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}
@media (max-width: 480px) {
  .mobile-menu {
    width: 280px;
  }
}
.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
  background-color: var(--white);
}

.mobile-logo {
  display: flex;
  align-items: center;
  color: var(--primary-blue);
}
.mobile-logo .logo-icon {
  font-size: 28px;
  margin-right: 10px;
  color: var(--primary-red);
}
.mobile-logo .logo-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 20px;
}
.mobile-logo .logo-text span {
  color: var(--primary-red);
}

.mobile-menu-close {
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 24px;
  color: var(--dark-gray);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-close:hover {
  color: var(--primary-red);
}

.mobile-nav {
  flex: 1;
  overflow-y: auto;
  padding: 20px 0;
}

.mobile-nav-list {
  list-style: none;
}
.mobile-nav-list li {
  margin: 5px 0;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  text-decoration: none;
  color: var(--dark-gray);
  font-weight: 500;
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.mobile-nav-link i {
  width: 24px;
  margin-right: 15px;
  font-size: 18px;
  color: var(--primary-blue);
  text-align: center;
}
.mobile-nav-link span {
  flex: 1;
}
.mobile-nav-link:hover, .mobile-nav-link.active {
  background-color: #f5f7fa;
  color: var(--primary-red);
  border-left-color: var(--primary-red);
}
.mobile-nav-link:hover i, .mobile-nav-link.active i {
  color: var(--primary-red);
}

.mobile-menu-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-top: 1px solid #eee;
}
.mobile-menu-buttons .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.mobile-menu-buttons .btn i {
  font-size: 16px;
}
.mobile-menu-buttons .btn-login-mobile {
  background-color: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}
.mobile-menu-buttons .btn-login-mobile:hover {
  background-color: var(--primary-blue);
  color: var(--white);
}
.mobile-menu-buttons .btn-register-mobile {
  background-color: var(--primary-red);
  color: var(--white);
}
.mobile-menu-buttons .btn-register-mobile:hover {
  background-color: rgb(152.7777777778, 12.2222222222, 35.1388888889);
}

.mobile-menu-footer {
  padding: 15px 20px;
  border-top: 1px solid #eee;
  background-color: #f8f9fa;
}

.mobile-age-warning {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-red);
  font-size: 14px;
  font-weight: 600;
}
.mobile-age-warning i {
  font-size: 16px;
}

body.menu-open {
  overflow: hidden;
}
body.menu-open .header {
  z-index: 1003;
}
body.menu-open .header-content {
  z-index: 0;
}

@media (max-width: 992px) {
  .header-content {
    padding: 15px 0;
  }
  .logo-text {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .logo-text {
    font-size: 18px;
  }
  .mobile-menu {
    width: 100%;
  }
}
.mobile-menu-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-top: 1px solid #eee;
}
.mobile-menu-buttons .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.mobile-menu-buttons .btn i {
  font-size: 16px;
}
.mobile-menu-buttons .btn-login-mobile {
  background-color: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}
.mobile-menu-buttons .btn-login-mobile:hover {
  background-color: var(--primary-blue);
  color: var(--white);
}
.mobile-menu-buttons .btn-register-mobile {
  background-color: var(--primary-red);
  color: var(--white);
}
.mobile-menu-buttons .btn-register-mobile:hover {
  background-color: rgb(152.7777777778, 12.2222222222, 35.1388888889);
}

.mobile-menu-footer {
  padding: 15px 20px;
  border-top: 1px solid #eee;
  background-color: #f8f9fa;
}

.mobile-age-warning {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-red);
  font-size: 14px;
  font-weight: 600;
}
.mobile-age-warning i {
  font-size: 16px;
}

body.menu-open {
  overflow: hidden;
}
body.menu-open .header {
  z-index: 1003;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--primary-blue);
  z-index: 1002;
}
.logo-icon {
  font-size: 28px;
  margin-right: 10px;
  color: var(--primary-red);
}
.logo-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 24px;
}
.logo-text span {
  color: var(--primary-red);
}

.btn-login, .btn-register {
  padding: 8px 20px;
  font-size: 14px;
}
.btn-login {
  background-color: transparent;
  color: var(--primary-blue);
  border: 1px solid var(--primary-blue);
}
.btn-login:hover {
  background-color: var(--primary-blue);
  color: var(--white);
}
.btn-register {
  background-color: var(--primary-red);
  color: var(--white);
}
.btn-register:hover {
  background-color: rgb(152.7777777778, 12.2222222222, 35.1388888889);
}

@media (max-width: 992px) {
  .header-content {
    padding: 15px 0;
    z-index: 0;
  }
  .logo-text {
    font-size: 20px;
  }
  .logo {
    z-index: 0;
  }
}
@media (max-width: 480px) {
  .logo-text {
    font-size: 18px;
  }
  .mobile-menu {
    width: 100%;
  }
}
.header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--primary-blue);
}
.logo-icon {
  font-size: 28px;
  margin-right: 10px;
  color: var(--primary-red);
}
.logo-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 24px;
}
.logo-text span {
  color: var(--primary-red);
}

.nav-list {
  display: flex;
  list-style: none;
}
.nav-list li {
  margin: 0 15px;
}
.nav-list li a {
  text-decoration: none;
  color: var(--dark-gray);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}
.nav-list li a:hover, .nav-list li a.active {
  color: var(--primary-red);
}
.nav-list li a:hover:after, .nav-list li a.active:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-red);
}

.header-buttons {
  display: flex;
  gap: 10px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--primary-blue);
  cursor: pointer;
}

.hero-wow {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(0, 80, 60, 0.35),
      transparent 60%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(200, 16, 46, 0.25),
      transparent 55%
    ),
    #070b0f;
  color: #ffffff;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.5rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3cffc0;
  box-shadow: 0 0 12px rgba(60, 255, 192, 0.8);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  70% {
    transform: scale(2.2);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.hero-title {
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.2rem;
  max-width: 560px;
}

.hero-description {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
}

.btn-primary {
  padding: 0.9rem 2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #3cffc0, #2ad4a4);
  color: #002e24;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(60, 255, 192, 0.45);
}

.btn-outline {
  padding: 0.9rem 2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: background 0.3s ease, border 0.3s ease;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
}

.hero-art {
  position: relative;
  width: 100%;
  height: 420px;
}

.number-orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: rotate 24s linear infinite;
}

.number-orbit span {
  position: absolute;
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
}

.number-orbit span:nth-child(1) {
  top: 0%;
  left: 50%;
}

.number-orbit span:nth-child(2) {
  top: 25%;
  right: 0%;
}

.number-orbit span:nth-child(3) {
  bottom: 0%;
  left: 50%;
}

.number-orbit span:nth-child(4) {
  top: 25%;
  left: 0%;
}

.number-orbit span:nth-child(5) {
  top: 55%;
  left: 70%;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.hero-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(60, 255, 192, 0.25),
    transparent 70%
  );
  filter: blur(40px);
  z-index: -1;
}

.hero-stats {
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2.5rem;
}

.stat {
  text-align: center;
}

.stat strong {
  font-size: 1.8rem;
  display: block;
}

.stat span {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 992px) {
  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-art {
    margin-top: 4rem;
    height: 340px;
  }

  .hero-actions {
    justify-content: center;
  }
}


.section-title {
  font-size: 36px;
  text-align: center;
  color: var(--primary-blue);
  margin-bottom: 15px;
}
.section-subtitle {
  text-align: center;
  color: var(--dark-gray);
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.games {
  padding: 100px 0;
  background: #070b0f;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.games .section-title {
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.games .section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  color: rgba(255,255,255,0.65);
  margin-bottom: 60px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.game-card {
  background: rgba(15, 15, 15, 0.85);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 255, 192, 0.35);
  background: rgba(15, 15, 15, 0.95);
}

.game-image {
  position: relative;
  overflow: hidden;
}

.game-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.game-card:hover .game-image img {
  transform: scale(1.05);
}

.game-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #3cffc0;
  color: #002e24;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 5px 12px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.game-content {
  padding: 25px 30px;
}

.game-content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}

.game-description {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 15px;
  line-height: 1.5;
}

.game-meta {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.game-meta li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}

.game-meta li strong {
  color: #3cffc0;
}

.game-btn {
  display: inline-block;
  text-decoration: none;
  background: linear-gradient(135deg, #3cffc0, #2ad4a4);
  color: #002e24;
  padding: 12px 25px;
  border-radius: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: all 0.3s ease;
}

.game-btn:hover {
  background: linear-gradient(135deg, #2ad4a4, #3cffc0);
  box-shadow: 0 8px 20px rgba(60, 255, 192, 0.45);
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .games-grid {
    gap: 30px;
  }
}


.stat {
  text-align: center;
}
.stat-value {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-red);
}
.stat-label {
  display: block;
  font-size: 12px;
  color: #777;
  text-transform: uppercase;
  margin-top: 5px;
}

.guide-wow {
  position: relative;
  background: #070b0f;
  color: #fff;
  padding: 100px 0;
  font-family: 'Inter', sans-serif;
}

.guide-wow .section-title {
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.guide-wow .section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  color: rgba(255,255,255,0.65);
  margin-bottom: 60px;
}

/* --- Visual Path --- */
.guide-visual {
  position: relative;
  margin-bottom: 60px;
}

.guide-path {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.path-line {
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 2px;
  background: rgba(60, 255, 192, 0.25);
  transform: translateY(-50%);
  z-index: 1;
}

.path-dots {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 2;
}

.path-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.path-dot.active .dot-icon {
  background: linear-gradient(135deg, #3cffc0, #2ad4a4);
  box-shadow: 0 0 12px rgba(60,255,192,0.6);
}

.dot-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  transition: all 0.3s ease;
}

.dot-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
  text-align: center;
}

/* --- Steps --- */
.guide-steps-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.guide-step {
  display: grid;
  grid-template-columns: 0.25fr 0.75fr;
  gap: 2rem;
  align-items: center;
  opacity: 0.6;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.guide-step.active {
  opacity: 1;
  transform: translateY(0);
}

.step-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.step-icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(60,255,192,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #3cffc0;
  box-shadow: 0 0 20px rgba(60,255,192,0.3);
  transition: all 0.3s ease;
}

.step-number {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
}

.step-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.step-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}

.step-tip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 15px;
}

.step-tip i {
  color: #3cffc0;
}

/* --- Step Buttons --- */
.step-content .btn-primary {
  display: inline-block;
  text-decoration: none;
  background: linear-gradient(135deg, #3cffc0, #2ad4a4);
  color: #002e24;
  padding: 12px 25px;
  border-radius: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: all 0.3s ease;
}

.step-content .btn-primary:hover {
  background: linear-gradient(135deg, #2ad4a4, #3cffc0);
  box-shadow: 0 8px 20px rgba(60,255,192,0.45);
  transform: translateY(-3px);
}

/* --- Navigation Buttons --- */
.guide-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 60px;
}

.guide-nav-btn {
  padding: 0.9rem 2rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.guide-nav-btn:hover:not(:disabled) {
  background: rgba(60,255,192,0.2);
  border-color: #3cffc0;
  box-shadow: 0 8px 20px rgba(60,255,192,0.3);
  transform: translateY(-2px);
}

.guide-nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.step-indicator {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* --- Rules Card --- */
.game-rules-card {
  margin-top: 80px;
  background: rgba(15,15,15,0.8);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.rules-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 30px;
}

.rules-header i {
  font-size: 1.5rem;
  color: #3cffc0;
}

.rules-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.rule-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.rule-icon {
  width: 50px;
  height: 50px;
  background: rgba(60,255,192,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
  color: #3cffc0;
  flex-shrink: 0;
}

.rule-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.rule-content p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .guide-step {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }

  .step-visual {
    flex-direction: row;
    justify-content: center;
  }

  .step-number {
    display: none;
  }

  .guide-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .rules-grid {
    gap: 20px;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.step-visual {
  flex-shrink: 0;
  margin-right: 30px;
  position: relative;
}
@media (max-width: 768px) {
  .step-visual {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.step-icon-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  position: relative;
  box-shadow: 0 10px 20px rgba(0, 51, 102, 0.2);
}
.step-icon-circle:after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  z-index: -1;
  opacity: 0.3;
  filter: blur(10px);
}

.step-number {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gold);
  color: var(--dark-gray);
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(255, 199, 44, 0.3);
}
@media (max-width: 768px) {
  .step-number {
    bottom: -25px;
    font-size: 10px;
  }
}

.step-content {
  flex: 1;
}
.step-content h3 {
  color: var(--primary-blue);
  margin-bottom: 15px;
  font-size: 24px;
}
.step-content p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.7;
}

.step-tip {
  display: inline-flex;
  align-items: center;
  background: #f0f7ff;
  padding: 10px 15px;
  border-radius: 8px;
  border-left: 3px solid var(--accent-gold);
}
.step-tip i {
  color: var(--accent-gold);
  margin-right: 10px;
  font-size: 18px;
}
.step-tip span {
  font-size: 14px;
  color: var(--primary-blue);
  font-weight: 500;
}

.guide-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
}
@media (max-width: 576px) {
  .guide-buttons {
    gap: 15px;
  }
}

.guide-nav-btn {
  padding: 12px 25px;
  background: white;
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}
.guide-nav-btn:hover:not(:disabled) {
  background: var(--primary-blue);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 51, 102, 0.2);
}
.guide-nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  border-color: #ccc;
  color: #999;
}
@media (max-width: 576px) {
  .guide-nav-btn {
    padding: 10px 15px;
    font-size: 14px;
  }
}

.step-indicator {
  background: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  color: var(--primary-blue);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}
.step-indicator .current-step {
  color: var(--primary-red);
  font-size: 20px;
}
.step-indicator .total-steps {
  color: var(--dark-gray);
}

.game-rules-card {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-top: 5px solid var(--primary-red);
  position: relative;
  overflow: hidden;
}
.game-rules-card:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, transparent 50%, rgba(200, 16, 46, 0.05) 50%);
}
@media (max-width: 768px) {
  .game-rules-card {
    padding: 25px;
  }
}

.rules-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
}
.rules-header i {
  color: var(--primary-red);
  font-size: 32px;
}
.rules-header h3 {
  color: var(--primary-blue);
  margin: 0;
  font-size: 28px;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
}
@media (max-width: 576px) {
  .rules-grid {
    grid-template-columns: 1fr;
  }
}

.rule-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 10px;
  border-left: 3px solid var(--accent-gold);
  transition: var(--transition);
}
.rule-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  background: white;
}

.rule-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.rule-content {
  flex: 1;
}
.rule-content h4 {
  color: var(--primary-blue);
  margin-bottom: 8px;
  font-size: 18px;
}
.rule-content p {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 992px) {
  .path-line {
    left: 30px;
    right: 30px;
  }
  .dot-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  .step-icon-circle {
    width: 80px;
    height: 80px;
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .guide-path {
    height: 100px;
  }
  .path-line {
    top: 50px;
    left: 20px;
    right: 20px;
  }
  .dot-label {
    font-size: 12px;
    min-width: 60px;
    margin-top: 7px;
  }
  .rules-grid {
    gap: 15px;
  }
}
@media (max-width: 576px) {
  .guide {
    padding: 70px 0;
  }
  .guide-visual {
    margin: 30px auto 50px;
  }
  .path-dot .dot-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .guide-step {
    padding: 20px;
  }
}
.faq-wow {
  position: relative;
  background: #070b0f;
  color: #fff;
  padding: 100px 0;
  font-family: 'Inter', sans-serif;
}

.faq-wow .section-title {
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.faq-wow .section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 60px;
}

/* --- FAQ Container --- */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* --- FAQ Item --- */
.faq-item {
  background: rgba(15, 15, 15, 0.8);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(60, 255, 192, 0.35);
}

/* --- Question Button --- */
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(60, 255, 192, 0.08);
}

.faq-question i {
  transition: transform 0.3s ease, color 0.3s ease;
  color: #3cffc0;
}

/* Rotate arrow when active */
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* --- Answer --- */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  padding: 0 25px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.02);
}

.faq-item.active .faq-answer {
  max-height: 500px; /* достаточно для текста */
  padding: 15px 25px 25px 25px;
}

/* --- FAQ Glow Dot (optional) --- */
.faq-item::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  width: 10px;
  height: 10px;
  background: #3cffc0;
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 15px rgba(60, 255, 192, 0.5);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .faq-question {
    font-size: 1rem;
    padding: 18px 20px;
  }

  .faq-answer {
    font-size: 0.9rem;
    padding: 0 20px;
  }

  .faq-item::before {
    left: 8px;
    width: 8px;
    height: 8px;
  }
}

.footer {
  position: relative;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(0, 80, 60, 0.25),
      transparent 60%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(200, 16, 46, 0.15),
      transparent 55%
    ),
    #070b0f;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  padding: 80px 0 40px;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(60, 255, 192, 0.08), transparent 70%);
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 2;
  margin-bottom: 50px;
}

.footer-logo .logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.4rem;
  font-weight: 800;
  color: #3cffc0;
  text-decoration: none;
}

.footer-logo p {
  margin-top: 15px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
}

.footer-links {
  display: flex;
  gap: 40px;
}

.link-group h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #3cffc0;
  margin-bottom: 15px;
}

.link-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.link-group ul li {
  margin-bottom: 10px;
}

.link-group ul li a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.link-group ul li a:hover {
  color: #3cffc0;
  text-shadow: 0 0 8px #3cffc0;
}

.footer-certifications h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #3cffc0;
  margin-bottom: 15px;
}

.cert-logos {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.cert-logos a {
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cert-logos a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(60, 255, 192, 0.45);
}

.cert-logos img {
  max-height: 40px;
}

.cert-logos svg text {
  fill: #3cffc0;
  filter: drop-shadow(0 0 6px #3cffc0);
}

.footer-disclaimer {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .footer-links {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .cert-logos {
    justify-content: center;
  }
}

/* Container & Layout */
.games-play-section {
  padding: 60px 0;
  background: #1b1b1b;
  color: #fff;
  font-family: 'Arial', sans-serif;
}
.games-layout {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.games-list {
  flex: 1 1 65%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.play-cart {
  flex: 1 1 30%;
  background: #2a2a2a;
  padding: 20px;
  border-radius: 12px;
  position: sticky;
  top: 20px;
  height: fit-content;
}
.play-cart h4.cart-title {
  font-size: 20px;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-items {
  max-height: 250px;
  overflow-y: auto;
  margin-bottom: 15px;
}
.cart-item {
  padding: 8px 10px;
  background: #333;
  border-radius: 6px;
  margin-bottom: 8px;
  font-size: 14px;
}
.cart-empty {
  text-align: center;
  font-size: 14px;
  color: #aaa;
}
.cart-summary .summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 16px;
}
.cart-summary .total {
  font-weight: bold;
  border-top: 1px solid #444;
  padding-top: 8px;
  margin-top: 8px;
}
.btn {
  cursor: pointer;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  padding: 8px 16px;
  transition: all 0.2s;
}
.btn.primary {
  background: #e63946;
  color: #fff;
}
.btn.primary:hover {
  background: #d62839;
}
.btn.ghost {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.btn.ghost:hover {
  background: #444;
}

/* Play Cards */
.play-card {
  background: #2a2a2a;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px;
}
.play-thumb {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}
.play-content {
  flex: 1;
}
.play-title {
  font-size: 20px;
  margin-bottom: 10px;
}
.play-desc {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 10px;
}
.play-tags {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}
.play-tags span {
  background: #444;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
}

/* Play Panel */
.play-panel {
  background: #1f1f1f;
  padding: 15px;
  border-radius: 10px;
}
.panel-title {
  margin-bottom: 10px;
  font-weight: bold;
}
.panel-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
.panel-actions button {
  margin-left: 6px;
}

/* Number Grid */
.number-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(40px, 1fr));
  gap: 8px;
  margin-bottom: 10px;
}
.number-grid button {
  background: #333;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}
.number-grid button:hover {
  background: #e63946;
  color: #fff;
}
.number-grid button.selected {
  background: #e63946;
  color: #fff;
  font-weight: bold;
}

/* Checkout Modal */
.custom-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.custom-modal-content {
    background: #222;
    padding: 20px;
    border-radius: 12px;
    width: 400px;
    max-width: 95%;
    color: #fff;
    margin: 15% auto;
}
.custom-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.custom-modal-body label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}
.custom-modal-body input {
  width: 100%;
  padding: 8px;
  border-radius: 6px;
  border: none;
  margin-bottom: 15px;
}
.modal-close {
  background: transparent;
  border: none;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
}
.modal-close:hover {
  color: #e63946;
}

/* Responsive */
@media(max-width: 992px){
  .games-layout {
    flex-direction: column;
  }
  .play-cart {
    position: relative;
    top: auto;
  }
}


.link-group h4 {
  color: var(--accent-gold);
  margin-bottom: 20px;
  font-size: 18px;
}
.link-group ul {
  list-style: none;
}
.link-group ul li {
  margin-bottom: 12px;
}
.link-group ul li a {
  color: #ccc;
  text-decoration: none;
  transition: var(--transition);
}
.link-group ul li a:hover {
  color: var(--white);
  padding-left: 5px;
}

.cert-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}
.cert-logos a {
  display: inline-block;
}
.cert-logos a img {
  height: 40px;
  border-radius: 4px;
  transition: var(--transition);
}
.cert-logos a img:hover {
  opacity: 0.8;
}

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  font-size: 12px;
  line-height: 1.8;
  opacity: 0.7;
  text-align: center;
}
.footer-disclaimer p {
  margin-bottom: 10px;
}

@media (max-width: 992px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  .nav-list {
    flex-direction: column;
    padding: 20px;
  }
  .nav-list li {
    margin: 10px 0;
  }
  .nav-list li a {
    display: block;
    padding: 10px 0;
  }
  .nav.active {
    display: block;
  }
  .header-buttons {
    display: none;
  }
  .header-buttons.mobile-visible {
    display: flex;
    padding: 20px;
    border-top: 1px solid #eee;
  }
  .mobile-menu-btn {
    display: block;
    z-index: 0;
  }
  .hero {
    padding: 80px 0;
  }
  .hero-title {
    font-size: 36px;
  }
  .hero-subtitle {
    font-size: 18px;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .section-title {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 28px;
  }
  .section-title {
    font-size: 26px;
  }
  .step {
    flex-direction: column;
  }
  .step-number {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }
  .hero {
    padding: 60px 0;
  }
  .hero-title {
    font-size: 24px;
  }
  .hero-subtitle {
    font-size: 16px;
  }
  .btn {
    padding: 10px 20px;
  }
  .game-stats {
    flex-direction: column;
    gap: 15px;
  }
}
.simple-login {
  padding: 80px 0;
  background-color: var(--light-gray);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.login-container {
  max-width: 400px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}
.login-container h2 {
  text-align: center;
  color: var(--primary-blue);
  font-size: 32px;
  margin-bottom: 10px;
}
.login-container .login-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
  font-size: 16px;
}

.login-form .form-group {
  margin-bottom: 20px;
}
.login-form .form-group input {
  width: 90%;
  padding: 14px 16px;
  border: 2px solid #e1e5eb;
  border-radius: 8px;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  transition: var(--transition);
}
.login-form .form-group input:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}
.login-form .form-group input::-moz-placeholder {
  color: #999;
}
.login-form .form-group input::placeholder {
  color: #999;
}

.btn-login-submit {
  width: 100%;
  padding: 14px;
  background-color: var(--primary-red);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 10px;
}
.btn-login-submit:hover {
  background-color: rgb(152.7777777778, 12.2222222222, 35.1388888889);
}
.btn-login-submit:active {
  transform: scale(0.98);
}

.login-footer {
  margin-top: 25px;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.login-footer p {
  color: #666;
  font-size: 14px;
}
.login-footer p a {
  color: var(--primary-red);
  text-decoration: none;
  font-weight: 600;
}
.login-footer p a:hover {
  text-decoration: underline;
}

.login-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.login-popup-overlay.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.login-popup {
  background: var(--white);
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, #002244 100%);
  color: var(--white);
}
.popup-header i {
  font-size: 24px;
  color: var(--accent-gold);
}
.popup-header h3 {
  margin: 0;
  flex: 1;
  text-align: center;
  font-size: 20px;
}
.popup-header .popup-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.popup-header .popup-close:hover {
  color: var(--accent-gold);
}

.popup-content {
  padding: 30px 20px;
  text-align: center;
}
.popup-content p {
  margin: 10px 0;
  color: #333;
  font-size: 16px;
  line-height: 1.5;
}
.popup-content p:first-child {
  font-weight: 600;
  color: var(--primary-blue);
}

.popup-footer {
  padding: 20px;
  text-align: center;
  border-top: 1px solid #eee;
}

.btn-popup-ok {
  padding: 12px 40px;
  background-color: var(--primary-red);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.btn-popup-ok:hover {
  background-color: rgb(152.7777777778, 12.2222222222, 35.1388888889);
}

@media (max-width: 576px) {
  .login-container {
    padding: 30px 20px;
    margin: 0 15px;
  }
  .simple-login {
    padding: 40px 0;
  }
  .login-container h2 {
    font-size: 28px;
  }
}
.simple-register {
  padding: 80px 0;
  background-color: var(--light-gray);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.register-container {
  max-width: 400px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}
.register-container h2 {
  text-align: center;
  color: var(--primary-blue);
  font-size: 32px;
  margin-bottom: 10px;
}
.register-container .register-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
  font-size: 16px;
}

.register-form .form-group {
  margin-bottom: 20px;
}
.register-form .form-group input {
  width: 85%;
  padding: 14px 16px;
  border: 2px solid #e1e5eb;
  border-radius: 8px;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  transition: var(--transition);
}
.register-form .form-group input:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}
.register-form .form-group input::-moz-placeholder {
  color: #999;
}
.register-form .form-group input::placeholder {
  color: #999;
}

.checkbox-group {
  display: flex;
  align-items: center;
  margin: 25px 0;
}
.checkbox-group input[type=checkbox] {
  all: revert;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  accent-color: var(--primary-red);
  cursor: pointer;
}
.checkbox-group input[type=checkbox]:focus {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}
.checkbox-group label {
  color: #333;
  font-size: 14px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.checkbox-group label:hover {
  color: var(--primary-blue);
}

.btn-register-submit {
  width: 100%;
  padding: 14px;
  background-color: var(--primary-red);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 10px;
}
.btn-register-submit:hover {
  background-color: rgb(152.7777777778, 12.2222222222, 35.1388888889);
}
.btn-register-submit:active {
  transform: scale(0.98);
}

.register-footer {
  margin-top: 25px;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.register-footer p {
  color: #666;
  font-size: 14px;
}
.register-footer p a {
  color: var(--primary-red);
  text-decoration: none;
  font-weight: 600;
}
.register-footer p a:hover {
  text-decoration: underline;
}

.register-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.register-popup-overlay.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.register-popup {
  background: var(--white);
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, #002244 100%);
  color: var(--white);
}
.popup-header i {
  font-size: 24px;
  color: var(--accent-gold);
}
.popup-header h3 {
  margin: 0;
  flex: 1;
  text-align: center;
  font-size: 20px;
}
.popup-header .popup-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.popup-header .popup-close:hover {
  color: var(--accent-gold);
}

.popup-content {
  padding: 30px 20px;
  text-align: center;
}
.popup-content p {
  margin: 10px 0;
  color: #333;
  font-size: 16px;
  line-height: 1.5;
}
.popup-content p:first-child {
  font-weight: 600;
  color: var(--primary-blue);
}
.popup-content p.countdown-text {
  font-size: 14px;
  color: #666;
  margin-top: 20px;
  font-style: italic;
}

.popup-footer {
  padding: 20px;
  text-align: center;
  border-top: 1px solid #eee;
  display: flex;
  gap: 10px;
  justify-content: center;
}
.popup-footer .btn-popup-ok {
  padding: 12px 30px;
  background-color: var(--primary-red);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.popup-footer .btn-popup-ok:hover {
  background-color: rgb(152.7777777778, 12.2222222222, 35.1388888889);
}
.popup-footer .btn-go-now {
  padding: 12px 20px;
  background-color: var(--primary-blue);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.popup-footer .btn-go-now:hover {
  background-color: rgb(0, 25.5, 51);
}

@media (max-width: 576px) {
  .register-container {
    padding: 30px 20px;
    margin: 0 15px;
  }
  .simple-register {
    padding: 40px 0;
  }
  .register-container h2 {
    font-size: 28px;
  }
  .popup-footer {
    flex-direction: column;
    gap: 10px;
  }
  .popup-footer .btn-popup-ok,
  .popup-footer .btn-go-now {
    width: 100%;
  }
}
.privacy {
  padding: 40px 0;
  background: #fff;
  color: #eaeaea;
}
@media (max-width: 768px) {
  .privacy {
    padding: 70px 0;
  }
}
.privacy__title {
  font-size: 42px;
  font-weight: 700;
  text-align: left;
  margin-bottom: 20px;
  color: #000;
}
@media (max-width: 768px) {
  .privacy__title {
    font-size: 32px;
  }
}
.privacy__intro {
  max-width: 1060px;
  text-align: left;
  font-size: 17px;
  line-height: 1.7;
  color: #000;
}
.privacy__block {
  padding: 20px 0;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
@media (max-width: 768px) {
  .privacy__block {
    padding: 24px;
  }
}
.privacy__block h2 {
  font-size: 22px;
  margin-bottom: 14px;
  color: #000;
  font-weight: 600;
}
.privacy__block p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #000;
}
.privacy__block p:not(:last-child) {
  margin-bottom: 12px;
}
.privacy__note {
  max-width: 860px;
  padding: 20px 0;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px dashed rgba(255, 255, 255, 0.15);
  text-align: left;
}
.privacy__note p {
  font-size: 15px;
  line-height: 1.6;
  color: #000;
}/*# sourceMappingURL=main.css.map */