/* style/resources-luck8-game-types.css */

.page-resources-luck8-game-types {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-resources-luck8-game-types__hero {
  background: linear-gradient(135deg, #0A2463 0%, #304e90 100%); /* Dark blue gradient */
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-luck8-game-types__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="%23FFD700" opacity="0.1"/></svg>'); /* Subtle gold pattern */
  background-size: 50px;
  opacity: 0.1;
  z-index: 0;
}

.page-resources-luck8-game-types__container {
  max-width: 800px; /* Content width for readability */
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 1;
}

.page-resources-luck8-game-types__back-link {
  display: inline-block;
  color: #FFD700;
  text-decoration: none;
  margin-bottom: 20px;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-luck8-game-types__back-link:hover {
  color: #fff;
}

.page-resources-luck8-game-types__title {
  font-size: 2.8em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #FFD700; /* Gold for main title */
}

.page-resources-luck8-game-types__subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-resources-luck8-game-types__subtitle a {
  color: #FFD700;
  text-decoration: underline;
  font-weight: bold;
}

.page-resources-luck8-game-types__subtitle a:hover {
  color: #fff;
}

.page-resources-luck8-game-types__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  margin-top: 30px;
}

.page-resources-luck8-game-types__content-section {
  padding: 40px 0;
  background-color: #fff;
}

.page-resources-luck8-game-types__article-content p {
  margin-bottom: 1em;
  font-size: 1.1em;
  color: #333;
}

.page-resources-luck8-game-types__article-content a {
  color: #0A2463;
  text-decoration: none;
  font-weight: bold;
}

.page-resources-luck8-game-types__article-content a:hover {
  text-decoration: underline;
  color: #FFD700;
}

.page-resources-luck8-game-types__heading {
  font-size: 2em;
  color: #0A2463;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
  font-weight: bold;
}

.page-resources-luck8-game-types__list {
  list-style: disc inside;
  margin-bottom: 1.5em;
  padding-left: 20px;
}

.page-resources-luck8-game-types__list li {
  margin-bottom: 0.5em;
  font-size: 1.05em;
  color: #444;
}

.page-resources-luck8-game-types__list strong {
  color: #0A2463;
}

.page-resources-luck8-game-types__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-luck8-game-types__image-caption {
  text-align: center;
  font-style: italic;
  color: #666;
  margin-top: -15px;
  margin-bottom: 30px;
  font-size: 0.95em;
}

.page-resources-luck8-game-types__cta-block {
  background-color: #f0f8ff; /* Light blue background for CTA */
  border-left: 5px solid #0A2463;
  padding: 25px;
  margin: 40px 0;
  text-align: center;
  border-radius: 5px;
}

.page-resources-luck8-game-types__cta-block p {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: #0A2463;
  font-weight: bold;
}

.page-resources-luck8-game-types__button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A2463;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-resources-luck8-game-types__button:hover {
  background-color: #e6c200; /* Darker gold on hover */
  transform: translateY(-2px);
}

.page-resources-luck8-game-types__cta-final {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
}

.page-resources-luck8-game-types__button--primary {
  background-color: #0A2463;
  color: #FFD700;
  margin-right: 15px;
}

.page-resources-luck8-game-types__button--primary:hover {
  background-color: #1a3a7c;
  color: #fff;
}

.page-resources-luck8-game-types__button--secondary {
  background-color: #FFD700;
  color: #0A2463;
}

.page-resources-luck8-game-types__button--secondary:hover {
  background-color: #e6c200;
  color: #0A2463;
}

.page-resources-luck8-game-types__back-to-home {
  display: block;
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  color: #0A2463;
  text-decoration: none;
  font-weight: bold;
}

.page-resources-luck8-game-types__back-to-home:hover {
  text-decoration: underline;
  color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-resources-luck8-game-types__title {
    font-size: 2.2em;
  }

  .page-resources-luck8-game-types__heading {
    font-size: 1.7em;
  }

  .page-resources-luck8-game-types__article-content p,
  .page-resources-luck8-game-types__list li {
    font-size: 1em;
  }

  .page-resources-luck8-game-types__button {
    font-size: 1em;
    padding: 10px 20px;
  }

  .page-resources-luck8-game-types__cta-final {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-luck8-game-types__button--primary {
    margin-right: 0;
  }
}

@media (max-width: 480px) {
  .page-resources-luck8-game-types__hero {
    padding: 60px 15px;
  }

  .page-resources-luck8-game-types__title {
    font-size: 1.8em;
  }

  .page-resources-luck8-game-types__subtitle {
    font-size: 1em;
  }

  .page-resources-luck8-game-types__heading {
    font-size: 1.5em;
  }

  .page-resources-luck8-game-types__cta-block p {
    font-size: 1em;
  }
}