.page-blog {
  color: #F2FFF6; /* Text Main color for dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-blog__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px 40px;
  overflow: hidden;
  background: linear-gradient(180deg, #0A4B2C 0%, #08160F 100%); /* Deep Green to Background color */
}

.page-blog__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
}

.page-blog__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-blog__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-blog__main-title {
  font-size: clamp(2em, 5vw, 3.5em);
  font-weight: 700;
  color: #F2C14E; /* Gold color for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-blog__description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
}

.page-blog__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

.page-blog__section {
  padding: 60px 0;
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-blog__section:last-of-type {
  border-bottom: none;
}

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

.page-blog__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-blog__subtitle {
  font-size: 1.8em;
  font-weight: 600;
  color: #57E38D; /* Glow */
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
}

.page-blog__text-block {
  font-size: 1.05em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog__text-block strong {
  color: #57E38D; /* Glow */
}

.page-blog__introduction .page-blog__text-block {
  color: #A7D9B8; /* Text Secondary */
}

.page-blog__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-blog__step-item {
  background: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-blog__step-item:hover {
  transform: translateY(-5px);
}

.page-blog__step-title {
  font-size: 1.5em;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog__step-description {
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.5;
}

.page-blog__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  margin-top: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog__image--center {
  margin-left: auto;
  margin-right: auto;
}

.page-blog__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-top: 20px;
  margin-bottom: 30px;
  color: #F2FFF6; /* Text Main */
}

.page-blog__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-blog__list-item strong {
  color: #57E38D; /* Glow */
}

.page-blog__games .page-blog__section-title {
  color: #F2C14E; /* Gold */
}

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

.page-blog__game-card {
  background: #11271B; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-blog__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-blog__game-title {
  font-size: 1.3em;
  font-weight: 600;
  color: #57E38D; /* Glow */
  padding: 15px 20px 0;
}

.page-blog__game-title a {
  color: inherit;
  text-decoration: none;
}

.page-blog__game-title a:hover {
  text-decoration: underline;
}

.page-blog__game-description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
  padding: 10px 20px 20px;
  flex-grow: 1;
}

.page-blog__promotions .page-blog__section-title {
  color: #F2C14E; /* Gold */
}

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

.page-blog__promo-item {
  background: #11271B; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-blog__promo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog__promo-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-blog__promo-title {
  font-size: 1.4em;
  font-weight: 600;
  color: #57E38D; /* Glow */
  padding: 15px 20px 0;
}

.page-blog__promo-title a {
  color: inherit;
  text-decoration: none;
}

.page-blog__promo-title a:hover {
  text-decoration: underline;
}

.page-blog__promo-description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
  padding: 10px 20px 20px;
  flex-grow: 1;
}

.page-blog__features .page-blog__section-title {
  color: #F2C14E; /* Gold */
}

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

.page-blog__feature-item {
  background: #11271B; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-blog__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog__feature-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.page-blog__feature-title {
  font-size: 1.3em;
  font-weight: 600;
  color: #57E38D; /* Glow */
  padding: 15px 20px 0;
}

.page-blog__feature-title a {
  color: inherit;
  text-decoration: none;
}

.page-blog__feature-title a:hover {
  text-decoration: underline;
}

.page-blog__feature-description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
  padding: 10px 20px 20px;
  flex-grow: 1;
}

.page-blog__faq .page-blog__section-title {
  color: #F2C14E; /* Gold */
}

.page-blog__faq-list {
  margin-top: 40px;
}

.page-blog__faq-item {
  background: #11271B; /* Card BG */
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-blog__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background: #11271B; /* Card BG */
  border-bottom: 1px solid #1E3A2A; /* Divider */
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for Chrome */
}

.page-blog__faq-question:hover {
  background-color: #1E3A2A; /* Darker on hover */
}

.page-blog__faq-qtext {
  flex-grow: 1;
}

.page-blog__faq-toggle {
  font-size: 1.5em;
  font-weight: 700;
  color: #57E38D; /* Glow */
  margin-left: 15px;
  line-height: 1;
}

.page-blog__faq-item[open] .page-blog__faq-question {
  border-bottom-color: transparent;
}

.page-blog__faq-item[open] .page-blog__faq-toggle {
  content: '−';
}

.page-blog__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.6;
}

.page-blog__faq-answer p {
  margin-bottom: 10px;
}

.page-blog__faq-answer p:last-child {
  margin-bottom: 0;
}

.page-blog__conclusion {
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
  background: linear-gradient(180deg, #08160F 0%, #0A4B2C 100%); /* Background to Deep Green */
}

.page-blog__conclusion-content {
  max-width: 900px;
}

.page-blog__conclusion .page-blog__section-title {
  color: #F2C14E; /* Gold */
  margin-bottom: 30px;
}

.page-blog__conclusion .page-blog__text-block {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 25px;
}

/* Background colors for sections */
.page-blog__dark-bg {
  background-color: #08160F;
  color: #F2FFF6;
}

.page-blog__light-bg {
  background-color: #0A4B2C; /* Deep Green for contrast sections */
  color: #F2FFF6;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog__main-title {
    font-size: 3em;
  }

  .page-blog__section-title {
    font-size: 2em;
  }

  .page-blog__hero-section {
    padding-top: 40px;
    padding-bottom: 30px;
  }

  .page-blog__section {
    padding: 40px 0;
  }
}

@media (max-width: 768px) {
  .page-blog__main-title {
    font-size: 2.5em;
  }

  .page-blog__section-title {
    font-size: 1.8em;
  }

  .page-blog__subtitle {
    font-size: 1.5em;
  }

  .page-blog__hero-section {
    padding: 20px 15px;
    padding-top: 10px !important; /* body handles header offset */
  }

  .page-blog__section {
    padding: 30px 0;
  }

  .page-blog__container {
    padding: 0 15px;
  }

  .page-blog__cta-button,
  .page-blog__btn-primary,
  .page-blog__btn-secondary,
  .page-blog a[class*="button"],
  .page-blog a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-blog__cta-buttons,
  .page-blog__button-group,
  .page-blog__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-blog__cta-buttons {
    display: flex;
    flex-direction: column;
  }

  .page-blog img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog__hero-image-wrapper,
  .page-blog__game-cards,
  .page-blog__promo-grid,
  .page-blog__feature-grid,
  .page-blog__guide-steps {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-blog__game-image,
  .page-blog__promo-image,
  .page-blog__feature-image {
    height: auto;
    min-height: 200px; /* Ensure minimum height for content images */
  }

  .page-blog__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-blog__faq-answer {
    padding: 15px 20px;
  }
}