.page-blog {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

.page-blog__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 60px;
  text-align: center;
  overflow: hidden;
}

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

.page-blog__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 8px;
}

.page-blog__main-title {
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  font-size: clamp(28px, 4vw, 48px); /* Responsive font size */
}

.page-blog__description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-blog__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #F2FFF6; /* Text Main for button */
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog__cta-button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.page-blog__cta-button--wide {
  min-width: 250px;
}

.page-blog__cta-button--primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
}

.page-blog__cta-button--secondary {
  background: #11271B; /* Card BG */
  color: #F2FFF6;
  border: 1px solid #2E7A4E; /* Border */
  margin-left: 15px;
}

.page-blog__cta-button--secondary:hover {
  background: #0A4B2C; /* Deep Green */
}

.page-blog__section {
  padding: 60px 20px;
}

.page-blog__dark-bg {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-blog__light-bg {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
}

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

.page-blog__section-title {
  color: #F2FFF6; /* Text Main */
  font-size: clamp(24px, 3vw, 38px);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-blog__sub-title {
  color: #F2FFF6; /* Text Main */
  font-size: clamp(20px, 2.5vw, 28px);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog__text {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
  margin-bottom: 15px;
}

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

.page-blog__card {
  background-color: #08160F; /* Background */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-blog__card-title {
  color: #F2FFF6; /* Text Main */
  font-size: 1.3em;
  margin-bottom: 15px;
}

.page-blog__card-text {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
  margin-bottom: 20px;
}

.page-blog__card-link {
  color: #57E38D; /* Glow */
  text-decoration: none;
  font-weight: bold;
}

.page-blog__card-link:hover {
  text-decoration: underline;
}

.page-blog__image-with-text {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-top: 40px;
}

.page-blog__content-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.page-blog__text-content {
  flex: 1;
}

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

.page-blog__column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.page-blog__game-card {
  background-color: #08160F; /* Background */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-blog__game-title {
  font-size: 1.2em;
  color: #F2FFF6; /* Text Main */
  margin: 15px 15px 10px 15px;
}

.page-blog__game-link {
  color: #F2FFF6;
  text-decoration: none;
}

.page-blog__game-link:hover {
  color: #57E38D; /* Glow */
  text-decoration: underline;
}

.page-blog__game-description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.9em;
  padding: 0 15px 15px 15px;
}

.page-blog__news-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-blog__news-item {
  background-color: #08160F; /* Background */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog__news-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.page-blog__news-title {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.page-blog__news-link {
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
}

.page-blog__news-link:hover {
  color: #57E38D; /* Glow */
  text-decoration: underline;
}

.page-blog__news-date {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.85em;
  margin-bottom: 10px;
}

.page-blog__news-excerpt {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
}

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

.page-blog__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  font-size: 1.1em;
  list-style: none;
}

.page-blog__faq-question::-webkit-details-marker {
  display: none;
}

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

.page-blog__faq-answer {
  padding: 0 20px 15px 20px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
}

.page-blog__faq-item[open] .page-blog__faq-question {
  border-bottom: 1px solid #2E7A4E; /* Border */
}

.page-blog__button-group {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

/* Responsive styles */
@media (max-width: 992px) {
  .page-blog__hero-content {
    padding: 15px;
  }

  .page-blog__main-title {
    font-size: clamp(24px, 5vw, 42px);
  }

  .page-blog__description {
    font-size: 1em;
  }

  .page-blog__image-with-text {
    flex-direction: column;
    align-items: center;
  }

  .page-blog__content-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-blog__hero-section {
    padding-bottom: 40px;
  }

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

  .page-blog__section-title {
    font-size: clamp(22px, 6vw, 32px);
  }

  .page-blog__sub-title {
    font-size: clamp(18px, 5vw, 24px);
  }

  .page-blog__cta-button {
    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: 0 !important;
    margin-bottom: 10px;
  }

  .page-blog__button-group {
    flex-direction: column;
    gap: 10px;
  }

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

  .page-blog__section,
  .page-blog__card,
  .page-blog__container,
  .page-blog__game-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog__hero-section {
    padding-top: 10px !important; /* body 已承担 --header-offset */
  }
}

@media (max-width: 480px) {
  .page-blog__main-title {
    font-size: clamp(22px, 7vw, 36px);
  }

  .page-blog__description {
    font-size: 0.9em;
  }

  .page-blog__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-blog__card-grid,
  .page-blog__grid-columns,
  .page-blog__game-cards-grid {
    grid-template-columns: 1fr;
  }
}