
:root {
  --blue: #0A91FF;
  --black: #212121;
  --white: #fff;
  --light-blue: #e6f4ff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Общие стили */
body {
  font-family: 'Outfit', sans-serif;
  color: var(--black);

}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
}

/* Контейнер */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Шапка */
.site-header {
  background: var(--black);
}
.site-header a {
  text-decoration: none;
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  max-width: 90%;
}
.logo {
  color: var(--white);
  font-size: 24px;
  font-weight: 600;

}
.site-nav .btn-primary {
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 16px;
}

/* Главный блок */
.hero {
  position: relative;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  padding: 100px 0;
}
.hero-overlay {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.3);
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero-card {
  max-width: 85%;
  margin: 0 auto;
  background: rgba(255,255,255,0.9);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
}
.hero-card h1 {
  font-family: Outfit;
  font-weight: 600;
  font-size: 48px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  margin-bottom: 8px;
}
.subtitle {
  font-family: Outfit;
  font-weight: 300;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: var(--blue);
  margin-bottom: 24px;
}
/* Countdown в Hero */
.hero .countdown {
  display: flex;
  justify-content: center;
  margin: 20px;
}
.hero .count {
  background: #0A91FF33;
  padding: 16px;
  border-radius: 8px;
  text-align: center;
  min-width: 80px;
}
.hero .count .number {
  font-family: Outfit;
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: var(--blue-dark);
}
.hero .count .label {
  font-family: Outfit;
  font-weight: 300;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: center;
  color: #0A91FF;
  vertical-align: middle;
  margin-top: 4px;
}

/* Джекпот */
.jackpot-wrapper {
  max-width: 596px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding-bottom: 20px;
}
.jackpot {
  margin-bottom: 24px;
  background: linear-gradient(1deg, rgb(10 145 255 / 0%) 0%, #0a91ff24 50%);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.jackpot-label {
  font-family: Outfit;
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;

}
.jackpot-value {
  font-family: Outfit;
  font-weight: 600;
  font-size: 32px;
  color: var(--blue);
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  font-weight: 600;
  margin-top: 4px;
}
.jackpot-text {
  font-family: Outfit;
  font-weight: 300;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;

}

/* Таймер */
.countdown {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}
.count {
  flex: 1;
  background: var(--light-blue);
  padding: 16px;
  border-radius: 8px;
  margin: 0 8px;
}
.count:first-child { margin-left: 0; }
.count:last-child  { margin-right: 0; }
.number {
  font-size: 32px;
  font-weight: 600;
}
.label {
  font-size: 0.875rem;
  color: #555;
}

/* Кнопка Play */
.btn-play {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  width: 100%;
  border-radius: 20px;
  font-weight: 600;
  margin-bottom: 24px;
  max-width: 548px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Outfit;
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  margin: auto;
}

/* Номера лотереи */
.lottery-numbers {
  display: flex;
  justify-content: center;
  gap: 16px;
  align-items: center;
  max-width: 596px;
  margin: 20px auto;
}
.lottery-numbers span {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-family: Outfit;
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
}
.lottery-numbers span.active {
  background: var(--blue);
  color: var(--white);
}
/* ============ Lottery Games ============ */
:root {
  /* цвета для карточек */
  --purple: #7c4dff;
  --orange: #E9561E;
  --teal:   #009688;
}

.lottery-games {
  padding: 80px 0;
  background: #F7F7F7;
}
.games-header {
  text-align: center;
  margin-bottom: 40px;
}
.games-header .age {
  display: inline-block;
  width: 32px; height: 32px;
  line-height: 32px;
  background: #e73f3f;
  color: #fff;
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 600;
}
.games-header h2 {
  margin-top: 8px;
  font-size: 32px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

/* базовые стили карточки */
.game-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.card-header {
  padding: 24px;
  color: #fff;
  border-radius: 20px;
}
.card-header .game-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 16px;
  font-family: Outfit;
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  text-align: center;
}
.card-header .game-numbers {
  display: flex;
  gap: 8px;
}
.card-header .game-numbers span {
  width: 52px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--black);
  border-radius: 50%;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-family: Outfit;
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
}

