.page-blog-seven-standards-for-reputable-card-games {
  font-family: 'Arial', sans-serif;
  color: #FFF3E6; /* Text Main */
  background-color: var(--background-color, #0D0E12); /* Background */
}

.page-blog-seven-standards-for-reputable-card-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 40px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  overflow: hidden;
}

.page-blog-seven-standards-for-reputable-card-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px;
}

.page-blog-seven-standards-for-reputable-card-games__hero-content {
  max-width: 90%;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  z-index: 1;
  margin-top: -100px; /* Pull content slightly over image, but not covering text */
  background: linear-gradient(0deg, rgba(13,14,18,0.9) 0%, rgba(13,14,18,0.7) 50%, rgba(13,14,18,0.0) 100%);
  padding-top: 120px;
}

.page-blog-seven-standards-for-reputable-card-games__main-title {
  font-weight: 700;
  line-height: 1.2;
  color: #FFB04D; /* Glow */
  margin-bottom: 15px;
  text-shadow: 0 0 8px rgba(255,176,77,0.5);
  font-size: clamp(2rem, 4vw, 3rem); /* Responsive font size */
}

.page-blog-seven-standards-for-reputable-card-games__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-seven-standards-for-reputable-card-games__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(255,140,26,0.4);
  border: none;
}

.page-blog-seven-standards-for-reputable-card-games__cta-button:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
}

.page-blog-seven-standards-for-reputable-card-games__content-section {
  padding: 60px 20px;
  background-color: var(--background-color, #0D0E12); /* Background */
}

.page-blog-seven-standards-for-reputable-card-games__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-blog-seven-standards-for-reputable-card-games__section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #FF8C1A; /* Main color */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  text-shadow: 0 0 5px rgba(255,140,26,0.3);
}

.page-blog-seven-standards-for-reputable-card-games__text-block {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #FFF3E6; /* Text Main */
}

.page-blog-seven-standards-for-reputable-card-games__standard-item {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.page-blog-seven-standards-for-reputable-card-games__standard-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: #FFA53A; /* Auxiliary color */
  margin-bottom: 20px;
  text-align: left;
  font-weight: 600;
}

.page-blog-seven-standards-for-reputable-card-games__standard-image {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 25px;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-seven-standards-for-reputable-card-games__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

.page-blog-seven-standards-for-reputable-card-games__btn-primary,
.page-blog-seven-standards-for-reputable-card-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-seven-standards-for-reputable-card-games__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button color */
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(255,140,26,0.4);
}

.page-blog-seven-standards-for-reputable-card-games__btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
}

.page-blog-seven-standards-for-reputable-card-games__btn-secondary {
  background: #17191F; /* Card BG */
  color: #FF8C1A; /* Main color */
  border: 2px solid #FF8C1A; /* Main color */
  box-shadow: 0 4px 15px rgba(255,140,26,0.2);
}

.page-blog-seven-standards-for-reputable-card-games__btn-secondary:hover {
  transform: translateY(-2px);
  background: #FF8C1A;
  color: #ffffff;
}

.page-blog-seven-standards-for-reputable-card-games__faq-section {
  padding: 60px 20px;
  background-color: var(--background-color, #0D0E12); /* Background */
}

.page-blog-seven-standards-for-reputable-card-games__faq-list {
  margin-top: 40px;
}

.page-blog-seven-standards-for-reputable-card-games__faq-item {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-seven-standards-for-reputable-card-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  color: #FFA53A; /* Auxiliary color */
  font-weight: bold;
  font-size: 1.15em;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-seven-standards-for-reputable-card-games__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-seven-standards-for-reputable-card-games__faq-question:hover {
  background-color: rgba(255,165,58,0.1);
}

.page-blog-seven-standards-for-reputable-card-games__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: #FFB04D; /* Glow */
}

.page-blog-seven-standards-for-reputable-card-games__faq-answer {
  padding: 0 20px 20px;
  font-size: 1em;
  line-height: 1.6;
  color: #FFF3E6; /* Text Main */
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-blog-seven-standards-for-reputable-card-games {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-seven-standards-for-reputable-card-games__hero-content {
    margin-top: -60px;
    padding-top: 80px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-seven-standards-for-reputable-card-games__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-blog-seven-standards-for-reputable-card-games__hero-description {
    font-size: 1em;
  }

  .page-blog-seven-standards-for-reputable-card-games__cta-button,
  .page-blog-seven-standards-for-reputable-card-games__btn-primary,
  .page-blog-seven-standards-for-reputable-card-games__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1em;
    margin-bottom: 10px; /* Add margin for stacked buttons */
  }

  .page-blog-seven-standards-for-reputable-card-games__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-seven-standards-for-reputable-card-games__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 30px;
  }

  .page-blog-seven-standards-for-reputable-card-games__standard-title {
    font-size: clamp(1.2rem, 4.5vw, 1.8rem);
  }

  .page-blog-seven-standards-for-reputable-card-games__standard-item {
    padding: 20px;
  }

  .page-blog-seven-standards-for-reputable-card-games__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-blog-seven-standards-for-reputable-card-games__container,
  .page-blog-seven-standards-for-reputable-card-games__content-section,
  .page-blog-seven-standards-for-reputable-card-games__faq-section {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-blog-seven-standards-for-reputable-card-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-seven-standards-for-reputable-card-games video,
  .page-blog-seven-standards-for-reputable-card-games__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-seven-standards-for-reputable-card-games__video-section,
  .page-blog-seven-standards-for-reputable-card-games__video-container,
  .page-blog-seven-standards-for-reputable-card-games__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  .page-blog-seven-standards-for-reputable-card-games__video-section {
    padding-top: 10px !important;
  }
}