/* style/resources-88king-game-strategy.css */
.page-resources-88king-game-strategy {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* White text for readability on dark background */
  background-color: #1a1a1a; /* Dark background */  line-height: 1.6;
}

.page-resources-88king-game-strategy__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #8B0000, #4a0000); /* Dark red gradient */
  position: relative;
  overflow: hidden;
  color: #FFD700;
}

.page-resources-88king-game-strategy__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract_pattern,gold_red,luxury]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-resources-88king-game-strategy__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-resources-88king-game-strategy__hero h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-resources-88king-game-strategy__hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-resources-88king-game-strategy__hero-image-wrapper {
  margin-top: 40px;
  max-width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-resources-88king-game-strategy__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-resources-88king-game-strategy__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-resources-88king-game-strategy__section:nth-of-type(even) {
  background-color: #2a2a2a; /* Slightly lighter dark background for contrast */
}

.page-resources-88king-game-strategy__section h2 {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 40px;
  font-weight: bold;
}

.page-resources-88king-game-strategy__section h3 {
  font-size: 1.8em;
  color: #FFD700; /* Gold for sub-titles */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-88king-game-strategy__section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-resources-88king-game-strategy__section ul {
  list-style-type: disc;
  margin: 20px auto;
  padding-left: 40px;
  text-align: left;
  max-width: 800px;
  color: #e0e0e0;
}

.page-resources-88king-game-strategy__section ul li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-resources-88king-game-strategy__section ul li strong {
  color: #FFD700;
}

.page-resources-88king-game-strategy__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button background */
  color: #8B0000; /* Dark red text on gold button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 20px;
  border: none;
  cursor: pointer;
}

.page-resources-88king-game-strategy__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-resources-88king-game-strategy__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-resources-88king-game-strategy__cta-button--large {
  padding: 18px 35px;
  font-size: 1.3em;
}

.page-resources-88king-game-strategy__cta-button--secondary {
  background-color: #8B0000; /* Dark red button background */
  color: #FFD700; /* Gold text on dark red button */
  border: 1px solid #FFD700;
  margin-left: 15px;
}

.page-resources-88king-game-strategy__cta-button--secondary:hover {
  background-color: #6a0000; /* Slightly darker red on hover */
  border-color: #e6c200;
}

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

.page-resources-88king-game-strategy__grid-item {
  background-color: #333333;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-resources-88king-game-strategy__grid-item:hover {
  transform: translateY(-5px);
}

.page-resources-88king-game-strategy__grid-item h3 {
  color: #FFD700;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.6em;
}

.page-resources-88king-game-strategy__grid-item p {
  color: #e0e0e0;
  font-size: 1em;
}

.page-resources-88king-game-strategy__icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

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

.page-resources-88king-game-strategy__game-card {
  background-color: #333333;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  text-align: left;
  transition: transform 0.3s ease;
}

.page-resources-88king-game-strategy__game-card:hover {
  transform: translateY(-5px);
}

.page-resources-88king-game-strategy__game-card h3 {
  color: #FFD700;
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 1.5em;
}

.page-resources-88king-game-strategy__game-card ul {
  list-style-type: none;
  padding-left: 0;
  margin-top: 15px;
}

.page-resources-88king-game-strategy__game-card ul li {
  margin-bottom: 8px;
  font-size: 1em;
  color: #e0e0e0;
  position: relative;
  padding-left: 25px;
}

.page-resources-88king-game-strategy__game-card ul li::before {
  content: '▶';
  color: #FFD700;
  position: absolute;
  left: 0;
  top: 0;
}

.page-resources-88king-game-strategy__game-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-resources-88king-game-strategy__content-with-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  text-align: left;
}

.page-resources-88king-game-strategy__content-with-image--reverse {
  flex-direction: column-reverse;
}

.page-resources-88king-game-strategy__text-content {
  flex: 1;
}

.page-resources-88king-game-strategy__image--right,
.page-resources-88king-game-strategy__image--left {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

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

.page-resources-88king-game-strategy__promotion-item {
  background-color: #333333;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-resources-88king-game-strategy__promotion-item:hover {
  transform: translateY(-5px);
}

.page-resources-88king-game-strategy__promo-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-resources-88king-game-strategy__promotion-item h3 {
  color: #FFD700;
  font-size: 1.4em;
  margin-top: 15px;
  margin-bottom: 10px;
}

.page-resources-88king-game-strategy__promotion-item p {
  color: #e0e0e0;
  font-size: 0.95em;
}

.page-resources-88king-game-strategy__responsible-image {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-top: 30px;
}

.page-resources-88king-game-strategy__faq-item {
  background-color: #333333;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-resources-88king-game-strategy__faq-item h3 {
  color: #FFD700;
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-resources-88king-game-strategy__faq-item p {
  color: #e0e0e0;
  font-size: 1em;
}

.page-resources-88king-game-strategy__cta-final {
  background-color: #8B0000; /* Dark red background for final CTA */
  color: #FFD700;
  padding: 80px 20px;
  border-radius: 10px;
  margin-top: 60px;
  margin-bottom: 60px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-resources-88king-game-strategy__cta-final h2 {
  color: #FFD700;
  font-size: 2.8em;
  margin-bottom: 25px;
}

.page-resources-88king-game-strategy__cta-final p {
  font-size: 1.2em;
  color: #FFFFFF;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .page-resources-88king-game-strategy__hero {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    padding: 100px 40px;
  }

  .page-resources-88king-game-strategy__hero-content {
    max-width: 50%;
    margin-right: 40px;
  }

  .page-resources-88king-game-strategy__hero-image-wrapper {
    margin-top: 0;
    max-width: 40%;
  }

  .page-resources-88king-game-strategy__hero h1 {
    font-size: 4.5em;
  }

  .page-resources-88king-game-strategy__hero p {
    font-size: 1.3em;
  }

  .page-resources-88king-game-strategy__content-with-image {
    flex-direction: row;
    text-align: left;
  }

  .page-resources-88king-game-strategy__content-with-image--reverse {
    flex-direction: row-reverse;
  }

  .page-resources-88king-game-strategy__image--right {
    margin-left: 40px;
  }

  .page-resources-88king-game-strategy__image--left {
    margin-right: 40px;
  }

  .page-resources-88king-game-strategy__text-content ul {
    max-width: none;
  }
}

@media (max-width: 767px) {
  .page-resources-88king-game-strategy__hero h1 {
    font-size: 2.5em;
  }

  .page-resources-88king-game-strategy__hero p {
    font-size: 1em;
  }

  .page-resources-88king-game-strategy__section h2 {
    font-size: 2em;
  }

  .page-resources-88king-game-strategy__section h3 {
    font-size: 1.5em;
  }

  .page-resources-88king-game-strategy__cta-final h2 {
    font-size: 2.2em;
  }

  .page-resources-88king-game-strategy__cta-final p {
    font-size: 1em;
  }
}