@charset "UTF-8";
@font-face {
  font-family: "Lora";
  font-display: swap;
  src: url(../fonts/Lora.woff2) format("woff2"), url(../fonts/Lora.woff) format("woff");
  font-style: normal;
}
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
:after,
:before {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
html {
  height: 100%;
  min-width: 320px;
}

body {
  color: #000;
  background-color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  font-family: "Lora";
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button,
input,
textarea {
  font-family: "Lora";
  font-size: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: inherit;
}

a {
  color: inherit;
}

a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

.lock body {
  overflow: hidden;
  touch-action: none;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.wrapper > main {
  flex: 1 1 auto;
}

[class*=__container] {
  max-width: 1400px;
  box-sizing: content-box;
  margin: 0 auto;
  padding-inline: 15px;
}

[class*=__title] {
  font-weight: 700;
  font-family: "Lora";
  font-size: clamp(1.563rem, 0.988rem + 2.87vw, 3.5rem);
}

section {
  padding-block: clamp(1.875rem, 1.339rem + 2.381vw, 3.125rem);
}

img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

a {
  transition: color 0.3s ease 0s;
}

.anim {
  opacity: 0;
  transition: opacity 1s ease 0s;
}
.anim.animate {
  opacity: 1;
}

/* --- NEW DESIGN SYSTEM: "AETHER" --- */
/* A calm, airy, and structured design inspired by dreams and blueprints. */
:root {
  /* Color Palette: Soft, cool, and focused */
  --color-background: #F4F7FC;
  --color-surface: #FFFFFF;
  --color-primary: #4C51BF;
  --color-primary-light: #dbeafe;
  --color-text-primary: #1A202C;
  --color-text-secondary: #4A5568;
  --color-border: #E2E8F0;
  /* Spacing & Effects */
  --spacing-unit: 1rem;
  --border-radius: 12px;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -4px rgba(0, 0, 0, 0.07);
}

/* --- Global & Body --- */
body {
  background-color: var(--color-background);
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--spacing-unit);
}

.mobile-menu-open,
.panel-is-open {
  overflow: hidden;
}

/* --- Typography --- */
h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.3;
  font-weight: 600;
}

h1 {
  font-size: 3.25rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

.section-title {
  text-align: center;
  margin-bottom: calc(var(--spacing-unit) * 3);
}

/* --- Buttons --- */
.button-primary {
  display: inline-block;
  /* Ensure it's a block-level element for consistent padding */
  background-color: var(--color-primary);
  color: white;
  padding: calc(var(--spacing-unit) * 1) calc(var(--spacing-unit) * 2.5);
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-sm);
  border: none;
  cursor: pointer;
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: white;
}

.button-secondary {
  display: inline-block;
  font-weight: 500;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: 8px 16px;
  border-radius: 50px;
}

.button-secondary:hover {
  background: #cdd1f9;
}

/* --- Header & Navigation --- */
.site-header {
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
  padding: var(--spacing-unit) 0;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
  flex-shrink: 0;
  /* Prevent logo from shrinking */
}

.header-nav {
  display: flex;
  gap: calc(var(--spacing-unit) * 1.5);
}

.header-nav a {
  color: var(--color-text-secondary);
  font-weight: 500;
  transition: color 0.2s;
}

.header-nav a:hover {
  color: var(--color-primary);
}

.dream-board-trigger {
  display: flex;
  align-items: center;
  gap: calc(var(--spacing-unit) * 0.75);
  background-color: var(--color-primary);
  color: white;
  padding: calc(var(--spacing-unit) * 0.5) calc(var(--spacing-unit) * 1);
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.2s;
}

.dream-board-trigger:hover {
  background-color: #3c42a0;
}

.dream-board-counter {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 2px 8px;
  font-size: 0.9rem;
}

/* Burger menu is defined in the responsive section */
.burger-menu-trigger {
  display: none;
}

.launchpad-hero {
  text-align: center;
}

.launchpad-hero .main-title {
  margin-bottom: var(--spacing-unit);
}

.launchpad-hero .subtitle {
  font-size: 1.25rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.launchpad-hero .cta-wrapper {
  margin-top: calc(var(--spacing-unit) * 2.5);
}

/* Card Styles */
.spotlight-card,
.feature-card {
  background-color: var(--color-surface);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  padding: calc(var(--spacing-unit) * 2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.spotlight-card:hover,
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.08);
}

.spotlight-card {
  display: grid;
  grid-template-columns: 2fr 1.5fr auto auto;
  align-items: center;
  gap: calc(var(--spacing-unit) * 2);
}

.spotlight-card .game-name {
  font-size: 1.5rem;
  font-weight: 600;
}

.spotlight-card .jackpot-amount {
  font-size: 2rem;
  color: var(--color-primary);
  font-weight: 700;
}

.jackpot-label,
.draw-label,
.game-tagline {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(var(--spacing-unit) * 2);
}

.feature-card h3 {
  margin-bottom: calc(var(--spacing-unit) * 0.5);
}

/* Commitment & Testimonial Sections */
.commitment-section {
  background-color: var(--color-surface);
  border-radius: var(--border-radius);
}

.commitment-content {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.commitment-content h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-unit);
}

.commitment-content ul {
  list-style: none;
  padding: 0;
  margin-top: calc(var(--spacing-unit) * 2);
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

.commitment-content li {
  margin-bottom: var(--spacing-unit);
  padding-left: calc(var(--spacing-unit) * 2);
  position: relative;
}

.commitment-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.testimonial-section blockquote {
  margin: 0 auto;
  max-width: 600px;
  text-align: center;
  border: none;
  padding: 0;
}

.testimonial-section blockquote p {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-text-primary);
}

.testimonial-section cite {
  display: block;
  margin-top: var(--spacing-unit);
  color: var(--color-text-secondary);
  font-style: normal;
}

/* --- Pre-Footer & Footer --- */
.pre-footer {
  background-color: var(--color-surface);
}

.pre-footer .container {
  padding-top: calc(var(--spacing-unit) * 4);
  padding-bottom: calc(var(--spacing-unit) * 4);
}

.pre-footer-content {
  display: flex;
  justify-content: space-between;
  gap: calc(var(--spacing-unit) * 3);
}

.pre-footer-block {
  flex: 1;
  min-width: 200px;
}

.pre-footer-block h4 {
  margin-bottom: var(--spacing-unit);
  color: var(--color-text-primary);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: calc(var(--spacing-unit) * 0.75);
}

.footer-nav a,
.contact-email {
  color: var(--color-text-secondary);
  transition: color 0.2s;
}

.footer-nav a:hover,
.contact-email:hover {
  color: var(--color-primary);
}

.contact-email {
  font-weight: 500;
}

.site-footer {
  background-color: var(--color-background);
  border-top: 1px solid var(--color-border);
}

.site-footer .footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-unit) var(--spacing-unit);
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: calc(var(--spacing-unit) * 0.75);
}

