
    :root {
      --primary-color: #007bff;
      --secondary-color: #28a745;
      --dark-bg: #1a1a1a;
      --light-text: #f8f9fa;
      --card-bg: #2c2c2c;
      --border-color: #444;
      --text-color: #ddd;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Roboto', sans-serif;
      background-color: var(--dark-bg);
      color: var(--light-text);
      line-height: 1.6;
    }

    a {
      color: var(--primary-color);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    a:hover {
      color: var(--secondary-color);
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    .btn-main {
      display: inline-block;
      padding: 0.75rem 2rem;
      border-radius: 50px;
      font-weight: 600;
      text-align: center;
      transition: transform 0.3s ease, background-color 0.3s ease;
    }

    .btn-primary {
      background-color: var(--primary-color);
      color: var(--light-text);
    }

    .btn-secondary {
      background-color: var(--secondary-color);
      color: var(--light-text);
    }

    .btn-main:hover {
      transform: translateY(-3px);
      opacity: 0.9;
    }

    /* Modal */
    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.8);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1000;
      backdrop-filter: blur(5px);
    }

    .modal-dialog {
      background: var(--card-bg);
      padding: 2rem;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
      width: 90%;
      max-width: 400px;
    }

    .modal-dialog h3 {
      margin-bottom: 1rem;
    }

    .modal-buttons {
      display: flex;
      justify-content: center;
      gap: 1rem;
    }

    /* Header */
    .app-header {
      background: rgba(0, 0, 0, 0.4);
      padding: 1rem 0;
      position: absolute;
      width: 100%;
      z-index: 10;
      backdrop-filter: blur(10px);
    }

    .app-header .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .app-logo {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 1.8rem;
      color: var(--light-text);
      text-transform: uppercase;
    }

    /* Hero Section */
.showcase {
  position: relative;
  padding-top: 150px;
  min-height: 100vh; /* Использование min-height для лучшей адаптации */
  display: flex;
  align-items: center;
  justify-content: center; /* Центрирование контента по горизонтали */
  text-align: center;
  background: url('../images/s-2.jpg') no-repeat center center/cover;
  color: var(--light-text);
  overflow: hidden; /* Предотвращаем горизонтальную прокрутку */
}

.showcase-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Чуть более тёмный оверлей для лучшей читаемости */
  z-index: 1;
}

.showcase .container {
  position: relative;
  z-index: 2;
  padding: 1rem; /* Добавляем отступы для мобильных устройств */
}

.showcase-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem; /* Увеличенные отступы */
  background: rgba(13, 13, 13, 0.85); /* Более тёмный фон для лучшего контраста */
  border-radius: 15px;
  backdrop-filter: blur(5px); /* Эффект "замороженного стекла" */
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.5s ease-out, box-shadow 0.5s ease;
}

.showcase-content:hover {
  transform: translateY(-5px); /* Легкий эффект при наведении */
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.showcase-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 5vw, 4rem); /* Адаптивный размер шрифта */
  font-weight: 800; /* Более жирный шрифт */
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.showcase-content .subtitle {
  font-size: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: 2rem;
  color: #c0c0c0;
}

.showcase-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.reward-display {
  text-align: center; /* Центрируем содержимое на мобильных устройствах */
}

.reward-label {
  font-size: 1.2rem;
  color: var(--secondary-color);
  font-weight: 600;
  text-transform: uppercase;
}

.reward-value {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--light-text);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-top: 0.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  transition: color 0.3s ease;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 1.5rem; /* Увеличенный зазор между блоками */
}

.timer-unit {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  min-width: 60px;
  transition: transform 0.3s ease;
}

.timer-unit:hover {
  transform: translateY(-5px);
}

.timer-number {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--secondary-color);
}

.timer-label {
  font-size: 0.75rem;
  color: #999;
  text-transform: uppercase;
  margin-top: 0.25rem;
  font-weight: 500;
}

.btn-main {
  margin-top: 2rem;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--dark-text);
  box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.btn-main:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 165, 0, 0.6);
}

.winning-numbers {
  display: flex;
  justify-content: center;
  gap: 0.75rem; /* Увеличенный зазор между кругами */
  margin-top: 2rem;
  flex-wrap: wrap; /* Для мобильной адаптации */
}

