.page-blog {
  padding-top: var(--header-offset, 120px); /* Ensures content starts below fixed header */
  background-color: #FFFFFF;
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 450px; /* Minimum height for hero */
}

.page-blog__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  min-height: 100%;
  z-index: 1;
}

.page-blog__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #FFFFFF;
  padding: 40px 20px;
  max-width: 900px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-blog__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #FCBC45; /* Login button color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

.page-blog__hero-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  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;
}

.page-blog__hero-button:hover {
  background-color: #e0a53a;
  transform: translateY(-2px);
}

.page-blog__section-title {
  font-size: 2.2em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
  position: relative;
}

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

.page-blog__latest-articles,
.page-blog__game-guides,
.page-blog__platform-updates,
.page-blog__exclusive-promotions,
.page-blog__why-choose,
.page-blog__faq-section,
.page-blog__call-to-action {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-blog__articles-grid,
.page-blog__guides-grid,
.page-blog__faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-blog__article-card,
.page-blog__guide-item {
  background-color: #f8f8f8;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog__article-card:hover,
.page-blog__guide-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.page-blog__guide-image {
  height: 200px;
}

.page-blog__article-content,
.page-blog__guide-item .page-blog__guide-title,
.page-blog__guide-item .page-blog__guide-description,
.page-blog__guide-item .page-blog__guide-button {
  padding: 20px;
}

.page-blog__article-title,
.page-blog__guide-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #000000;
}

.page-blog__article-title a,
.page-blog__guide-title a,
.page-blog__faq-question a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog__article-title a:hover,
.page-blog__guide-title a:hover,
.page-blog__faq-question a:hover {
  color: #FCBC45;
}

.page-blog__article-excerpt,
.page-blog__guide-description {
  font-size: 0.95em;
  color: #555555;
  margin-bottom: 15px;
}

.page-blog__read-more,
.page-blog__guide-button {
  display: inline-block;
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-blog__read-more:hover,
.page-blog__guide-button:hover {
  color: #e0a53a;
}

.page-blog__updates-list {
  display: grid;
  gap: 25px;
}

.page-blog__update-item {
  background-color: #f8f8f8;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #FCBC45;
}

.page-blog__update-title {
  font-size: 1.3em;
  margin-bottom: 8px;
  color: #000000;
}

.page-blog__update-title a {
  color: #000000;
  text-decoration: none;
}

.page-blog__update-title a:hover {
  color: #FCBC45;
}

.page-blog__update-date {
  font-size: 0.85em;
  color: #777777;
  margin-bottom: 10px;
}

.page-blog__update-description {
  font-size: 0.95em;
  color: #555555;
}

.page-blog__cta-area {
  text-align: center;
  margin-top: 50px;
}

.page-blog__cta-area--bottom {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #eee;
}

.page-blog__cta-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  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;
  margin: 10px;
}

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

.page-blog__cta-button--secondary {
  background-color: #000000;
  color: #FFFFFF;
}

.page-blog__cta-button--secondary:hover {
  background-color: #333333;
}

.page-blog__promotions-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  background-color: #000000;
  padding: 40px;
  border-radius: 10px;
  color: #FFFFFF;
}

.page-blog__promo-image {
  flex: 1 1 40%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog__promo-text {
  flex: 1 1 50%;
}

.page-blog__promo-text p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #f0f0f0;
}

.page-blog__promo-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-blog__promo-button:hover {
  background-color: #e0a53a;
  transform: translateY(-2px);
}

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

.page-blog__choose-item {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: background-color 0.3s ease;
}

.page-blog__choose-item:hover {
  background-color: #ededed;
}

.page-blog__choose-heading {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
}

.page-blog__choose-item p {
  color: #555555;
  font-size: 1em;
}

.page-blog__faq-item {
  background-color: #f8f8f8;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-blog__faq-question {
  font-size: 1.2em;
  color: #000000;
  margin-bottom: 10px;
}

.page-blog__faq-answer {
  font-size: 0.95em;
  color: #555555;
}

.page-blog__call-to-action {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding: 60px 20px;
  border-radius: 10px;
  margin-top: 60px;
}

.page-blog__cta-heading {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #FCBC45;
}

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

.page-blog__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog__cta-main-button,
.page-blog__cta-secondary-button {
  display: inline-block;
  padding: 18px 35px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-blog__cta-main-button {
  background-color: #FCBC45;
  color: #000000;
}

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

.page-blog__cta-secondary-button {
  background-color: #FFFFFF;
  color: #000000;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog__hero-title {
    font-size: 2.2em;
  }
  .page-blog__hero-description {
    font-size: 1.1em;
  }
  .page-blog__section-title {
    font-size: 2em;
  }
  .page-blog__promotions-content {
    flex-direction: column;
  }
  .page-blog__promo-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-blog {
    padding-top: var(--header-offset-mobile, 80px); /* Adjust for mobile header offset */
  }
  .page-blog__hero-section {
    min-height: 350px;
  }
  .page-blog__hero-content {
    padding: 30px 15px;
  }
  .page-blog__hero-title {
    font-size: 1.8em;
  }
  .page-blog__hero-description {
    font-size: 1em;
  }
  .page-blog__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-blog__section-title {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 30px;
  }
  .page-blog__latest-articles,
  .page-blog__game-guides,
  .page-blog__platform-updates,
  .page-blog__exclusive-promotions,
  .page-blog__why-choose,
  .page-blog__faq-section,
  .page-blog__call-to-action {
    padding: 30px 15px;
  }
  .page-blog__articles-grid,
  .page-blog__guides-grid,
  .page-blog__faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-blog__article-image, .page-blog__guide-image {
    max-width: 100%;
    height: auto;
  }
  .page-blog__promo-text p {
    font-size: 0.95em;
  }
  .page-blog__cta-heading {
    font-size: 1.8em;
  }
  .page-blog__cta-text {
    font-size: 1em;
  }
  .page-blog__cta-main-button,
  .page-blog__cta-secondary-button {
    padding: 15px 25px;
    font-size: 1.1em;
  }
  .page-blog__choose-content {
    grid-template-columns: 1fr;
  }

  /* Mobile content area image overflow prevention */
  .page-blog img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-blog__hero-title {
    font-size: 1.5em;
  }
  .page-blog__hero-description {
    font-size: 0.9em;
  }
  .page-blog__section-title {
    font-size: 1.5em;
  }
  .page-blog__article-title,
  .page-blog__guide-title {
    font-size: 1.2em;
  }
  .page-blog__update-title {
    font-size: 1.1em;
  }
  .page-blog__cta-heading {
    font-size: 1.5em;
  }
  .page-blog__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog__cta-main-button,
  .page-blog__cta-secondary-button {
    width: 100%;
    max-width: 280px;
  }
}