.footer-legal a {
  color: var(--color-text-secondary);
}

.footer-meta {
  display: flex;
  gap: var(--spacing-unit);
}

/* --- Dream Board Panel (Off-canvas) --- */
/* This section remains largely the same as it's an overlay */
.site-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}

.site-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

.dream-board-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background-color: var(--color-surface);
  z-index: 101;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s ease-in-out;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.dream-board-panel.is-active {
  transform: translateX(0);
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-unit) calc(var(--spacing-unit) * 1.5);
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}

.panel-header h2 {
  font-size: 1.5rem;
}

.close-panel-btn {
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--color-text-secondary);
  cursor: pointer;
}

.panel-content {
  padding: calc(var(--spacing-unit) * 1.5);
  flex-grow: 1;
  overflow-y: auto;
}

.dream-board-empty {
  text-align: center;
  padding: calc(var(--spacing-unit) * 3) 0;
  color: var(--color-text-secondary);
}

.panel-footer {
  padding: calc(var(--spacing-unit) * 1.5);
  background-color: var(--color-background);
  border-top: 1px solid var(--color-border);
  flex-shrink: 0;
}

.panel-footer h3 {
  margin-bottom: var(--spacing-unit);
  text-align: center;
}

.form-group {
  margin-bottom: var(--spacing-unit);
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: calc(var(--spacing-unit) / 4);
}

.form-group input[type=text],
.form-group input[type=email] {
  width: 100%;
  padding: calc(var(--spacing-unit) * 0.75);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background-color: #fff;
  box-sizing: border-box;
}

.form-group-checkbox {
  display: flex;
  align-items: center;
  gap: calc(var(--spacing-unit) / 2);
  margin-bottom: calc(var(--spacing-unit) * 1.5);
}

.form-group-checkbox label {
  margin-bottom: 0;
  font-size: 0.875rem;
}

.panel-footer .button-primary {
  width: 100%;
}

.submission-success {
  display: none;
  text-align: center;
  padding: var(--spacing-unit);
  background-color: var(--color-primary-light);
  border-radius: var(--border-radius);
}

/******************************************************
 *                                                    *
 *               RESPONSIVE STYLES                    *
 *                                                    *
 ******************************************************/
