.page-game-types-lottery-games {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Màu chữ sáng cho nền tối */
  background-color: #0A2E36; /* Nền chính */
  line-height: 1.6;
}

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

.page-game-types-lottery-games__hero {
  background: linear-gradient(135deg, #0A2E36 0%, #1A4D5C 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}

.page-game-types-lottery-games__hero-content {
  max-width: 800px;
}

.page-game-types-lottery-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 15px;
  color: #FFD700; /* Màu vàng nổi bật */
  font-weight: bold;
  line-height: 1.2;
}

.page-game-types-lottery-games__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-game-types-lottery-games__hero-image-wrapper {
  width: 100%;
  max-width: 900px;
  margin-top: 30px;
}

.page-game-types-lottery-games__hero-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-game-types-lottery-games__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-game-types-lottery-games__section:last-of-type {
  border-bottom: none;
}

.page-game-types-lottery-games__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-game-types-lottery-games__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-game-types-lottery-games__text {
  font-size: 1.1em;
  color: #D0D0D0;
  margin-bottom: 20px;
  text-align: justify;
}

.page-game-types-lottery-games__image {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-game-types-lottery-games__game-category {
  background-color: #1A4D5C;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-types-lottery-games__game-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-game-types-lottery-games__category-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.5);
  padding-bottom: 10px;
}

.page-game-types-lottery-games__sub-category-title {
  font-size: 1.5em;
  color: #ADD8E6; /* Light blue for sub-titles */
  margin-top: 25px;
  margin-bottom: 15px;
}

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

.page-game-types-lottery-games__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-game-types-lottery-games__list ul {
  list-style-type: circle;
  margin-left: 20px;
  margin-top: 5px;
}

.page-game-types-lottery-games__ordered-list {
  list-style-type: decimal;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #D0D0D0;
}

.page-game-types-lottery-games__ordered-list li {
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-game-types-lottery-games__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-game-types-lottery-games__btn--primary {
  background-color: #FFD700;
  color: #0A2E36;
}

.page-game-types-lottery-games__btn--primary:hover {
  background-color: #E0B500;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-game-types-lottery-games__btn--secondary {
  background-color: #0A2E36;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-game-types-lottery-games__btn--secondary:hover {
  background-color: #1A4D5C;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-game-types-lottery-games__cta-section {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: #1A4D5C;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-game-types-lottery-games__table-wrapper {
  overflow-x: auto;
  margin-top: 30px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-game-types-lottery-games__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px; /* Ensure table is readable on smaller screens */
}

.page-game-types-lottery-games__table th,
.page-game-types-lottery-games__table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-game-types-lottery-games__table th {
  background-color: #0A2E36;
  color: #FFD700;
  font-weight: bold;
  font-size: 1.1em;
}

.page-game-types-lottery-games__table td {
  background-color: #1A4D5C;
  color: #E0E0E0;
}

.page-game-types-lottery-games__table tbody tr:hover td {
  background-color: #2A6C7D;
}

.page-game-types-lottery-games__container--flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-game-types-lottery-games__final-cta {
  background-color: #0A2E36;
  padding: 80px 0;
}

.page-game-types-lottery-games__cta-text-wrapper {
  margin-bottom: 40px;
}

.page-game-types-lottery-games__cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Responsive Design */
@media (min-width: 768px) {
  .page-game-types-lottery-games__hero {
    flex-direction: row;
    text-align: left;
    padding: 100px 40px;
  }

  .page-game-types-lottery-games__hero-content {
    flex: 1;
    padding-right: 40px;
  }

  .page-game-types-lottery-games__hero-image-wrapper {
    flex: 1;
    margin-top: 0;
  }

  .page-game-types-lottery-games__hero-title {
    font-size: 4.5em;
  }

  .page-game-types-lottery-games__hero-subtitle {
    font-size: 1.6em;
  }

  .page-game-types-lottery-games__section-title {
    font-size: 3em;
  }

  .page-game-types-lottery-games__category-title {
    font-size: 2.2em;
  }

  .page-game-types-lottery-games__btn--secondary {
    margin-left: 0;
  }

  .page-game-types-lottery-games__cta-buttons {
    flex-direction: row;
  }
}

@media (max-width: 767px) {
  .page-game-types-lottery-games__hero-title {
    font-size: 2.5em;
  }

  .page-game-types-lottery-games__hero-subtitle {
    font-size: 1.1em;
  }

  .page-game-types-lottery-games__section-title {
    font-size: 1.8em;
  }

  .page-game-types-lottery-games__category-title {
    font-size: 1.5em;
  }

  .page-game-types-lottery-games__btn {
    width: 100%;
    margin-bottom: 15px;
  }

  .page-game-types-lottery-games__btn--secondary {
    margin-left: 0;
  }

  .page-game-types-lottery-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-game-types-lottery-games__table th,
  .page-game-types-lottery-games__table td {
    padding: 10px;
    font-size: 0.9em;
  }
}