/* цвета заголовков */
.daily-pick .card-header {
  background: #7B44E8;
}
.thunder-orange .card-header {
  background: #E9561E;
}
.thunder-teal .card-header {
  background: #179488;
}

/* Стили для li-иконок в карточках */
.card-body {
  list-style: none;
  padding: 24px;
  flex: 1;
}
.card-body li {
  display: flex;
  align-items: center;
  font-family: Outfit;
  font-weight: 300;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  padding: 8px 0px;
}
.card-body li:last-child {
  margin-bottom: 0;
}
.card-body li .li-icon {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  flex-shrink: 0;
}

/* футер карточки */
.card-footer {
  padding: 0 20px 20px 20px;
  text-align: center;
  font-family: Outfit;
font-weight: 600;
font-style: SemiBold;
font-size: 32px;
leading-trim: NONE;
line-height: 120%;
letter-spacing: 0%;
text-align: center;
vertical-align: middle;

}
.btn-secondary {
  display: flex;
  padding: 12px 0;
  align-items: center;
  border-radius: 20px;
  text-decoration: none;
  justify-content: center;
  color: #fff;
  font-family: Outfit;
  font-weight: 700;
  height: 64px;
  font-size: 18px;
  width: 100%;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
}
.daily-pick .btn-secondary {
  background: #7B44E8;
}
.thunder-orange .btn-secondary {
  background: #E9561E;
}
.thunder-teal .btn-secondary {
  background: #179488;
}
/* ============ Features ============ */
.features {
  padding: 80px 0;
  background: #fff;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}
.feature-card {
  background: linear-gradient(to bottom, var(--light-blue), #fff);
  border-radius: 12px;
  padding: 24px;
  border-radius: 20px;
}
.feature-card .icon-wrap {
  width: 48px;
  height: 48px;
  margin: 0 16px 16px 0;
}
.feature-card h2 {
  font-family: Outfit;
font-weight: 600;
font-size: 32px;
line-height: 120%;
letter-spacing: 0%;
vertical-align: middle;
  margin-bottom: 12px;
  margin-top: 35px;
}
 
.feature-card p {
  font-family: Outfit;
font-weight: 300;
font-size: 20px;
line-height: 140%;
letter-spacing: 0%;
vertical-align: middle;
}
/* ============ How to Play ============ */
.how-to-play {
  padding: 80px 0;
  background: #fff;
}

.how-to-play .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.how-to-play .steps h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 32px;
  margin-bottom: 32px;
}

.step-list .step {
  display: flex;
  margin-bottom: 24px;
  align-items: center;
}

.step-number {
  flex-shrink: 0;
    width: 61px;
    height: 61px;
    opacity: 1;
    gap: 16px;
    border-radius: 20px;
    padding: 16px;
    border-width: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--blue);
    margin-right: 16px;
    background: #0A91FF33;
    border: 2px solid #0A91FF;
    font-family: Outfit;
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
}

.step-content h4 {
  font-weight: 600;
  margin-bottom: 4px;
  font-family: Outfit;
font-weight: 600;
font-size: 24px;
line-height: 120%;
letter-spacing: 0%;
vertical-align: middle;
  line-height: 1.4;
}

.step-content p {
  font-family: Outfit;
font-weight: 300;
font-size: 20px;
line-height: 140%;
letter-spacing: 0%;
vertical-align: middle;
}
.how-image {
  background: url('../images/how-to-play.jpg') center/cover no-repeat;
  width: 100%;
  min-height: 300px; /* подберите высоту под макет */
  border-radius: 12px;
}

.how-image img {
  width: 100%;
  border-radius: 12px;
  display: block;
}
/* ============ How to Play ============ */
.how-to-play .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

/* ============ Register Section ============ */
:root {
  --blue-light: #4dabf7;
  --blue-dark:  #007bff;
}

.register {
  padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.register-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
  background: #0A91FF;
  border-radius: 20px;
  padding: 50px;
}
.register-info h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-family: Outfit;
font-weight: 600;
font-size: 48px;
line-height: 120%;
letter-spacing: 0%;
vertical-align: middle;
  color: #fff;
  margin-bottom: 16px;
}
.register-info p {
  font-family: Outfit;
font-weight: 300;
font-size: 20px;
line-height: 140%;
letter-spacing: 0%;
vertical-align: middle;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
}

