.page-blog {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-blog__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #1A1A1A; /* Auxiliary dark background */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-blog__hero-container {
  position: relative;
  width: 100%;
  max-width: 1920px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-blog__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly darken image for text readability */
}

.page-blog__hero-content {
  position: absolute;
  text-align: center;
  padding: 20px;
  max-width: 900px;
  z-index: 10;
}

.page-blog__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold primary color */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-blog__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-blog__hero-cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold primary color */
  color: #1A1A1A; /* Dark text on gold button */
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-blog__hero-cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-blog__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold primary color */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
}

.page-blog__introduction-section,
.page-blog__featured-articles-section,
.page-blog__latest-news-section,
.page-blog__game-reviews-section,
.page-blog__cta-section,
.page-blog__more-resources-section {
  padding: 60px 0;
  background-color: #1A1A1A; /* Auxiliary dark background for sections */
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-blog__introduction-section .page-blog__paragraph {
  font-size: 1.1em;
  color: #cccccc;
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog__article-grid,
.page-blog__resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog__article-card,
.page-blog__resource-card {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white for cards */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-blog__article-card:hover,
.page-blog__resource-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-blog__article-image {
  width: 100%;
  height: 225px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-blog__article-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-blog__article-title,
.page-blog__resource-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #FFD700; /* Gold primary color for titles */
  line-height: 1.3;
}

.page-blog__article-title a,
.page-blog__resource-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog__article-title a:hover,
.page-blog__resource-title a:hover {
  color: #ffffff;
}

.page-blog__article-excerpt,
.page-blog__resource-description {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog__read-more-button,
.page-blog__resource-link {
  display: inline-block;
  background-color: #FFD700; /* Gold primary color */
  color: #1A1A1A; /* Dark text on gold button */
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.page-blog__read-more-button:hover,
.page-blog__resource-link:hover {
  background-color: #e6c200;
}

.page-blog__news-list,
.page-blog__reviews-list {
  display: grid;
  gap: 30px;
  margin-top: 30px;
}

.page-blog__news-item,
.page-blog__review-item {
  background-color: rgba(255, 255, 255, 0.03); /* Lighter transparent white for list items */
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.page-blog__news-item:hover,
.page-blog__review-item:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.page-blog__news-title,
.page-blog__review-title {
  font-size: 1.6em;
  margin-bottom: 10px;
  color: #FFD700; /* Gold primary color for titles */
}

.page-blog__news-title a,
.page-blog__review-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog__news-title a:hover,
.page-blog__review-title a:hover {
  color: #ffffff;
}

.page-blog__news-description,
.page-blog__review-description {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 15px;
}

.page-blog__view-details-button {
  display: inline-block;
  color: #FFD700; /* Gold primary color */
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 3px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-blog__view-details-button:hover {
  color: #ffffff;
  border-color: #ffffff;
}

.page-blog__view-all-button-wrapper {
  text-align: center;
  margin-top: 50px;
}

.page-blog__view-all-button {
  display: inline-block;
  background-color: transparent;
  border: 2px solid #FFD700; /* Gold border */
  color: #FFD700; /* Gold text */
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-blog__view-all-button:hover {
  background-color: #FFD700;
  color: #1A1A1A; /* Dark text on gold background */
}

.page-blog__cta-section {
  text-align: center;
  background: linear-gradient(135deg, #1A1A1A, #0D0D0D);
  padding: 80px 20px;
}

.page-blog__cta-title {
  font-size: 3em;
  color: #FFD700; /* Gold primary color */
  margin-bottom: 25px;
  line-height: 1.2;
}

.page-blog__cta-description {
  font-size: 1.4em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold primary color */
  color: #1A1A1A; /* Dark text on gold button */\  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 0 10px 20px;
}

.page-blog__cta-button--secondary {
  background-color: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
}

.page-blog__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-blog__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #1A1A1A;
}

.page-blog__resources-grid .page-blog__resource-card {
  text-align: center;
}

.page-blog__resources-grid .page-blog__resource-title {
  font-size: 1.6em;
}

.page-blog__resources-grid .page-blog__resource-link {
  background-color: #FFD700;
  color: #1A1A1A;
  border-radius: 50px;
  padding: 10px 25px;
  font-size: 1em;
}

.page-blog__resources-grid .page-blog__resource-link:hover {
  background-color: #e6c200;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog__hero-title {
    font-size: 3em;
  }
  .page-blog__hero-description {
    font-size: 1.2em;
  }
  .page-blog__section-title {
    font-size: 2.5em;
  }
  .page-blog__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-blog {
    padding-top: var(--header-offset, 120px);
  }
  .page-blog__hero-title {
    font-size: 2.2em;
  }
  .page-blog__hero-description {
    font-size: 1em;
  }
  .page-blog__hero-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-blog__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }
  .page-blog__introduction-section .page-blog__paragraph {
    font-size: 0.95em;
  }
  .page-blog__article-grid,
  .page-blog__resources-grid {
    grid-template-columns: 1fr;
  }
  .page-blog__article-image {
    height: 200px;
  }
  .page-blog__article-title,
  .page-blog__resource-title {
    font-size: 1.5em;
  }
  .page-blog__news-title,
  .page-blog__review-title {
    font-size: 1.4em;
  }
  .page-blog__cta-title {
    font-size: 2em;
  }
  .page-blog__cta-description {
    font-size: 1.1em;
  }
  .page-blog__cta-button {
    font-size: 1em;
    padding: 12px 30px;
    margin: 0 5px 15px;
  }
  .page-blog__hero-image,
  .page-blog__article-image,
  .page-blog__news-item img,
  .page-blog__review-item img,
  .page-blog__resource-card img,
  .page-blog__container img {
    max-width: 100%;
    height: auto;
  }
  /* Ensure all images within content area are responsive and not smaller than 200px display */
  .page-blog img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-blog__hero-title {
    font-size: 1.8em;
  }
  .page-blog__hero-description {
    font-size: 0.9em;
  }
  .page-blog__hero-cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-blog__section-title {
    font-size: 1.8em;
  }
  .page-blog__cta-title {
    font-size: 1.8em;
  }
  .page-blog__cta-description {
    font-size: 1em;
  }
  .page-blog__cta-button {
    display: block;
    margin: 10px auto;
  }
  .page-blog__article-image {
    height: 180px; /* Adjust for smaller screens, still meets min 200px display if container is smaller */
  }
  /* Ensure all images within content area are responsive and not smaller than 200px display */
  .page-blog img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
}