/* --- Tablet and below (e.g., iPads, large phones) --- */
@media (max-width: 992px) {
  /* Burger Menu Logic */
  .header-nav {
    display: none;
  }
  .burger-menu-trigger {
    display: block;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1001;
  }
  .burger-menu-trigger span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--color-text-primary);
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
  }
  .burger-menu-trigger.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .burger-menu-trigger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .burger-menu-trigger.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .header-right-panel {
    position: absolute;
    top: 100%;
    /* Position right below the header */
    left: 0;
    right: 0;
    background-color: var(--color-surface);
    padding: var(--spacing-unit);
    border-bottom: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-unit);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
  }
  .header-right-panel.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .header-right-panel .header-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-unit);
    width: 100%;
  }
  .header-right-panel .header-nav a {
    padding: calc(var(--spacing-unit) / 2);
  }
  .header-right-panel .dream-board-trigger {
    width: 100%;
    justify-content: center;
    padding: var(--spacing-unit);
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    font-weight: 600;
  }
  .header-right-panel .dream-board-trigger .dream-board-counter {
    background-color: var(--color-primary);
    color: white;
  }
  /* General Layout Adjustments */
  .features-grid {
    grid-template-columns: 1fr;
    /* Stack the 3 columns */
  }
  .spotlight-card {
    grid-template-columns: 1fr;
    /* Stack spotlight card content */
    text-align: center;
    gap: var(--spacing-unit);
    /* Reduce gap for stacked layout */
  }
  .pre-footer-content {
    flex-direction: column;
    /* Stack footer columns */
    align-items: flex-start;
    /* Align to the left for a cleaner look */
    gap: calc(var(--spacing-unit) * 2.5);
  }
}
/* --- Mobile phones --- */
@media (max-width: 576px) {
  /* Adjust typography for small screens */
  h1 {
    font-size: 2.25rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  .launchpad-hero .subtitle {
    font-size: 1.1rem;
  }
  .testimonial-section blockquote p {
    font-size: 1.25rem;
  }
  /* Adjust container padding */
  .container {
    padding: 0 calc(var(--spacing-unit) * 1.5);
  }
  /* Tweak specific elements */
  .spotlight-card .jackpot-amount {
    font-size: 1.75rem;
  }
  .site-footer .footer-container {
    flex-direction: column;
    /* Stack copyright and legal links */
    gap: calc(var(--spacing-unit) * 0.5);
    text-align: center;
  }
  .footer-meta {
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 0.25);
  }
  /* Adjust panel for full-width on mobile */
  .dream-board-panel {
    max-width: 100%;
  }
}
/* ... весь предыдущий код до медиа-запросов ... */
/* ======================================================
   ==   STYLES FOR "SELECT YOUR GAME" PAGE   ==
   ====================================================== */
/* --- Page Intro Section --- */
.page-intro-section {
  text-align: center;
}

.step-indicator {
  display: inline-block;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--spacing-unit);
}

.page-title {
  font-size: 3rem;
  margin-bottom: calc(var(--spacing-unit) * 0.5);
}

.page-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-secondary);
  max-width: 550px;
  margin: 0 auto;
}

/* --- Game Selection Grid --- */
.game-selection-grid {
  /* Основная секция с карточками */
}

.grid-container {
  display: grid;
  /* Создаем отзывчивую сетку: минимум 280px на колонку, 
     автоматически заполняет доступное пространство */
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: calc(var(--spacing-unit) * 2);
}

/* --- Game Card Styling --- */
.game-card {
  background-color: var(--color-surface);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.08);
}

.game-card .card-header {
  padding: calc(var(--spacing-unit) * 1.5);
}

.game-card .game-title {
  font-size: 1.75rem;
  color: var(--color-text-primary);
}

.game-card .game-tagline {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
}

.game-card .card-body {
  padding: calc(var(--spacing-unit) * 2);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  flex-grow: 1; /* Позволяет этому блоку растягиваться, выравнивая футеры */
}

.game-card .jackpot-label {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  margin-bottom: calc(var(--spacing-unit) * 0.25);
}

.game-card .jackpot-amount {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.1;
  margin-bottom: var(--spacing-unit);
  font-family: var(--font-mono); /* Используем моноширинный шрифт для цифр */
}

.game-card .draw-info {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
}

.game-card .card-footer {
  padding: calc(var(--spacing-unit) * 1.5);
}

/* --- Disabled Button State --- */
.button-primary.is-disabled {
  background-color: #E2E8F0; /* a light grey from our palette */
  color: #A0AEC0; /* a muted grey */
  pointer-events: none; /* Disables clicks */
  box-shadow: none;
  transform: none;
}

/******************************************************
 *                                                    *
 *               RESPONSIVE STYLES                    *
 *                                                    *
 ******************************************************/
/* --- Tablet and below (e.g., iPads, large phones) --- */
@media (max-width: 992px) {
  /* ... (существующие стили) ... */
}
/* --- Mobile phones --- */
@media (max-width: 576px) {
  /* ... (существующие стили) ... */
  /* Уточняем стили для заголовков на новых страницах */
  .page-title {
    font-size: 2rem;
  }
  .page-subtitle {
    font-size: 1rem;
  }
  .game-card .jackpot-amount {
    font-size: 2rem;
  }
}
/* ... весь предыдущий код до медиа-запросов ... */
/* ======================================================
   ==   STYLES FOR "DEFINE YOUR NUMBERS" PAGE  ==
   ====================================================== */
