.page-blog-how-to-choose-beto-studart-games {
  --primary-color: #C61F1F;
  --secondary-color: #E53030;
  --button-gradient-start: #FFB04A;
  --button-gradient-end: #D86A14;
  --card-bg: #2A1212;
  --body-bg: #140C0C;
  --text-main: #FFF1E8;
  --border-color: #6A1E1E;
  --gold-color: #F3C54D;
  --deep-red-color: #7E0D0D;
  color: var(--text-main); /* Default text color for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-how-to-choose-beto-studart-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px; /* Small top padding, more bottom padding */
  text-align: center;
  overflow: hidden;
  color: var(--text-main);
  background: var(--body-bg);
}

.page-blog-how-to-choose-beto-studart-games__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-how-to-choose-beto-studart-games__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-blog-how-to-choose-beto-studart-games__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
  margin-top: -100px; /* Overlap slightly with the bottom of the image */
  background: linear-gradient(180deg, rgba(20, 12, 12, 0.8) 0%, var(--body-bg) 100%);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-blog-how-to-choose-beto-studart-games__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  color: var(--gold-color);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-blog-how-to-choose-beto-studart-games__description {
  font-size: 1.2em;
  color: var(--text-main);
  margin-bottom: 30px;
}

.page-blog-how-to-choose-beto-studart-games__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-blog-how-to-choose-beto-studart-games__btn-primary,
.page-blog-how-to-choose-beto-studart-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-how-to-choose-beto-studart-games__btn-primary {
  background: linear-gradient(180deg, var(--button-gradient-start) 0%, var(--button-gradient-end) 100%);
  color: var(--body-bg);
  border: none;
}

.page-blog-how-to-choose-beto-studart-games__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 176, 74, 0.4);
}

.page-blog-how-to-choose-beto-studart-games__btn-secondary {
  background: transparent;
  color: var(--gold-color);
  border: 2px solid var(--gold-color);
}

.page-blog-how-to-choose-beto-studart-games__btn-secondary:hover {
  background: var(--gold-color);
  color: var(--body-bg);
  transform: translateY(-3px);
}

.page-blog-how-to-choose-beto-studart-games__section {
  padding: 60px 0;
}

.page-blog-how-to-choose-beto-studart-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-how-to-choose-beto-studart-games__heading {
  font-size: 2.5em;
  color: var(--gold-color);
  margin-bottom: 40px;
  text-align: center;
  font-weight: bold;
}

.page-blog-how-to-choose-beto-studart-games__sub-heading {
  font-size: 1.8em;
  color: var(--gold-color);
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-blog-how-to-choose-beto-studart-games__mini-heading {
  font-size: 1.4em;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-how-to-choose-beto-studart-games__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--text-main);
}

.page-blog-how-to-choose-beto-studart-games__paragraph strong {
  color: var(--gold-color);
}

.page-blog-how-to-choose-beto-studart-games__image-content {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: block;
}

.page-blog-how-to-choose-beto-studart-games__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-how-to-choose-beto-studart-games__feature-card {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  text-align: left;
  color: var(--text-main);
}

