/* style/game-types-lottery-games-types-gameplay.css */
.page-game-types-lottery-games-types-gameplay {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #1A2E4E; /* Dark blue for main text on light background */
  background-color: #f8f9fa;
}

.page-game-types-lottery-games-types-gameplay__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-types-lottery-games-types-gameplay__section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-game-types-lottery-games-types-gameplay__section:nth-of-type(even) {
  background-color: #e9ecef;
}

.page-game-types-lottery-games-types-gameplay__section-title {
  font-size: 2.5em;
  color: #1A2E4E;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-game-types-lottery-games-types-gameplay__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-game-types-lottery-games-types-gameplay__hero {
  background: linear-gradient(135deg, #1A2E4E 0%, #3a4f6d 100%);
  color: #FFFFFF;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-types-lottery-games-types-gameplay__hero-content {
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.page-game-types-lottery-games-types-gameplay__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  line-height: 1.2;
}

.page-game-types-lottery-games-types-gameplay__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

.page-game-types-lottery-games-types-gameplay__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 1;
}

.page-game-types-lottery-games-types-gameplay__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-game-types-lottery-games-types-gameplay__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A2E4E;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-game-types-lottery-games-types-gameplay__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold */
  transform: translateY(-3px);
}

.page-game-types-lottery-games-types-gameplay__overview p,
.page-game-types-lottery-games-types-gameplay__how-to-play p,
.page-game-types-lottery-games-types-gameplay__security p,
.page-game-types-lottery-games-types-gameplay__cta-bottom p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-game-types-lottery-games-types-gameplay__game-card {
  background-color: #FFFFFF;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-types-lottery-games-types-gameplay__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-game-types-lottery-games-types-gameplay__game-card-title {
  font-size: 1.8em;
  color: #1A2E4E;
  margin-bottom: 15px;
  text-align: center;
}

.page-game-types-lottery-games-types-gameplay__game-card p,
.page-game-types-lottery-games-types-gameplay__game-card ul {
  font-size: 1em;
  margin-bottom: 10px;
  text-align: justify;
}

.page-game-types-lottery-games-types-gameplay__game-card ul {
  list-style-type: disc;
  margin-left: 20px;
}

.page-game-types-lottery-games-types-gameplay__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-game-types-lottery-games-types-gameplay__how-to-play ol {
  list-style-type: decimal;
  margin-left: 25px;
  padding-left: 0;
}

.page-game-types-lottery-games-types-gameplay__how-to-play li {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #1A2E4E;
}

.page-game-types-lottery-games-types-gameplay__how-to-play li strong {
  color: #FFD700;
}

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

.page-game-types-lottery-games-types-gameplay__strategy-item {
  background-color: #FFFFFF;
  border: 1px solid #ddd;
  border-left: 5px solid #FFD700;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.page-game-types-lottery-games-types-gameplay__strategy-item-title {
  font-size: 1.5em;
  color: #1A2E4E;
  margin-bottom: 15px;
}

.page-game-types-lottery-games-types-gameplay__strategy-item p {
  font-size: 1em;
  text-align: justify;
}

.page-game-types-lottery-games-types-gameplay__cta-bottom {
  background-color: #1A2E4E;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 0;
}

.page-game-types-lottery-games-types-gameplay__cta-content {
  max-width: 900px;
}

.page-game-types-lottery-games-types-gameplay__cta-bottom .page-game-types-lottery-games-types-gameplay__section-title {
  color: #FFD700;
  margin-bottom: 20px;
}

.page-game-types-lottery-games-types-gameplay__cta-bottom .page-game-types-lottery-games-types-gameplay__section-title::after {
  background-color: #FFFFFF;
}

.page-game-types-lottery-games-types-gameplay__cta-bottom p {
  color: #E0E0E0;
  font-size: 1.2em;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-game-types-lottery-games-types-gameplay__hero-title {
    font-size: 3em;
  }
  .page-game-types-lottery-games-types-gameplay__hero-subtitle {
    font-size: 1.3em;
  }
  .page-game-types-lottery-games-types-gameplay__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-game-types-lottery-games-types-gameplay__hero {
    padding: 60px 0;
  }
  .page-game-types-lottery-games-types-gameplay__hero-title {
    font-size: 2.5em;
  }
  .page-game-types-lottery-games-types-gameplay__hero-subtitle {
    font-size: 1.1em;
  }
  .page-game-types-lottery-games-types-gameplay__section {
    padding: 40px 0;
  }
  .page-game-types-lottery-games-types-gameplay__game-grid,
  .page-game-types-lottery-games-types-gameplay__strategy-grid {
    grid-template-columns: 1fr;
  }
  .page-game-types-lottery-games-types-gameplay__game-card,
  .page-game-types-lottery-games-types-gameplay__strategy-item {
    padding: 20px;
  }
  .page-game-types-lottery-games-types-gameplay__cta-bottom {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .page-game-types-lottery-games-types-gameplay__hero-title {
    font-size: 2em;
  }
  .page-game-types-lottery-games-types-gameplay__hero-subtitle {
    font-size: 1em;
  }
  .page-game-types-lottery-games-types-gameplay__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-game-types-lottery-games-types-gameplay__section-title {
    font-size: 1.8em;
  }
  .page-game-types-lottery-games-types-gameplay__overview p,
  .page-game-types-lottery-games-types-gameplay__how-to-play p,
  .page-game-types-lottery-games-types-gameplay__security p,
  .page-game-types-lottery-games-types-gameplay__cta-bottom p {
    font-size: 1em;
  }
}