/* --- Main Number Selector Container --- */
.number-selector-container {
  background-color: var(--color-surface);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  padding: calc(var(--spacing-unit) * 2);
}

.number-group {
  margin-bottom: calc(var(--spacing-unit) * 3);
}

.number-group:last-of-type {
  margin-bottom: 0;
}

.group-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--spacing-unit);
  flex-wrap: wrap; /* Для адаптивности */
  gap: calc(var(--spacing-unit) / 2);
}

.group-header h3 {
  font-size: 1.25rem;
}

.group-header h3 small {
  font-size: 1rem;
  color: var(--color-text-secondary);
  font-weight: 400;
}

.selection-counter {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  font-family: var(--font-mono);
}

/* --- Number Grid and Number Buttons --- */
.number-grid {
  display: grid;
  /* Сетка 7 колонок для основных номеров */
  grid-template-columns: repeat(7, 1fr);
  gap: calc(var(--spacing-unit) * 0.75);
}

.number-grid.powerball-grid {
  /* Сетка 10 колонок для Powerball, чтобы выглядело компактнее */
  grid-template-columns: repeat(10, 1fr);
}

.number-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 1/1; /* Делает кнопку идеальным кругом */
  background-color: var(--color-background);
  border: 2px solid var(--color-border);
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.number-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.number-btn.is-selected {
  background-color: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
  transform: scale(1.05);
}

.number-btn.is-disabled {
  /* Для случаев, когда выбрано макс. количество номеров */
  opacity: 0.5;
  cursor: not-allowed;
}

/* --- Selector Actions Panel --- */
.selector-actions {
  margin-top: calc(var(--spacing-unit) * 2);
  padding-top: calc(var(--spacing-unit) * 2);
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-unit);
}

.auto-actions {
  display: flex;
  gap: var(--spacing-unit);
}

.clear-btn {
  background: #f1f2f5;
  color: var(--color-text-secondary);
}

.clear-btn:hover {
  background: #e2e5e9;
}

.submit-action {
  display: flex;
  align-items: center;
  gap: var(--spacing-unit);
}

/* --- Disabled state for the main "Add" button --- */
.button-primary:disabled {
  background-color: #E2E8F0;
  color: #A0AEC0;
  pointer-events: none;
  box-shadow: none;
  transform: none;
  cursor: not-allowed;
}

.add-success-msg {
  color: var(--color-primary);
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.add-success-msg.is-visible {
  opacity: 1;
}

/* --- Informational Sections --- */
.how-to-play-section .info-card {
  background-color: var(--color-surface);
  border-radius: var(--border-radius);
  padding: calc(var(--spacing-unit) * 2);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.info-card h2 {
  margin-bottom: var(--spacing-unit);
}

/* --- Prize Table Styling --- */
.prize-divisions-section h2 {
  text-align: center;
  margin-bottom: var(--spacing-unit);
}

.table-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--color-surface);
  border-radius: var(--border-radius);
  overflow: hidden; /* Чтобы скругленные углы работали с таблицей */
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

th, td {
  padding: calc(var(--spacing-unit) * 1);
  border-bottom: 1px solid var(--color-border);
}

thead {
  background-color: var(--color-background);
}

th {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  text-transform: uppercase;
}

tbody tr:last-child td {
  border-bottom: none;
}

td:first-child {
  font-weight: 600;
}

/******************************************************
 *               RESPONSIVE STYLES                    *
 ******************************************************/
/* --- Tablet and below --- */
@media (max-width: 992px) {
  /* ... (существующие стили) ... */
  .number-grid {
    gap: calc(var(--spacing-unit) * 0.5);
  }
}
/* --- Mobile phones --- */
@media (max-width: 576px) {
  /* ... (существующие стили) ... */
  /* Адаптация сеток с номерами */
  .number-grid {
    grid-template-columns: repeat(5, 1fr); /* 5 колонок для основных номеров */
  }
  .number-grid.powerball-grid {
    grid-template-columns: repeat(5, 1fr); /* 5 колонок и для Powerball */
  }
  /* Адаптация панели действий */
  .selector-actions {
    flex-direction: column; /* Складываем все в колонку */
    align-items: stretch; /* Растягиваем на всю ширину */
  }
  .auto-actions {
    justify-content: center; /* Центрируем кнопки */
  }
  .submit-action {
    flex-direction: column;
  }
  .submit-action .button-primary {
    width: 100%; /* Кнопка добавления на всю ширину */
  }
  /* Делаем таблицу горизонтально прокручиваемой */
  .table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* Плавный скролл на iOS */
  }
}
/* ... весь предыдущий код до медиа-запросов ... */
/* ======================================================
   ==   STYLES FOR "JACKPOT OBSERVATORY" PAGE  ==
   ====================================================== */
