.page-blog-pagcor-license-analysis {
  --color-primary: #F2C14E;
  --color-secondary: #FFD36B;
  --color-button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  --color-card-bg: #111111;
  --color-background: #0A0A0A;
  --color-text-main: #FFF6D6;
  --color-border: #3A2A12;
  --color-glow: #FFD36B;

  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--color-text-main); /* Default text color for dark background */
  background-color: var(--color-background); /* Overall page background */
}

.page-blog-pagcor-license-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-pagcor-license-analysis__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  box-sizing: border-box;
}

.page-blog-pagcor-license-analysis__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.page-blog-pagcor-license-analysis__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image slightly for text readability */
}

.page-blog-pagcor-license-analysis__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  max-width: 900px;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
  border-radius: 8px;
}

.page-blog-pagcor-license-analysis__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--color-text-main);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-blog-pagcor-license-analysis__intro-text {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-main);
  margin-bottom: 30px;
}

.page-blog-pagcor-license-analysis__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--color-button-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-blog-pagcor-license-analysis__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-blog-pagcor-license-analysis__content-section {
  padding: 60px 0;
}

.page-blog-pagcor-license-analysis__dark-bg {
  background-color: var(--color-card-bg);
}

.page-blog-pagcor-license-analysis__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-blog-pagcor-license-analysis__sub-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-secondary);
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-blog-pagcor-license-analysis__paragraph {
  font-size: 1.1rem;
  color: var(--color-text-main);
  margin-bottom: 15px;
}

.page-blog-pagcor-license-analysis__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  object-fit: cover;
}

.page-blog-pagcor-license-analysis__faq-section {
  padding: 60px 0;
}

.page-blog-pagcor-license-analysis__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-pagcor-license-analysis__faq-item {
  background-color: var(--color-background);
  border: 1px solid var(--color-border);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-blog-pagcor-license-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--color-text-main);
  background-color: var(--color-card-bg);
  transition: background-color 0.3s ease;
}

.page-blog-pagcor-license-analysis__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.page-blog-pagcor-license-analysis__faq-toggle {
  font-size: 1.5rem;
  color: var(--color-secondary);
  transition: transform 0.3s ease;
}

.page-blog-pagcor-license-analysis__faq-item.active .page-blog-pagcor-license-analysis__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-pagcor-license-analysis__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--color-text-main);
}

.page-blog-pagcor-license-analysis__faq-item.active .page-blog-pagcor-license-analysis__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 20px;
}

.page-blog-pagcor-license-analysis__faq-answer p {
  margin-bottom: 0;
}

.page-blog-pagcor-license-analysis__cta-section {
  padding: 60px 0;
  text-align: center;
  background-color: var(--color-card-bg);
}

.page-blog-pagcor-license-analysis__btn-primary {
  background: var(--color-button-gradient);
  color: #ffffff;
  border: none;
}

.page-blog-pagcor-license-analysis__btn-primary:hover {
  background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-blog-pagcor-license-analysis {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-pagcor-license-analysis__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-blog-pagcor-license-analysis__hero-content {
    position: static;
    transform: none;
    background: none; /* Remove overlay on small screens if desired */
    max-width: 100%;
    padding: 20px 15px;
  }

  .page-blog-pagcor-license-analysis__hero-image-wrapper {
    max-height: 300px;
  }

  .page-blog-pagcor-license-analysis__main-title {
    font-size: 2rem;
  }

  .page-blog-pagcor-license-analysis__intro-text {
    font-size: 1rem;
  }

  .page-blog-pagcor-license-analysis__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 15px 15px;
  }

  .page-blog-pagcor-license-analysis__content-section {
    padding: 40px 0;
  }

  .page-blog-pagcor-license-analysis__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-blog-pagcor-license-analysis__sub-title {
    font-size: 1.3rem;
    margin-top: 20px;
  }

  .page-blog-pagcor-license-analysis__paragraph {
    font-size: 1rem;
  }

  .page-blog-pagcor-license-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-blog-pagcor-license-analysis__container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-pagcor-license-analysis__faq-question {
    font-size: 1.1rem;
    padding: 15px;
  }

  .page-blog-pagcor-license-analysis__faq-answer {
    padding: 0 15px;
  }

  .page-blog-pagcor-license-analysis__faq-item.active .page-blog-pagcor-license-analysis__faq-answer {
    padding: 15px;
  }

  .page-blog-pagcor-license-analysis__cta-section .page-blog-pagcor-license-analysis__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
}