.winning-numbers span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--light-text);
  font-weight: 700;
  font-size: 1.2rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.winning-numbers span.highlight {
  background: var(--secondary-color);
  border-color: #fff;
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .showcase-info {
    flex-direction: column;
    gap: 2rem;
  }
}

    /* Game Selection */
    .game-selection {
      padding: 4rem 0;
    }

    .game-selection-header {
      text-align: center;
      margin-bottom: 3rem;
    }
    
    .game-selection-header h2 {
      font-family: 'Montserrat', sans-serif;
      font-size: 2.5rem;
      margin-bottom: 0.5rem;
    }

    .game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }

    .game-card {
      background: var(--card-bg);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .card-header {
      padding: 1.5rem;
      text-align: center;
    }

    .game-title {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
    }

    .game-numbers {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
    }

    .game-numbers span {
      width: 35px;
      height: 35px;
      background: var(--dark-bg);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
    }

    .card-body {
      padding: 1rem 1.5rem;
      list-style: none;
      flex-grow: 1;
    }

    .card-body li {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 0.5rem 0;
      color: var(--text-color);
    }

    .card-body li img {
      width: 24px;
      height: 24px;
    }

    .card-footer {
      padding: 1.5rem;
      text-align: center;
    }

    /* Key Benefits */
    .key-benefits {
      background-color: var(--card-bg);
      padding: 4rem 0;
    }

    .benefit-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      text-align: center;
    }
    
    .benefit-card h2 {
      font-size: 1.5rem;
      margin: 1rem 0 0.5rem;
    }

    .icon-wrapper {
      width: 80px;
      height: 80px;
      background: var(--dark-bg);
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .icon-wrapper img {
      width: 48px;
    }

    /* How It Works */
    .how-it-works {
      padding: 4rem 0;
    }

    .how-it-works-content {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      align-items: center;
      text-align: center;
    }

    @media (min-width: 768px) {
      .how-it-works-content {
        grid-template-columns: 1fr 1fr;
        text-align: left;
      }
      .how-it-works-visual {
        order: 1;
      }
      .how-it-works-steps {
        order: 0;
      }
    }

    .how-it-works h2 {
      font-family: 'Montserrat', sans-serif;
      font-size: 2.5rem;
      margin-bottom: 2rem;
    }

    .step-list {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .step-item {
      display: flex;
      gap: 1.5rem;
      align-items: flex-start;
    }

    .step-number {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--primary-color);
      width: 40px;
      height: 40px;
      border: 2px solid var(--primary-color);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .step-content h4 {
      font-size: 1.25rem;
      margin-bottom: 0.25rem;
    }
    
    /* Registration Section */
    .account-creation {
      padding: 4rem 0;
      background: var(--card-bg);
      position: relative;
      overflow: hidden;
    }

    .account-creation-container {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    @media (min-width: 768px) {
      .account-creation-container {
        flex-direction: row;
        text-align: left;
      }
      .account-creation-info {
        flex: 1;
      }
      .account-creation-form {
        flex: 1;
        max-width: 450px;
      }
    }

    .account-creation h2 {
      font-family: 'Montserrat', sans-serif;
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .account-creation p {
      color: var(--text-color);
    }
    
    .registration-form {
      padding: 2rem;
      background: var(--dark-bg);
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      width: 100%;
    }

    .registration-form input {
      width: 100%;
      padding: 1rem;
      margin-bottom: 1rem;
      border-radius: 6px;
      border: 1px solid var(--border-color);
      background: #333;
      color: var(--light-text);
      font-family: 'Roboto', sans-serif;
    }

    .registration-form input::placeholder {
      color: #999;
    }

    .password-wrapper {
      position: relative;
    }

    .toggle-password-btn {
      position: absolute;
      top: 50%;
      right: 15px;
      transform: translateY(-50%);
      background: transparent;
      border: none;
      color: #ccc;
      cursor: pointer;
      font-size: 1.2rem;
    }
    
    .notification-success {
      padding: 1rem;
      background-color: #d4edda;
      color: #155724;
      border-radius: 6px;
      margin-bottom: 1rem;
      text-align: center;
      font-weight: 500;
    }

    /* --- Footer --- */
.app-footer {
  background: #0d0d0d;
  padding: 3rem 1rem; /* Added horizontal padding for mobile */
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr; /* Stack columns on mobile */
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.footer-section h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--light-text);
  font-family: 'Montserrat', sans-serif;
}

.footer-section a {
  display: block;
  color: var(--text-color);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-color);
}

.footer-brand .age-stamp {
  font-weight: 700;
  color: var(--light-text);
  border: 2px solid var(--light-text);
  padding: 0.25rem 0.5rem;
  display: inline-block;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.newsletter-form {
  display: flex;
  margin-top: 1rem;
}

.newsletter-form input {
  padding: 0.75rem;
  border-radius: 6px 0 0 6px;
  border: none;
  background: #333;
  color: var(--light-text);
  flex: 1;
}

.newsletter-form button {
  padding: 0.75rem 1.25rem;
  background-color: var(--primary-color);
  color: var(--light-text);
  border: none;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
}

.footer-bottom-info {
  padding: 2rem 1rem 0; /* Adjusted padding for better mobile layout */
  text-align: center;
}

.legal-text,
.support-contact {
  font-size: 0.8rem; /* Made the font size slightly larger for better readability */
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.responsible-gaming-title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.responsible-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap; /* Allows logos to wrap to the next line */
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.logo-item {
  flex-basis: 80px; /* Gives logos a consistent base size */
  max-width: 100px;
}

.logo-item img {
  width: 100%;
  height: auto;
}

.copyright {
  font-size: 0.8rem;
  color: #777;
  margin-top: 2rem;
}

/* --- Desktop Adaptations --- */
@media (min-width: 768px) {
  .app-footer {
    padding: 3rem 0;
  }

  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Use original grid for larger screens */
  }

  .footer-bottom-info {
    padding-top: 2rem;
  }

  .responsible-logos {
    gap: 2rem; /* Wider gap on desktop */
  }
}


.age-stamp {
  background: red;
  padding: 10px;
  border-radius: 20px;
}

/* --- Policy Page Content --- */
.main-content {
  padding: 4rem 0; /* Отступы для секции */
  background: #111;
  color: #fff;
  padding-top: 150px;
}

.policy-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem; /* Горизонтальные отступы для мобильных устройств */
}

.policy-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-align: center;
}

.policy-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-text {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #c0c0c0;
  margin-bottom: 1rem;
}

.policy-list {
  list-style-type: none; /* Убираем стандартные маркеры */
  padding-left: 0;
}

.policy-list li {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #c0c0c0;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.policy-list li:before {
  content: "•"; /* Используем кастомный маркер */
  color: var(--primary-color);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1.5em;
}

/* Стили для ссылок в тексте, если они появятся */
.policy-text a {
  color: var(--secondary-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.policy-text a:hover {
  color: #fff;
}

/* Медиа-запрос для адаптации на маленьких экранах */
@media (max-width: 768px) {
  .policy-title {
    font-size: 2rem;
  }

  .policy-subtitle {
    font-size: 1.3rem;
  }
}