.page-blog-how-to-choose-beto-studart-games__feature-title {
  font-size: 1.5em;
  color: var(--gold-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-how-to-choose-beto-studart-games__feature-text {
  font-size: 1em;
  color: var(--text-main);
}

.page-blog-how-to-choose-beto-studart-games__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-blog-how-to-choose-beto-studart-games__list-item {
  font-size: 1.1em;
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
  color: var(--text-main);
}

.page-blog-how-to-choose-beto-studart-games__list-item::before {
  content: '⚡';
  position: absolute;
  left: 0;
  color: var(--gold-color);
}

.page-blog-how-to-choose-beto-studart-games__faq-section {
  padding: 60px 0;
  background: var(--body-bg);
}

.page-blog-how-to-choose-beto-studart-games__faq-list {
  margin-top: 40px;
}

.page-blog-how-to-choose-beto-studart-games__faq-item {
  background: var(--card-bg);
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-choose-beto-studart-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  cursor: pointer;
  font-size: 1.3em;
  font-weight: bold;
  color: var(--gold-color);
  background: var(--card-bg);
  border-bottom: 1px solid var(--border-color);
  list-style: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.page-blog-how-to-choose-beto-studart-games__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-how-to-choose-beto-studart-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-blog-how-to-choose-beto-studart-games__faq-item[open] .page-blog-how-to-choose-beto-studart-games__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-how-to-choose-beto-studart-games__faq-answer {
  padding: 0 30px 20px;
  font-size: 1.1em;
  color: var(--text-main);
  background: var(--card-bg);
}

.page-blog-how-to-choose-beto-studart-games__conclusion-section {
  padding: 60px 0;
  text-align: center;
  background: var(--body-bg);
  color: var(--text-main);
}

.page-blog-how-to-choose-beto-studart-games__conclusion-section .page-blog-how-to-choose-beto-studart-games__paragraph {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

.page-blog-how-to-choose-beto-studart-games__conclusion-section .page-blog-how-to-choose-beto-studart-games__btn-primary {
  margin-top: 20px;
}

/* Color contrast safety */
.page-blog-how-to-choose-beto-studart-games__dark-bg {
  background: var(--body-bg);
  color: var(--text-main);
}

.page-blog-how-to-choose-beto-studart-games__light-bg {
  background: #f8f9fa; /* Using a very light background for contrast */
  color: #333333;
}

.page-blog-how-to-choose-beto-studart-games__light-bg .page-blog-how-to-choose-beto-studart-games__heading,
.page-blog-how-to-choose-beto-studart-games__light-bg .page-blog-how-to-choose-beto-studart-games__sub-heading {
  color: var(--primary-color);
}

.page-blog-how-to-choose-beto-studart-games__light-bg .page-blog-how-to-choose-beto-studart-games__paragraph,
.page-blog-how-to-choose-beto-studart-games__light-bg .page-blog-how-to-choose-beto-studart-games__list-item,
.page-blog-how-to-choose-beto-studart-games__light-bg .page-blog-how-to-choose-beto-studart-games__feature-text {
  color: #333333;
}

.page-blog-how-to-choose-beto-studart-games__light-bg .page-blog-how-to-choose-beto-studart-games__card {
  background: #ffffff;
  color: #333333;
  border: 1px solid #e0e0e0;
}

.page-blog-how-to-choose-beto-studart-games__light-bg .page-blog-how-to-choose-beto-studart-games__card .page-blog-how-to-choose-beto-studart-games__feature-title {
  color: var(--primary-color);
}

.page-blog-how-to-choose-beto-studart-games__light-bg .page-blog-how-to-choose-beto-studart-games__faq-item {
  background: #ffffff;
  border: 1px solid #e0e0e0;
}

.page-blog-how-to-choose-beto-studart-games__light-bg .page-blog-how-to-choose-beto-studart-games__faq-question {
  color: var(--primary-color);
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
}

.page-blog-how-to-choose-beto-studart-games__light-bg .page-blog-how-to-choose-beto-studart-games__faq-answer {
  color: #333333;
  background: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-how-to-choose-beto-studart-games__hero-content {
    margin-top: -50px;
    padding: 30px 15px;
  }

  .page-blog-how-to-choose-beto-studart-games__main-title {
    font-size: clamp(1.8em, 5vw, 3em);
  }

  .page-blog-how-to-choose-beto-studart-games__description {
    font-size: 1.1em;
  }

  .page-blog-how-to-choose-beto-studart-games__heading {
    font-size: 2em;
  }

  .page-blog-how-to-choose-beto-studart-games__sub-heading {
    font-size: 1.6em;
  }

  .page-blog-how-to-choose-beto-studart-games__mini-heading {
    font-size: 1.3em;
  }

  .page-blog-how-to-choose-beto-studart-games__feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-choose-beto-studart-games__hero-section {
    padding: 10px 0 40px;
  }

  .page-blog-how-to-choose-beto-studart-games__hero-content {
    margin-top: -30px;
    padding: 25px 15px;
  }

  .page-blog-how-to-choose-beto-studart-games__main-title {
    font-size: clamp(1.5em, 6vw, 2.5em);
  }

  .page-blog-how-to-choose-beto-studart-games__description {
    font-size: 1em;
  }

  .page-blog-how-to-choose-beto-studart-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-how-to-choose-beto-studart-games__btn-primary,
  .page-blog-how-to-choose-beto-studart-games__btn-secondary {
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-blog-how-to-choose-beto-studart-games__section {
    padding: 40px 0;
  }

  .page-blog-how-to-choose-beto-studart-games__container {
    padding: 0 15px;
  }

  .page-blog-how-to-choose-beto-studart-games__heading {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-blog-how-to-choose-beto-studart-games__sub-heading {
    font-size: 1.4em;
    margin-top: 30px;
  }

  .page-blog-how-to-choose-beto-studart-games__mini-heading {
    font-size: 1.2em;
  }

  .page-blog-how-to-choose-beto-studart-games__paragraph,
  .page-blog-how-to-choose-beto-studart-games__list-item,
  .page-blog-how-to-choose-beto-studart-games__feature-text {
    font-size: 0.95em;
  }

  .page-blog-how-to-choose-beto-studart-games__feature-grid {
    grid-template-columns: 1fr;
  }

  .page-blog-how-to-choose-beto-studart-games__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-blog-how-to-choose-beto-studart-games__faq-answer {
    padding: 0 20px 15px;
    font-size: 1em;
  }

  /* Mobile image responsiveness */
  .page-blog-how-to-choose-beto-studart-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-how-to-choose-beto-studart-games__section,
  .page-blog-how-to-choose-beto-studart-games__card,
  .page-blog-how-to-choose-beto-studart-games__container,
  .page-blog-how-to-choose-beto-studart-games__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-how-to-choose-beto-studart-games__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }
}