/* --- Observatory Grid Layout --- */
.observatory-grid {
  display: grid;
  /* Адаптивная сетка, минимум 300px на виджет */
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: calc(var(--spacing-unit) * 2);
}

/* --- Jackpot Widget Styling --- */
.jackpot-widget {
  background-color: var(--color-surface);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  overflow: hidden; /* Важно для дочерних элементов */
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.jackpot-widget:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.08);
}

.widget-header {
  padding: var(--spacing-unit) calc(var(--spacing-unit) * 1.5);
  border-bottom: 1px solid var(--color-border);
}

.widget-header h3 {
  font-size: 1.25rem;
  margin: 0;
}

.widget-body {
  padding: calc(var(--spacing-unit) * 1.5);
  text-align: center;
  flex-grow: 1; /* Чтобы футеры выравнивались */
}

.widget-jackpot-amount {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.1;
  margin-bottom: calc(var(--spacing-unit) * 0.25);
}

.widget-jackpot-amount.special-prize {
  font-size: 1.75rem; /* Меньший шрифт для приза "в месяц" */
}

.widget-draw-date {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin-bottom: calc(var(--spacing-unit) * 2);
}

/* --- SVG Graph Styling --- */
.widget-graph {
  width: 100%;
}

.graph-label {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.graph-svg {
  width: 100%;
  height: 40px; /* Фиксированная высота для консистентности */
  margin-top: calc(var(--spacing-unit) * 0.5);
}

.graph-svg path {
  fill: none;
  stroke: var(--color-primary);
  stroke-opacity: 0.8;
}

.widget-footer {
  background-color: var(--color-background);
  padding: var(--spacing-unit);
  text-align: center;
  border-top: 1px solid var(--color-border);
}

.widget-footer .button-secondary {
  width: 100%;
}

/******************************************************
 *               RESPONSIVE STYLES                    *
 ******************************************************/
/* --- Tablet and below --- */
@media (max-width: 992px) {
  /* ... (существующие стили) ... */
}
/* --- Mobile phones --- */
@media (max-width: 576px) {
  /* ... (существующие стили) ... */
  /* Уменьшаем размер шрифта джекпота на мобильных */
  .widget-jackpot-amount {
    font-size: 2rem;
  }
  .widget-jackpot-amount.special-prize {
    font-size: 1.5rem;
  }
  /* Делаем сетку с одним виджетом в ряд, если они слишком узкие */
  .observatory-grid {
    grid-template-columns: 1fr;
  }
}
/* ... весь предыдущий код до медиа-запросов ... */
/* ======================================================
   ==   STYLES FOR "JACKPOT OBSERVATORY" PAGE (EXPANDED)  ==
   ====================================================== */
/* --- Jackpot Widget Header --- */
/* Улучшаем существующий стиль, чтобы разместить тег */
.widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* --- Новый тег в виджете --- */
.widget-tag {
  background-color: var(--color-primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 50px;
}

/* --- Выделение виджета --- */
/* Добавим рамку для "рекомендуемого" виджета */
.jackpot-widget.featured-widget {
  border: 2px solid var(--color-primary);
}

/* --- Секция "How to Read" --- */
/* Использует уже существующий класс .info-card, 
   но можно добавить специфичные отступы, если нужно */
.how-to-read-section {
  background-color: var(--color-surface);
  margin-top: calc(var(--spacing-unit) * 5); /* Отступ от сетки виджетов */
}

.how-to-read-section .info-card {
  padding: 0; /* Убираем внутренний padding, так как он задан на контейнере секции */
  box-shadow: none; /* Убираем тень, так как секция имеет фон */
  background-color: transparent; /* Делаем фон прозрачным */
}

/* --- Секция "Jackpot History" --- */
/* Использует уже существующие классы .section-title и .table-container,
   поэтому дополнительных стилей для структуры не требуется. */
.history-section {
  margin-top: calc(var(--spacing-unit) * 5);
}

/******************************************************
 *               RESPONSIVE STYLES                    *
 ******************************************************/
/* --- Tablet and below --- */
@media (max-width: 992px) {
  /* ... (существующие стили) ... */
}
/* --- Mobile phones --- */
@media (max-width: 576px) {
  /* ... (существующие стили) ... */
  /* Добавим стили для тега на мобильных, если заголовок переносится */
  .widget-header {
    align-items: flex-start; /* Выравнивание по верху, если контент переносится */
  }
}
/* ... весь предыдущий код до медиа-запросов ... */
/* ======================================================
   ==   STYLES FOR "DREAM ARCHIVE" PAGE      ==
   ====================================================== */
/* --- Statistics Section --- */
.statistics-section {
  background-color: var(--color-surface);
  margin-bottom: calc(var(--spacing-unit) * 5);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: calc(var(--spacing-unit) * 2);
}

.stat-card {
  text-align: center;
  background-color: var(--color-background);
  padding: calc(var(--spacing-unit) * 1.5);
  border-radius: var(--border-radius);
}

.stat-card h4 {
  font-size: 1.1rem;
  margin-bottom: calc(var(--spacing-unit) * 0.25);
}

.stat-card p {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  min-height: 40px; /* Чтобы карточки были одной высоты, даже если текст разный */
  margin-bottom: var(--spacing-unit);
}

/* --- Number Set Visualization (in tables and stats) --- */
.number-set {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.number-set span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #fce883; /* Yellow for main numbers */
  color: var(--color-text-primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.number-set.powerball span {
  background-color: var(--color-primary); /* Blue for powerball */
  color: white;
}

.number-set.cold span {
  background-color: #a7d8f9; /* A cool blue for "cold" numbers */
}

/* --- Archive Accordion --- */
.archive-container {
  max-width: 900px;
  margin: 0 auto;
}

.archive-item {
  background-color: var(--color-surface);
  border-radius: var(--border-radius);
  margin-bottom: var(--spacing-unit);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}

.archive-item:hover {
  box-shadow: var(--shadow-md);
}

.archive-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: var(--spacing-unit) calc(var(--spacing-unit) * 1.5);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.archive-game-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

.archive-icon {
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform 0.3s ease-in-out;
}

.archive-icon::before,
.archive-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background-color: var(--color-text-secondary);
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease-in-out;
}

.archive-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.archive-trigger[aria-expanded=true] .archive-icon {
  transform: rotate(135deg);
}

.archive-content {
  display: grid;
  grid-template-rows: 0fr; /* Start with content hidden */
  transition: grid-template-rows 0.4s ease-in-out;
}

.archive-content > div {
  overflow: hidden;
}

.archive-trigger[aria-expanded=true] + .archive-content {
  grid-template-rows: 1fr; /* Expand to full height */
}

/* --- Disclaimer & How-to-use sections --- */
.how-to-use-section,
.disclaimer-section {
  text-align: center;
}

.disclaimer-section p {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

/******************************************************
 *               RESPONSIVE STYLES                    *
 ******************************************************/
/* ... */
/* ... весь предыдущий код до медиа-запросов ... */
/* ======================================================
   ==   STYLES FOR "MISSION BRIEFING" PAGE   ==
   ====================================================== */
/* --- Detailed Philosophy Section --- */
/* Использует существующий .info-card, но добавим отступы для абзацев */
.philosophy-section-detailed .info-card p {
  margin-bottom: var(--spacing-unit);
}

.philosophy-section-detailed .info-card p:last-child {
  margin-bottom: 0;
}

/* --- Step-by-Step Section --- */
.steps-container {
  display: grid;
  grid-template-columns: 1fr; /* Одна колонка по умолчанию */
  gap: calc(var(--spacing-unit) * 3);
  max-width: 800px;
  margin: 0 auto;
}

.step-card {
  display: flex;
  align-items: flex-start; /* Выравнивание по верху */
  gap: calc(var(--spacing-unit) * 2);
}

.step-icon-wrapper {
  flex-shrink: 0; /* Иконка не будет сжиматься */
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--color-primary-light);
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-mono);
}

.step-content h3 {
  margin-bottom: calc(var(--spacing-unit) * 0.5);
}

/* --- Dream Board Explainer Section --- */
.dream-board-explainer .explainer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--spacing-unit) * 4);
  align-items: center;
  background-color: var(--color-surface);
  padding: calc(var(--spacing-unit) * 3);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.explainer-text ul {
  list-style: none;
  padding-left: 0;
  margin-top: calc(var(--spacing-unit) * 1.5);
}

