.page-resources-11uu-game-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

.page-resources-11uu-game-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-11uu-game-guide__hero {
  background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-resources-11uu-game-guide__hero > .page-resources-11uu-game-guide__container {
  position: relative;
  z-index: 1;
}

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

.page-resources-11uu-game-guide__back-link:hover {
  color: #fff;
}

.page-resources-11uu-game-guide__title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-11uu-game-guide__subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-resources-11uu-game-guide__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin: 0 10px;
}

.page-resources-11uu-game-guide__btn--primary {
  background-color: #FFC107;
  color: #0056b3;
  border: 2px solid #FFC107;
}

.page-resources-11uu-game-guide__btn--primary:hover {
  background-color: #e0a800;
  color: #003e7e;
  border-color: #e0a800;
}

.page-resources-11uu-game-guide__btn--secondary {
  background-color: transparent;
  color: #FFC107;
  border: 2px solid #FFC107;
}

.page-resources-11uu-game-guide__btn--secondary:hover {
  background-color: #FFC107;
  color: #0056b3;
}

.page-resources-11uu-game-guide__content-section {
  padding: 60px 0;
}

.page-resources-11uu-game-guide__article-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) {
  .page-resources-11uu-game-guide__article-layout {
    grid-template-columns: 280px 1fr;
  }
}

.page-resources-11uu-game-guide__sidebar {
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  align-self: flex-start;
  position: sticky;
  top: 100px; /* Adjust based on header height */
}

.page-resources-11uu-game-guide__toc-title {
  font-size: 1.4em;
  color: #007BFF;
  margin-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 10px;
}

.page-resources-11uu-game-guide__toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-resources-11uu-game-guide__toc-list li {
  margin-bottom: 10px;
}

.page-resources-11uu-game-guide__toc-list a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  padding: 5px 0;
}

.page-resources-11uu-game-guide__toc-list a:hover,
.page-resources-11uu-game-guide__toc-list a.active {
  color: #007BFF;
  font-weight: bold;
}

.page-resources-11uu-game-guide__promo-card {
  margin-top: 30px;
  background-color: #007BFF;
  color: #fff;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
}

.page-resources-11uu-game-guide__promo-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  filter: brightness(1.2); /* Allowed for icons to make them pop, not changing original color */
}

.page-resources-11uu-game-guide__promo-title {
  font-size: 1.3em;
  margin-bottom: 10px;
  color: #FFC107;
}

.page-resources-11uu-game-guide__promo-text {
  font-size: 0.95em;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-resources-11uu-game-guide__article {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-11uu-game-guide__article h2 {
  font-size: 2em;
  color: #007BFF;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 10px;
}

.page-resources-11uu-game-guide__article h3 {
  font-size: 1.5em;
  color: #333;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-11uu-game-guide__article p {
  margin-bottom: 1em;
  font-size: 1.05em;
  line-height: 1.7;
}

.page-resources-11uu-game-guide__article strong {
  color: #007BFF;
}

.page-resources-11uu-game-guide__article ul,
.page-resources-11uu-game-guide__article ol {
  margin-bottom: 1em;
  padding-left: 25px;
}

.page-resources-11uu-game-guide__article ul li,
.page-resources-11uu-game-guide__article ol li {
  margin-bottom: 0.5em;
  font-size: 1.05em;
}

.page-resources-11uu-game-guide__article-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 25px 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-11uu-game-guide__article-cta {
  margin-top: 30px;
  margin-bottom: 40px;
  text-align: center;
  display: block;
}

.page-resources-11uu-game-guide__final-cta {
  background-color: #f0f8ff;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  margin-top: 50px;
  border: 1px dashed #007BFF;
}

.page-resources-11uu-game-guide__final-cta-text {
  font-size: 1.3em;
  color: #007BFF;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-resources-11uu-game-guide__related-articles {
  background-color: #eef7ff;
  padding: 60px 0;
  text-align: center;
}

.page-resources-11uu-game-guide__section-title {
  font-size: 2.2em;
  color: #007BFF;
  margin-bottom: 40px;
}

.page-resources-11uu-game-guide__articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-resources-11uu-game-guide__article-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-11uu-game-guide__article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-resources-11uu-game-guide__card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  filter: none; /* Ensure no image filters */
}

.page-resources-11uu-game-guide__card-title {
  font-size: 1.25em;
  padding: 15px 20px 0;
  margin-bottom: 10px;
}

.page-resources-11uu-game-guide__card-title a {
  color: #007BFF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-11uu-game-guide__card-title a:hover {
  color: #FFC107;
}

.page-resources-11uu-game-guide__card-description {
  font-size: 0.95em;
  color: #666;
  padding: 0 20px 15px;
}

.page-resources-11uu-game-guide__card-link {
  display: inline-block;
  color: #FFC107;
  text-decoration: none;
  font-weight: bold;
  padding: 0 20px 20px;
  transition: color 0.3s ease;
}

.page-resources-11uu-game-guide__card-link:hover {
  color: #007BFF;
}

@media (max-width: 768px) {
  .page-resources-11uu-game-guide__title {
    font-size: 2em;
  }

  .page-resources-11uu-game-guide__subtitle {
    font-size: 1em;
  }

  .page-resources-11uu-game-guide__article-layout {
    grid-template-columns: 1fr;
  }

  .page-resources-11uu-game-guide__sidebar {
    position: static;
    top: auto;
  }

  .page-resources-11uu-game-guide__article {
    padding: 25px;
  }

  .page-resources-11uu-game-guide__article h2 {
    font-size: 1.8em;
  }

  .page-resources-11uu-game-guide__article h3 {
    font-size: 1.3em;
  }

  .page-resources-11uu-game-guide__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-resources-11uu-game-guide__section-title {
    font-size: 1.8em;
  }

  .page-resources-11uu-game-guide__final-cta-text {
    font-size: 1.1em;
  }
}