.page-lottery {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Body background is dark #121212, so light text */
  background-color: #121212; /* Ensure page-specific background is consistent with body */
  line-height: 1.6;
  font-size: 16px;
}

/* Hero Section */
.page-lottery__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  min-height: 70vh; /* Minimum height for hero */
}

.page-lottery__hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-lottery__video-link {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.page-lottery__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.page-lottery__hero-overlay {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  padding: 40px 20px;
  border-radius: 8px;
  max-width: 900px;
  margin: 0 auto;
}

.page-lottery__hero-title {
  font-size: 3.5em;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-lottery__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-lottery__hero-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* General Sections */
.page-lottery__section {
  padding: 80px 20px;
  text-align: center;
}

.page-lottery__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-lottery__dark-bg {
  background-color: #1a1a1a; /* Slightly lighter than body for contrast, but still dark */
  color: #ffffff;
}

.page-lottery__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-lottery__section-title {
  font-size: 2.8em;
  margin-bottom: 30px;
  font-weight: bold;
  color: #26A9E0; /* Brand color for titles */
}

.page-lottery__light-bg .page-lottery__section-title {
  color: #26A9E0; /* Brand color */
}

.page-lottery__dark-bg .page-lottery__section-title {
  color: #ffffff; /* White title on dark background for contrast */
}

.page-lottery__section-text {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-lottery__light-bg .page-lottery__section-text {
  color: #555555;
}

.page-lottery__dark-bg .page-lottery__section-text {
  color: #e0e0e0;
}

.page-lottery__subsection-title {
  font-size: 2em;
  margin-top: 50px;
  margin-bottom: 25px;
  font-weight: bold;
  color: #26A9E0;
}

.page-lottery__list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-lottery__list-item {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  font-size: 1.1em;
}

.page-lottery__list-item::before {
  content: '✔️';
  position: absolute;
  left: 0;
  color: #26A9E0;
  font-size: 1.2em;
  top: -2px;
}

.page-lottery__light-bg .page-lottery__list-item {
  color: #333333;
}