:root {
  --font: 'Inter', sans-serif;
  --color-primary: #FF680A;
  --color-white: #ffffff;
  --color-dark: #212121;
  --bg-light: #EFF5F9;
}
html {
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font);
  background-color: var(--bg-light);
  color: var(--color-dark);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.site-header {
  background-color: var(--color-white);
  padding: 20px 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header .btn {
  width: 104px!important;
  height: 43px;
}
.logo {
  color: var(--color-dark);
  text-decoration: none;
  text-transform: uppercase;
  font-family: Bebas Neue;
  font-weight: 400;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  width: 104px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
}

.hero {
  background: url('../images/hero-bg.webp') center/cover no-repeat;
  padding: 100px 0;
  position: relative;
  overflow-x: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #000000B2;
}

.hero-content {
  position: relative;
  text-align: center;
  color: var(--color-white);
  margin: 0 auto;
  z-index: 1;
}

.hero-content h1 {   
  font-weight: 700;
  font-size: 48px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
}

.subtitle {
  color: var(--color-primary);
  margin: 2rem 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
}

.jackpot-card {
  position: relative;
  background-color: var(--color-white);
  margin: 0 auto;
  border-image-source: linear-gradient(270deg, #ff680a 0%, #FFFFFF 50%, #FF680A 100%);
  border: 2px solid #ff680a;
  max-width: 466px;
  height: auto;
  gap: 32px;
  border-radius: 30px;
  padding: 32px;
  border-width: 2px;
}
.hero-ball-1 {
  position: absolute;
  width: 250px;
  left: -200px;
  top: 0;
  animation: spin 3s linear infinite;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.hero-ball-2 {
  position: absolute;
  width: 131px;
  right: -100px;
  top: 100px;
  animation: spin 5s linear infinite;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.hero-ball-3 {
  position: absolute;
  width: 200px;
  bottom: 0;
  left: 40%;
  z-index: 1;
}
.hero-ball-4 {
  position: absolute;
  width: 200px;
  top: 0;
  left: 50%;
  z-index: 1;
}
.jackpot-info {
  text-align: center;
  margin-bottom: 1.5rem;
}

.jackpot-info .label {
  display: block;
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;

  color: var(--color-dark);
}

.jackpot-info .amount {
 display: block;
 color: var(--color-primary);
 margin: 1rem 0 2px;
 font-weight: 700;
 font-size: 32px;
 line-height: 120%;
 letter-spacing: 0%;
 text-align: center;
 vertical-align: middle;
}

.jackpot-info .draw-date {
  display: block;
  color: #666;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
}

.countdown {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.countdown-item {
 justify-content: center;
 background: #FF680ACC;
 display: flex;
 flex-direction: column;
 align-items: center;
 text-align: center;
 border: 2px solid;
 border-image-source: linear-gradient(270deg, #FF680A 0%, #FFFFFF 50%, #FF680A 100%);
 width: 95px;
 height: 98px;
 gap: 8px;
 border-radius: 30px;
 padding: 16px;
 border-width: 2px;
 border: none;
}

.countdown-item span {
  display: block;
  color: var(--color-white);
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
}

.countdown-item small {
 display: block;
 color: var(--color-white);
 font-weight: 400;
 font-size: 14px;
 line-height: 140%;
 letter-spacing: 0%;
 text-align: center;
 vertical-align: middle;
}

.btn-block {
  display: block;
  width: 100%;
}

.games {
  background-color: var(--bg-light);
  padding: 80px 0;
  text-align: center;
}
.games-header .badge {
  display: inline-block;
  background: #D73535;
  color: #fff;
  border-radius: 30px;
  padding: 6px 12px;
  margin-bottom: 8px;
  font-family: Inter;
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
}
.games-header h2 {
  font-size: 32px;
  margin-bottom: 40px;
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.game-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}
.game-card .icon {
  width: 56px;
}
.game-card .icon img {
  width: 100%;
  height: auto;
}
.game-card h3 {
  font-family: Inter;
  font-weight: 700;
  text-align: left;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: left;
  vertical-align: middle;
  margin: 1rem 0;
}
.numbers {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.numbers li {
  width: 52px;
  height: 52px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--color-dark);
  font-family: Inter;
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
}
.numbers li.highlight {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.features {
  list-style: none;
  text-align: left;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.features li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  font-family: Inter;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0%;
  vertical-align: middle;
}
.features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 16px;
  height: 16px;
  background-image: url('../images/icons/check-orange.svg');
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-50%);
}
.btn-block {
  margin-top: auto;
}
.how-it-works {
  padding: 80px 0;
  background-color: var(--bg-light);
}
.how-it-works h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.step-card {
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.step-card .icon {
  margin: 0 auto 1rem;
  text-align: center;
}
.step-card .icon img {
  width: 100%;
}
.step-number {
  color: var(--color-primary);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.step-title {
  font-family: Inter;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 8px;
  line-height: 120%;
  letter-spacing: 0%;
  vertical-align: middle;
}
.step-desc {
  font-family: Inter;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #555;
  line-height: 1.4;
  flex-grow: 1;
}
.why-choose-us {
  padding: 80px 0;
  background-color: #fff;
}
.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}
.choose-info {
  background: #EFF5F9;
  border-radius: 30px;
  padding: 24px;
}
.choose-info h2 {
  font-size: 32px;
  margin-bottom: 1.5rem;
  text-align: left;
}
.choose-list {
  list-style: none;
  margin-bottom: 1.5rem;
}
.choose-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 1.5rem;
}
.choose-item:last-child {
  border-bottom: none;
  margin-bottom: 2rem;
  padding-bottom: 0;
}
.choose-item .icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
}
.choose-item .icon img {
  width: 100%;
  height: auto;
}
.choose-item h3 {
  font-family: Inter;
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: 0%;
  vertical-align: middle;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.choose-item p {
  font-family: Inter; */
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0%;
  vertical-align: middle;
  line-height: 1.4;
}
.choose-image {
  background-image: url('../images/why-choose.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 16px;
}
.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: stretch; /* вместо center */
}

.choose-info,
.choose-image {
  height: 100%;
}
.choose-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.choose-image img {
  max-height: 100%;
  width: 100%;
  display: block;
  border-radius: 16px;
}
.btn-choose {
  width: 292px!important;
  height: 54px;
  display: flex;
  border-radius: 30px;
  font-family: Inter;
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
}
.register {
  position: relative;
  padding: 80px 0;
  background-color: #fff;
  overflow-x: hidden;
}
.layer-left {
  position: absolute;
  left: 0;
  height: 585px;
}
.layer-right {
  position: absolute;
  right: 0;
  height: 585px;
  z-index: 0;
}
.register-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  background: #FF680ACC;
  border-radius: 30px;
  padding: 32px;
  color: var(--color-white);
  border: 2px solid;
  border-image-source: linear-gradient(270deg, #FF680A 0%, #FFFFFF 50%, #FF680A 100%);
}
.register-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.register-left h2 {
  font-size: 32px;
  margin-bottom: 1rem;
}

.register-subtitle {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-list li {
  position: relative;
  padding-left: 24px;
  font-family: Inter;
  font-weight: 400;
  margin-bottom: 5px;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0%;
  vertical-align: middle;
  list-style: none;
  padding-left: 60px;
}
.feature-list hr {
  height: 1px;
  background: #FFAA76;
  margin-bottom: 1rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 44px;
  height: 44px;
  background-image: url('../images/icons/check.svg');
  background-size: cover;
  background-repeat: no-repeat;
  transform: translateY(-50%);
}
.register-right {
  position: relative;
  background-color: var(--color-white);
  border-radius: 30px;
  padding: 24px;
  color: var(--color-dark);
  box-shadow: 0px 13px 28px 0px #0000001A;
}

.register-right h3 {
  color: var(--color-dark);
  font-size: 32px;
  margin-bottom: 1.5rem;
  text-align: center;
}

#register-form input {
  width: 100%;
  padding: 16px;
  border: 1px solid #ddd;
  border-radius: 30px;
  margin-bottom: 1rem;
  color: #9D9D9D;
  font-family: Inter;
  font-weight: 400;
  font-size: 18px;
  text-align: left;
  line-height: 140%;
  letter-spacing: 0%;
  vertical-align: middle;
}

.password-wrapper {
  position: relative;
}
.password-wrapper .toggle-password {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
}

.btn-block {
  margin-top: 1rem;
  width: 402px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  padding-left: 32px;
  background: linear-gradient(270deg, #ff7800, #ffd100, #ff4a00, #ff7800);
  background-size: 400% 400%;
  background-position: 0% 50%;
  background-repeat: no-repeat;
  border: none;
  border-radius: 50px;
  color: var(--color-white);

  animation: gradientShift 5s ease infinite;
}
@keyframes gradientShift {
  0%   { background-position:   0% 50%; }
  25%  { background-position:  50% 50%; }
  50%  { background-position: 100% 50%; }
  75%  { background-position:  50% 50%; }
  100% { background-position:   0% 50%; }
}
.btn-primary {
  width: 100%;
  max-width: 100%;
  z-index: 2;
  position: relative;
}
.disclaimer {
  font-size: 0.75rem;
  color: #666;
  text-align: center;
  margin-top: 1rem;
}
.disclaimer a {
  color: var(--color-primary);
}
.responsible-gambling {
  padding: 80px 0;
  background-color: var(--color-white);
}
.responsible-gambling h2 {
  font-size: 32px;
  text-align: left;
  margin-bottom: 2rem;
}
.responsible-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.responsible-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.responsible-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.logo-item {
  background-color: var(--bg-light);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-item img {
  max-width: 100%;
  height: auto;
}
.site-footer {
  background: #212121;
  color: #ddd;
}
.footer-top {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  padding: 60px 0;
  flex-wrap: wrap;
}
.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-logo .badge {
  width: fit-content;
  display: inline-block;
  background: #D73535;
  color: #fff;
  border-radius: 30px;
  padding: 6px 12px;
  margin-bottom: 8px;
  font-family: Inter;
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
}
.footer-logo .logo {
  font-family: var(--font);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
.footer-nav {
  display: flex;
  gap: 2rem;
}
.footer-col h4 {
  font-size: 20px;
  margin-bottom: 1rem;
  color: #fff;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 0.5rem;
}
.footer-col a {
  color: #ddd;
  text-decoration: none;
  font-size: 16px;
}
.footer-col a:hover {
  color: #fff;
}
.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-newsletter h4 {
  font-size: 1rem;
  color: #fff;
}
.footer-newsletter form {
  display: flex;
  gap: 0.5rem;
}
.footer-newsletter input {
  flex-grow: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 50px;
  max-width: 240px;
}
.footer-newsletter button {
  border-radius: 50px;
  max-width: 150px;
}
.footer-bottom {
  border-top: 1px solid #333;
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: #555;
}
/* Responsive columns for mobile */
@media (max-width: 768px) {
  .hero-ball-3 {
    width: 150px;
    left: -30px;
  }
  .hero-ball-4 {
    width: 150px;
    top: -20px;
  }
  .responsible-content {
    grid-template-columns: 1fr !important;
  }
  .responsible-logos {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 768px) {
  .site-footer .footer-top {
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
    gap: 50px;
  }

  /* Центрируем логотип и подписку, а колонки навигации оставляем выровненными по левому краю */
  .site-footer .footer-logo,
  .site-footer .footer-newsletter {
    justify-self: center;
    width: 100%;
  }
  .site-footer .footer-col {
    justify-self: start;
  }

  /* Подправим отступы внутри колонок */
  .site-footer .footer-col ul {
    margin-bottom: 0;
  }
}
.cookie-policy,
.privacy-policy,
.terms {
  background-color: #fff;
  padding: 80px 0;
}

.cookie-policy .container,
.privacy-policy .container,
.terms .container {
  width: 90%;
  margin: 0 auto;
}

.cookie-policy h1,
.privacy-policy h1,
.terms h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.cookie-policy h2,
.privacy-policy h2,
.terms h2 {
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--color-dark);
}

.cookie-policy h3,
.privacy-policy h3,
.terms h3 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-dark);
}

.cookie-policy p,
.privacy-policy p,
.terms p,
.cookie-policy li,
.privacy-policy li,
.terms li {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-dark);
  margin-bottom: 1rem;
}

.cookie-policy ul,
.privacy-policy ul,
.terms ul {
  list-style: disc;
  padding-left: 1.5em;
  margin-bottom: 1.5rem;
}

.cookie-policy table,
.privacy-policy table,
.terms table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.cookie-policy th,
.cookie-policy td,
.privacy-policy th,
.privacy-policy td,
.terms th,
.terms td {
  border: 1px solid #ddd;
  padding: 0.75rem;
  text-align: left;
  font-size: 0.95rem;
}

.cookie-policy th,
.privacy-policy th,
.terms th {
  background-color: #f5f5f5;
}

.cookie-policy a,
.privacy-policy a,
.terms a {
  color: var(--color-primary);
  text-decoration: none;
}
.cookie-policy a:hover,
.privacy-policy a:hover,
.terms a:hover {
  text-decoration: underline;
}
#age-verification {
  position: fixed;
  inset: 0;
  background: #000000E5;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.age-popup-content {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  max-width: 320px;
  width: 90%;
}
.age-badge {
  display: inline-block;
  background: #e63946;
  color: #fff;
  font-size: 20px;
  padding: 4px 8px;
  border-radius: 30px;
  margin-bottom: 1rem;
}
.age-popup-content h2 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}
.age-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.age-buttons .btn {
  flex: 1;
  padding: 0.75rem;
  border-radius: 50px;
  font-weight: 600;
  border: 1px solid ;
  font-size: 16px;
}
.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}