.page-lottery-game-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light body background */
  background-color: #f8f8f8; /* Light background for the page content */
}

.page-lottery-game-guide__hero-section {
  position: relative;
  width: 100%;
  padding: 60px 20px;
  padding-top: 120px; /* Adjust for fixed header */
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.page-lottery-game-guide__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-lottery-game-guide__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: #8B0000; /* Dark Red title on bright background for contrast */
}

.page-lottery-game-guide__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #333333; /* Darker text for readability on bright background */
}

.page-lottery-game-guide__text-link {
  color: #8B0000;
  text-decoration: underline;
  font-weight: bold;
}

.page-lottery-game-guide__text-link:hover {
  color: #B22222;
}

.page-lottery-game-guide__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  margin-top: 40px;
}

.page-lottery-game-guide__cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-lottery-game-guide__cta-button {
  display: inline-block;
  padding: 15px 35px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  white-space: normal;
  word-wrap: break-word;
}

.page-lottery-game-guide__btn-primary {
  background-color: #8B0000; /* Dark red button */
  color: #ffffff; /* White text for dark button */
  border: 2px solid #8B0000;
}

.page-lottery-game-guide__btn-primary:hover {
  background-color: #B22222;
  border-color: #B22222;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-lottery-game-guide__btn-secondary {
  background-color: #ffffff; /* White button */
  color: #8B0000; /* Dark red text for white button */
  border: 2px solid #8B0000;
}

.page-lottery-game-guide__btn-secondary:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-lottery-game-guide__section {
  padding: 80px 20px;
  margin-bottom: 20px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}

.page-lottery-game-guide__container {
  max-width: 100%;
  margin: 0 auto;
}

.page-lottery-game-guide__section-title {
  font-size: 2.5em;
  color: #8B0000; /* Dark red for main titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-lottery-game-guide__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
  color: #333333;
}

.page-lottery-game-guide__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-lottery-game-guide__card {
  background-color: #fdfdfd;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #333333;
}

.page-lottery-game-guide__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-lottery-game-guide__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-height: 200px;
}

.page-lottery-game-guide__card-title {
  font-size: 1.5em;
  color: #8B0000;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-lottery-game-guide__card-text {
  font-size: 1em;
  color: #555555;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-lottery-game-guide__article {
  background-color: #fdfdfd;
  border-left: 5px solid #FFD700;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-lottery-game-guide__article-title {
  font-size: 1.8em;
  color: #8B0000;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-lottery-game-guide__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #555555;
}

.page-lottery-game-guide__list li {
  margin-bottom: 8px;
  font-size: 1.05em;
}

.page-lottery-game-guide__content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-lottery-game-guide__content-block {
  background-color: #fdfdfd;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  color: #333333;
}

.page-lottery-game-guide__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-height: 200px;
}

.page-lottery-game-guide__content-block-title {
  font-size: 1.4em;
  color: #8B0000;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-lottery-game-guide__cta-center {
  text-align: center;
  margin-top: 40px;
}

.page-lottery-game-guide__promo-section {
  background-color: #FFD700; /* Gold background */
  color: #333333; /* Dark text for readability */
}

.page-lottery-game-guide__promo-section .page-lottery-game-guide__section-title {
  color: #8B0000; /* Dark red title on gold background */
}

.page-lottery-game-guide__promo-section .page-lottery-game-guide__text-block {
  color: #333333; /* Dark text on gold background */
}

.page-lottery-game-guide__promo-section .page-lottery-game-guide__text-link {
  color: #8B0000;
}

.page-lottery-game-guide__promo-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  margin: 30px auto;
  display: block;
}

.page-lottery-game-guide__promo-list {
  list-style-type: decimal;
  margin-left: 25px;
  color: #333333;
}

.page-lottery-game-guide__promo-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-lottery-game-guide__security-section {
  background-color: #f2f2f2;
}

.page-lottery-game-guide__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-lottery-game-guide__feature-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 25px;
  text-align: center;
  color: #333333;
}

.page-lottery-game-guide__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
  object-fit: contain;
}

.page-lottery-game-guide__feature-title {
  font-size: 1.4em;
  color: #8B0000;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-lottery-game-guide__final-cta-section {
  background: linear-gradient(to right, #8B0000, #B22222);
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
}

.page-lottery-game-guide__final-cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-lottery-game-guide__final-cta-section .page-lottery-game-guide__section-title {
  color: #FFD700; /* Gold title on dark red background */
  font-size: 2.8em;
}

.page-lottery-game-guide__final-cta-section .page-lottery-game-guide__text-block {
  color: #f0f0f0;
  font-size: 1.2em;
  margin-bottom: 40px;
}

.page-lottery-game-guide__final-cta-section .page-lottery-game-guide__text-link {
  color: #FFD700;
}

.page-lottery-game-guide__final-cta-section .page-lottery-game-guide__btn-primary {
  background-color: #FFD700;
  color: #8B0000;
  border-color: #FFD700;
}

.page-lottery-game-guide__final-cta-section .page-lottery-game-guide__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-lottery-game-guide__hero-title {
    font-size: 2.8em;
  }
  .page-lottery-game-guide__section-title {
    font-size: 2.2em;
  }
  .page-lottery-game-guide__final-cta-section .page-lottery-game-guide__section-title {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .page-lottery-game-guide__hero-section {
    padding-top: 100px !important; /* Mobile fixed header adjustment */
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-lottery-game-guide__hero-title {
    font-size: 2.2em;
  }
  .page-lottery-game-guide__hero-description {
    font-size: 1em;
  }
  .page-lottery-game-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-lottery-game-guide__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 25px !important;
    font-size: 1em !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-lottery-game-guide__section {
    padding: 40px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-lottery-game-guide__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }
  .page-lottery-game-guide__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-lottery-game-guide__text-block {
    font-size: 0.95em;
  }
  .page-lottery-game-guide__grid, 
  .page-lottery-game-guide__content-grid, 
  .page-lottery-game-guide__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-lottery-game-guide__card, 
  .page-lottery-game-guide__content-block, 
  .page-lottery-game-guide__feature-item {
    padding: 20px;
  }
  .page-lottery-game-guide__card-image, 
  .page-lottery-game-guide__content-image, 
  .page-lottery-game-guide__feature-icon, 
  .page-lottery-game-guide__hero-image, 
  .page-lottery-game-guide__promo-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
    object-fit: contain;
  }
  .page-lottery-game-guide__article {
    padding: 20px;
  }
  .page-lottery-game-guide__article-title {
    font-size: 1.5em;
  }
  .page-lottery-game-guide__list {
    margin-left: 15px;
  }
  .page-lottery-game-guide__final-cta-section {
    padding: 40px 15px;
  }
  .page-lottery-game-guide__final-cta-section .page-lottery-game-guide__section-title {
    font-size: 2em;
  }
  .page-lottery-game-guide__final-cta-section .page-lottery-game-guide__text-block {
    font-size: 1em;
  }
}