/* style/lottery-games.css */
.page-lottery-games {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0; /* Light gray for general text for better contrast on dark background */
  background-color: #0d1a2b; /* Slightly darker than main color for depth */
  line-height: 1.6;
}

.page-lottery-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-lottery-games__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-lottery-games__section-description {
  font-size: 1.1em;
  color: #cccccc;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-lottery-games__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-lottery-games__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A2E44; /* Dark blue text */
}

.page-lottery-games__btn--primary:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-lottery-games__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-lottery-games__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A2E44;
  transform: translateY(-2px);
}

.page-lottery-games__btn--small {
  padding: 8px 18px;
  font-size: 0.95em;
}

.page-lottery-games__btn--link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  padding: 0;
  background: none;
  border: none;
}

.page-lottery-games__btn--link:hover {
  text-decoration: underline;
  color: #e6c200;
}

/* Hero Section */
.page-lottery-games__hero-section {
  background: linear-gradient(135deg, #1A2E44, #0d1a2b);
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-lottery-games__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,dark_pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-lottery-games__hero-section > div {
  position: relative;
  z-index: 1;
}

.page-lottery-games__hero-title {
  font-size: 3.8em;
  color: #FFD700;
  margin-bottom: 25px;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.page-lottery-games__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-lottery-games__hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.page-lottery-games__hero-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin-top: 50px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  object-fit: cover;
}

/* Intro Section */
.page-lottery-games__intro-section {
  padding: 80px 0;
  background-color: #1A2E44;
}

.page-lottery-games__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-lottery-games__feature-item {
  background-color: #0d1a2b;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-top: 3px solid #FFD700;
}

.page-lottery-games__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-lottery-games__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-lottery-games__feature-text {
  font-size: 1em;
  color: #cccccc;
}

/* Game Types Section */
.page-lottery-games__game-types-section {
  padding: 80px 0;
  background-color: #0d1a2b;
}

.page-lottery-games__game-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-lottery-games__game-card {
  background-color: #1A2E44;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-lottery-games__game-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-lottery-games__game-card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin: 25px 15px 15px;
  font-weight: bold;
}

.page-lottery-games__game-card-text {
  font-size: 1em;
  color: #cccccc;
  padding: 0 25px 20px;
  flex-grow: 1;
}

.page-lottery-games__game-card .page-lottery-games__btn--link {
  margin-bottom: 25px;
}

/* How To Play Section */
.page-lottery-games__how-to-play-section {
  padding: 80px 0;
  background-color: #1A2E44;
}

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

.page-lottery-games__step-item {
  background-color: #0d1a2b;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  position: relative;
  border-bottom: 3px solid #FFD700;
}

.page-lottery-games__step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFD700;
  color: #1A2E44;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-lottery-games__step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-top: 20px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-lottery-games__step-text {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 20px;
}

/* Strategy Section */
.page-lottery-games__strategy-section {
  padding: 80px 0;
  background-color: #0d1a2b;
}

.page-lottery-games__strategy-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-lottery-games__strategy-image {
  flex: 1 1 45%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-lottery-games__strategy-list {
  flex: 1 1 50%;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-lottery-games__strategy-list li {
  background-color: #1A2E44;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  border-left: 5px solid #FFD700;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-lottery-games__strategy-item-title {
  color: #FFD700;
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-lottery-games__strategy-list p {
  color: #cccccc;
  font-size: 0.95em;
}

/* Responsible Gambling Section */
.page-lottery-games__responsible-gambling-section {
  padding: 80px 0;
  background-color: #1A2E44;
}

.page-lottery-games__responsible-gambling-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-lottery-games__point-item {
  background-color: #0d1a2b;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-bottom: 3px solid #FFD700;
}

.page-lottery-games__point-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-lottery-games__point-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-lottery-games__point-text {
  font-size: 1em;
  color: #cccccc;
}

.page-lottery-games__responsible-gambling-footer {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  color: #f0f0f0;
}

/* Promotions Section */
.page-lottery-games__promotions-section {
  padding: 80px 0;
  background-color: #0d1a2b;
}

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

.page-lottery-games__promo-card {
  background-color: #1A2E44;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.page-lottery-games__promo-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.page-lottery-games__promo-title {
  font-size: 1.6em;
  color: #FFD700;
  margin: 20px 15px 10px;
  font-weight: bold;
}

.page-lottery-games__promo-text {
  font-size: 1em;
  color: #cccccc;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-lottery-games__promo-card .page-lottery-games__btn--primary {
  margin: 0 20px 20px;
}

/* FAQ Section */
.page-lottery-games__faq-section {
  padding: 80px 0;
  background-color: #1A2E44;
}

.page-lottery-games__faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.page-lottery-games__accordion-item {
  margin-bottom: 15px;
  background-color: #0d1a2b;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-lottery-games__accordion-header {
  width: 100%;
  background-color: #1A2E44;
  color: #FFD700;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  text-align: left;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease;
  position: relative;
}

.page-lottery-games__accordion-header:hover {
  background-color: #2a415d;
}

.page-lottery-games__accordion-header::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-lottery-games__accordion-header.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-lottery-games__accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  color: #cccccc;
}

.page-lottery-games__accordion-content.open {
  max-height: 200px; /* Adjust as needed */
  padding-bottom: 25px;
}

.page-lottery-games__accordion-content p {
  margin-bottom: 15px;
}

/* Contact CTA Section */
.page-lottery-games__contact-cta-section {
  padding: 80px 0;
  background: linear-gradient(45deg, #1A2E44, #0d1a2b);
  text-align: center;
}

.page-lottery-games__contact-cta-section .page-lottery-games__btn--hero {
  padding: 15px 40px;
  font-size: 1.3em;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

/* Related Pages Section */
.page-lottery-games__related-pages-section {
  padding: 80px 0;
  background-color: #0d1a2b;
}

.page-lottery-games__related-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-lottery-games__related-item {
  background-color: #1A2E44;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-right: 3px solid #FFD700;
}

.page-lottery-games__related-title {
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-lottery-games__related-title a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-lottery-games__related-title a:hover {
  text-decoration: underline;
  color: #e6c200;
}

.page-lottery-games__related-description {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-lottery-games__hero-title {
    font-size: 3em;
  }
  .page-lottery-games__hero-description {
    font-size: 1.1em;
  }
  .page-lottery-games__section-title {
    font-size: 2.2em;
  }
  .page-lottery-games__strategy-content {
    flex-direction: column;
  }
  .page-lottery-games__strategy-image,
  .page-lottery-games__strategy-list {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-lottery-games__hero-title {
    font-size: 2.5em;
  }
  .page-lottery-games__hero-description {
    font-size: 1em;
  }
  .page-lottery-games__hero-cta-group {
    flex-direction: column;
  }
  .page-lottery-games__btn {
    width: 80%;
    margin: 0 auto 15px;
  }
  .page-lottery-games__section-title {
    font-size: 1.8em;
  }
  .page-lottery-games__hero-image {
    margin-top: 30px;
  }
  .page-lottery-games__accordion-header {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-lottery-games__hero-title {
    font-size: 2em;
  }
  .page-lottery-games__hero-description {
    font-size: 0.9em;
  }
  .page-lottery-games__btn {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-lottery-games__section-title {
    font-size: 1.5em;
  }
  .page-lottery-games__feature-item,
  .page-lottery-games__game-card,
  .page-lottery-games__step-item,
  .page-lottery-games__promo-card,
  .page-lottery-games__point-item,
  .page-lottery-games__related-item {
    padding: 20px;
  }
  .page-lottery-games__accordion-header {
    padding: 15px 20px;
  }
  .page-lottery-games__accordion-content {
    padding: 0 20px;
  }
}