.explainer-text li {
  position: relative;
  padding-left: calc(var(--spacing-unit) * 2);
  margin-bottom: var(--spacing-unit);
}

.explainer-text li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
  font-size: 1.2rem;
}

.explainer-visual .visual-placeholder {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-background);
  border: 2px dashed var(--color-border);
  border-radius: var(--border-radius);
  color: var(--color-text-secondary);
  font-size: 1.2rem;
  font-weight: 500;
}

/* --- Final CTA Section --- */
.final-cta-section {
  background-color: var(--color-surface);
  text-align: center;
}

.final-cta-section h2 {
  margin-bottom: calc(var(--spacing-unit) * 0.5);
}

.final-cta-section p {
  color: var(--color-text-secondary);
  margin-bottom: calc(var(--spacing-unit) * 2);
}

/******************************************************
 *               RESPONSIVE STYLES                    *
 ******************************************************/
/* --- Tablet and below --- */
@media (max-width: 992px) {
  /* ... (существующие стили) ... */
  /* Делаем двухколоночный блок одноколоночным */
  .dream-board-explainer .explainer-content {
    grid-template-columns: 1fr;
  }
}
/* --- Mobile phones --- */
@media (max-width: 576px) {
  /* ... (существующие стили) ... */
  /* Делаем карточку шага более компактной */
  .step-card {
    flex-direction: column; /* Иконка над текстом */
    align-items: center; /* Центрируем все */
    text-align: center;
  }
  .dream-board-explainer .explainer-content {
    padding: calc(var(--spacing-unit) * 1.5);
  }
}
/* ... весь предыдущий код до медиа-запросов ... */
/* ======================================================
   ==       STYLES FOR LEGAL CONTENT PAGES       ==
   ====================================================== */