/* форма */
.register-form form {
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  max-width: 400px;
  margin: auto;
}
.register-form input {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 16px;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-family: Outfit;
font-weight: 300;
font-size: 18px;
line-height: 140%;
letter-spacing: 0%;
vertical-align: middle;

}
.password-group {
  position: relative;
}
.password-group .toggle-password {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
.register-form .btn-primary {
  width: 100%;
  margin-top: 8px;
  border: none;
  cursor: pointer;
}
.register-form .form-note {
  color: #666;
  margin-top: 12px;
  text-align: center;
}
.register-form .form-note a {
  color: var(--blue-dark);
  text-decoration: underline;
}
/* ============ Footer ============ */
.site-footer {
  background: #111;
  color: #ccc;
  font-size: 0.875rem;
  line-height: 1.4;
}
.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid #333;
  max-width: 90%;
}
.footer-col h4 {
  font-weight: 600;
  color: #fff;
  font-family: Outfit;
font-weight: 600;
font-size: 20px;
line-height: 140%;
letter-spacing: 0%;
vertical-align: middle;

  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: #ccc;
  text-decoration: none;
  margin-bottom: 8px;
font-weight: 300;
font-style: Light;
font-size: 16px;
line-height: 140%;
letter-spacing: 0%;
vertical-align: middle;
}
.form-left {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
}
.footer-col a:hover {
  color: #fff;
}
.footer-brand .age-badge {
  display: inline-block;
    padding: 5px 20px;
    background: #e73f3f;
    color: #fff;
    border-radius: 20px;
    text-align: center;
    line-height: 28px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}
.footer-brand .footer-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #fff;
}
.footer-newsletter form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-newsletter input {
  flex: 1;
    background: #fff;
    border-radius: 20px;
    padding: 8px 12px;
    border: 1px solid #444;
    border-radius: 20px;
    font-weight: 300;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
    vertical-align: middle;
    font-family: 'Outfit', sans-serif;
    max-width: 200px;
    color: #9D9D9D;
}
.footer-newsletter button {
  padding: 8px 16px;
    background: #007bff;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    border-radius: 20px;
}
.footer-newsletter input::placeholder {
  color: #aaa;
}
.footer-bottom {
  text-align: center;
  padding: 20px 0;
  max-width: 75%;
}
.footer-bottom .legal {
  font-family: Outfit;
font-weight: 300;
font-size: 16px;
line-height: 140%;
letter-spacing: 0%;
text-align: center;
vertical-align: middle;
  color: #9D9D9D;
  margin-bottom: 16px;
}
.responsible-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.responsible-logos img {
  height: 36px;
  display: block;
}
.responsible-title {
  font-family: Outfit;
font-weight: 600;
font-size: 20px;
line-height: 140%;
letter-spacing: 0%;
text-align: center;
vertical-align: middle;
margin-bottom: 15px;
}
.footer-bottom p {
  margin: 0;
  font-family: Outfit;
font-weight: 300;
font-size: 16px;
line-height: 140%;
letter-spacing: 0%;
text-align: center;
vertical-align: middle;
  color: #9D9D9D;
  margin-bottom: 16px;
}
.copyright {
  border-top: 1px solid #333;
}
.register-form {
  position: relative;
    background-position: center;
    background-size: contain;
    background-image: url(../images/register-form-bg.png);
  }
/* ============ Policy Pages (Privacy, Terms, Cookies) ============ */


.policy-page .policy {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  padding: 40px 32px;
}

.policy-page .policy .container {
  margin: 0 auto;
}

/* Заголовки */
.policy .container h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 48px;
  margin-bottom: 16px;
  color: #111;
}

.policy .container h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 32px;
  margin-top: 32px;
  margin-bottom: 12px;
  color: #222;
}

/* Вводный абзац */
.policy-intro {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 24px;
}

/* Нумерованный список секций */
.policy-sections {
  list-style: none;
  counter-reset: section;
  margin: 0;
  padding: 0;
}