.legal-text-container {
  max-width: 750px; /* Оптимальная ширина для чтения текста */
  margin: 0 auto;
  background-color: var(--color-surface);
  padding: calc(var(--spacing-unit) * 3);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.legal-text-container h2 {
  font-size: 1.5rem;
  margin-top: calc(var(--spacing-unit) * 2);
  margin-bottom: var(--spacing-unit);
  padding-bottom: calc(var(--spacing-unit) * 0.5);
  border-bottom: 1px solid var(--color-border);
}

.legal-text-container h2:first-of-type {
  margin-top: 0;
}

.legal-text-container p {
  line-height: 1.7; /* Увеличиваем межстрочный интервал для лучшей читаемости */
  margin-bottom: calc(var(--spacing-unit) * 1.5);
}

.legal-text-container a {
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--color-primary-light);
}

.legal-text-container a:hover {
  text-decoration-color: var(--color-primary);
}

/******************************************************
 *               RESPONSIVE STYLES                    *
 ******************************************************/
/* --- Tablet and below --- */
@media (max-width: 992px) {
  /* ... (существующие стили) ... */
}
/* --- Mobile phones --- */
@media (max-width: 576px) {
  /* ... (существующие стили) ... */
  .legal-text-container {
    padding: calc(var(--spacing-unit) * 1.5);
  }
}
/* ... весь предыдущий код до медиа-запросов ... */
/* ======================================================
   ==             STYLES FOR 18+ AGE GATE              ==
   ====================================================== */
body.age-gate-active {
  overflow: hidden;
}

.age-gate-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 20, 40, 0.85); /* Более плотный фон */
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  z-index: 9999; /* Выше всех остальных элементов */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-unit);
  transition: opacity 0.3s ease;
}

.age-gate-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.age-gate-modal {
  background: var(--color-surface);
  border-radius: var(--border-radius);
  padding: calc(var(--spacing-unit) * 2.5);
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.age-gate-modal h2 {
  font-size: 1.75rem;
  margin-bottom: var(--spacing-unit);
}

.age-gate-modal p {
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--spacing-unit);
}

.age-gate-modal p:last-of-type {
  margin-bottom: calc(var(--spacing-unit) * 2);
}

.age-gate-actions {
  display: flex;
  flex-direction: column-reverse; /* "Да" сверху, "Нет" снизу на мобильных */
  gap: var(--spacing-unit);
}

/******************************************************
 *               RESPONSIVE STYLES                    *
 ******************************************************/
/* ... */
/* --- Mobile phones --- */
@media (max-width: 576px) {
  /* ... (существующие стили) ... */
  .age-gate-modal {
    padding: calc(var(--spacing-unit) * 2);
  }
}
/* --- Desktop styles for buttons --- */
@media (min-width: 577px) {
  .age-gate-actions {
    flex-direction: row-reverse; /* "Да" справа, "Нет" слева на десктопе */
    justify-content: center;
  }
}
/* ... весь предыдущий код до медиа-запросов ... */
/* ======================================================
   ==    UPDATED FOOTER STYLES (LEGAL & COMPLIANCE)    ==
   ====================================================== */
/* Контейнер для всего футера */
.site-footer .container {
  padding-top: calc(var(--spacing-unit) * 3);
  padding-bottom: calc(var(--spacing-unit) * 2);
}

/* Стили для юридического дисклеймера */
.footer-legal-disclaimer {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--color-text-secondary);
  text-align: center;
  max-width: 900px;
  margin: 0 auto calc(var(--spacing-unit) * 2);
  padding-bottom: calc(var(--spacing-unit) * 2);
  border-bottom: 1px solid var(--color-border);
}

.footer-legal-disclaimer p {
  margin-bottom: var(--spacing-unit);
}

.footer-legal-disclaimer p:last-child {
  margin-bottom: 0;
}

.footer-legal-disclaimer a {
  color: var(--color-text-secondary);
  text-decoration: underline;
}

.footer-legal-disclaimer a:hover {
  color: var(--color-primary);
}

/* Стили для вашего блока с логотипами */
.gj209gj2j {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap; /* Для адаптивности */
  gap: calc(var(--spacing-unit) * 2);
  margin-bottom: calc(var(--spacing-unit) * 2);
}

.g2g24g img {
  height: 35px; /* Задаем высоту для консистентности */
  max-width: 100%;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.g2g24g:hover img {
  opacity: 1;
}

.hfh433s {
  height: 40px; /* Иконка 18+ чуть больше */
}

/* Старый футер теперь нижний блок */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: calc(var(--spacing-unit) * 1.5);
  border-top: 1px solid var(--color-border);
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

/******************************************************
 *               RESPONSIVE STYLES                    *
 ******************************************************/
/* ... */
/* --- Mobile phones --- */
@media (max-width: 576px) {
  /* ... (существующие стили) ... */
  /* Переносим старый .footer-bottom на мобильных */
  .footer-bottom {
    flex-direction: column; /* Stack copyright and legal links */
    gap: calc(var(--spacing-unit) * 0.5);
    text-align: center;
  }
  /* Уменьшаем отступы между логотипами на мобильных */
  .gj209gj2j {
    gap: var(--spacing-unit);
  }
}
/* ... стили для .footer-legal-disclaimer ... */
.footer-legal-disclaimer a.helpline-link {
  font-weight: 600; /* Делаем текст жирнее */
  color: var(--color-text-primary); /* Делаем цвет темнее для акцента */
}

.footer-legal-disclaimer a.helpline-link:hover {
  color: var(--color-primary);
}

/* ... весь предыдущий код до медиа-запросов ... */
/* ======================================================
   ==             STYLES FOR IMAGES                    ==
   ====================================================== */
/* --- 1. Главная страница --- */
/* Фоновое изображение для секции "Герой" */
.launchpad-hero {
  background-image: linear-gradient(rgba(244, 247, 252, 0.5), rgb(244, 247, 252)), url("../img/main/05.jpg");
  background-size: cover;
  background-position: center center;
  padding-top: calc(var(--spacing-unit) * 6);
  padding-bottom: calc(var(--spacing-unit) * 6);
  border-bottom: 1px solid var(--color-border);
}

.launchpad-hero .container {
  padding: 0 var(--spacing-unit);
}

/* Изображение в секции "Commitment" */
.commitment-image {
  width: 100%;
  height: 350px;
  border-radius: var(--border-radius);
  overflow: hidden; /* Чтобы изображение не вылезало за скругленные углы */
}

.commitment-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* Изображение будет красиво обрезаться, сохраняя пропорции */
}

/* --- 2. Страница "Select Your Game" --- */
/* Общий стиль для всех карточек с фоном */
.game-card {
  position: relative; /* Необходимо для позиционирования оверлея */
  overflow: hidden;
  background-size: cover;
  background-position: center;
  color: white; /* Белый текст на темном фоне */
}

/* Псевдо-элемент для затемняющего оверлея */
.game-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(26, 32, 44, 0.6); /* Темный оверлей */
  z-index: 1;
  transition: background-color 0.3s;
}

.game-card:hover::before {
  background-color: rgba(26, 32, 44, 0.4); /* Оверлей становится светлее при наведении */
}

/* Позиционируем контент карточки поверх оверлея */
.game-card .card-header,
.game-card .card-body,
.game-card .card-footer {
  position: relative;
  z-index: 2;
}

/* Меняем цвета текста и элементов внутри карточки */
.game-card .game-title,
.game-card .jackpot-amount {
  color: white;
}

.game-card .game-tagline,
.game-card .jackpot-label,
.game-card .draw-info {
  color: rgba(255, 255, 255, 0.8);
}

.game-card .card-body {
  border-color: rgba(255, 255, 255, 0.2);
}

.game-card .button-primary {
  background-color: white;
  color: var(--color-primary);
}

.game-card .button-primary:hover {
  background-color: #f0f0f0;
}

/* Уникальные фоны для каждой карточки (используем data-атрибуты для чистоты) */
/* Вам нужно будет добавить эти data-атрибуты в HTML! */
.game-card[data-game=powerball] {
  background-image: url("../img/main/01.jpg");
}

.game-card[data-game=ozlotto] {
  background-image: url("../img/main/02.jpg");
}

.game-card[data-game=tattslotto] {
  background-image: url("../img/main/03.jpg");
}

.game-card[data-game=setforlife] {
  background-image: url("../img/main/04.jpg");
}

/* --- 3. Страница "Define Your Numbers" --- */
.number-selector-container {
  background-image: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), url("../img/main/07.jpg");
  background-size: cover;
  background-position: center;
}

/* --- 4. Страница "Mission Briefing" --- */
/* Заполняем плейсхолдер */
.explainer-visual .visual-placeholder {
  background-image: url("../img/main/06.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid var(--color-border); /* Меняем рамку на сплошную */
  text-indent: -9999px; /* Скрываем текст "Panel Preview" */
}

/******************************************************
 *               RESPONSIVE STYLES                    *
 ******************************************************/
/* --- Tablet and below --- */
@media (max-width: 992px) {
  /* ... (существующие стили) ... */
  /* Убираем изображение из секции "Commitment" на планшетах, чтобы сэкономить место */
  .commitment-image {
    display: none;
  }
  .commitment-grid {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=style.css.map */