.policy-sections > li {
  counter-increment: section;
  margin-bottom: 24px;
}

.policy-sections > li::before {
  content: counter(section) ". ";
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--blue-dark);
}

.policy-sections li > strong {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #111;
}

/* Текст внутри секции */
.policy-sections li p {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
  margin: 8px 0 0 0;
}

/* Вложенные списки */
.policy-sections li ul {
  list-style: disc;
  margin: 8px 0 0 20px;
  padding: 0;
}

.policy-sections li ul li {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 6px;
  padding-left: 0;
}

/* Ссылки внутри policy */
.policy a {
  color: var(--blue-dark);
  text-decoration: underline;
}

.policy a:hover {
  color: var(--blue);
}

/* Мобильная адаптация */
@media (max-width: 768px) {
  .register-container {
    padding: 10px;
  }
  .policy-page {
    padding: 40px 0;
  }
  .policy .container {
    padding: 0 16px;
  }
  .policy .container h1 {
    font-size: 1.75rem;
  }
  .policy .container h2 {
    font-size: 1.125rem;
  }
}
/* ============ How to Play (Responsive) ============ */
.how-to-play .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch; /* колонки одинаковой высоты */
}

/* Для мобильных устройств — одна колонка */
@media (max-width: 768px) {
  .how-to-play .container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  /* чуть больше отступа между блоками шагов и картинкой */
  .how-to-play .how-image {
    margin-top: 20px;
  }
}

/* уже существующие стили */
.how-to-play .step-list .step {
  display: flex;
  margin-bottom: 24px;
}

.step-number {
  /* ваш стиль */
}

.step-content h4 {
  /* ваш стиль */
}

/* .how-image */
.how-image {
  background: url('../images/how-to-play.jpg') center/cover no-repeat;
  width: 100%;
  min-height: 300px;
  border-radius: 12px;
}
.register-info {
  padding-left: 150px;
  position: relative;
  z-index: 1;
}
.ball-1 {
  position: absolute;
    width: 400px;
    top: 0;
    left: 0px;
    z-index: 1;
}
.ball-2 {
  position: absolute;
  width: 250px;
  left: 0;
  top: 0;
}
.ball-3 {
  position: absolute;
  width: 400px;
  bottom: 0;
  left: 0;
}
/* ============ Hero (Responsive) ============ */
@media (max-width: 768px) {
  .ball-2, .ball-3 {
    display: none;
  }
  .ball-1 {
    width: 120px;
    right: 0;
    left: auto
  }
  .register-info {
    padding: inherit;
  }
  .hero {
    padding: 60px 0;
  }
  .hero-card {
    padding: 24px;
    border-radius: 12px;
    max-width: 100%;
  }
  .hero-card h1 {
    font-size: 2rem;
    line-height: 1.2;
  }
  .subtitle {
    font-size: 1rem;
    margin-bottom: 16px;
  }
  .hero .countdown {
    gap: 0;
  
  }
  .hero .count {
    min-width: auto;
    width: 100%;
  }
  .btn-play {
    font-size: 16px;
    height: 56px;
    padding: 0;
  }
  .lottery-numbers {
    flex-wrap: wrap;
    gap: 12px;
    margin: 16px auto;
  }
  .lottery-numbers span {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
}
/* ============ Age Verification ============ */
.age-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.age-modal {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  max-width: 320px;
  width: 90%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.age-modal .age-badge {
  display: inline-block;
  background: #e73f3f;
  color: #fff;
  border-radius: 20px;
  line-height: 32px;
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 18px;
  padding: 5px 15px;
}

.age-modal h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  margin-bottom: 24px;
}

.age-buttons {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.age-buttons .btn-primary,
.age-buttons .btn-secondary {
  flex: 1;
  padding: 12px 0;
  font-size: 16px;
  border-radius: 20px;
  cursor: pointer;
  border: none;
}

.age-buttons .btn-primary {
  background: var(--blue);
  color: var(--white);
}

.age-buttons .btn-secondary {
  background: #fff;
  color: var(--blue);
  border: 2px solid var(--blue);
}
