/* style/blog-365ph-latest-promotions-analysis.css */

:root {
  --365ph-primary-color: #F2C14E;
  --365ph-secondary-color: #FFD36B;
  --365ph-background-dark: #0A0A0A;
  --365ph-card-bg: #111111;
  --365ph-text-main: #FFF6D6;
  --365ph-border-color: #3A2A12;
  --365ph-glow-color: #FFD36B;
  --365ph-button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

.page-blog-365ph-latest-promotions-analysis {
  background-color: var(--365ph-background-dark);
  color: var(--365ph-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-365ph-latest-promotions-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-365ph-latest-promotions-analysis__hero-section {
  background: var(--365ph-background-dark);
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  position: relative;
  overflow: hidden;
}

.page-blog-365ph-latest-promotions-analysis__hero-image-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
}

.page-blog-365ph-latest-promotions-analysis__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-blog-365ph-latest-promotions-analysis__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px 80px;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.8) 0%, var(--365ph-background-dark) 100%);
  margin-top: -100px; /* Overlap with image for visual flow */
}

.page-blog-365ph-latest-promotions-analysis__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--365ph-secondary-color);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-blog-365ph-latest-promotions-analysis__hero-description {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 30px;
  color: var(--365ph-text-main);
}

.page-blog-365ph-latest-promotions-analysis__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-365ph-latest-promotions-analysis__btn-primary,
.page-blog-365ph-latest-promotions-analysis__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog-365ph-latest-promotions-analysis__btn-primary {
  background: var(--365ph-button-gradient);
  color: #0A0A0A; /* Dark text for light gradient */
  border: none;
  box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
}

.page-blog-365ph-latest-promotions-analysis__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 211, 107, 0.6);
}

.page-blog-365ph-latest-promotions-analysis__btn-secondary {
  background: transparent;
  color: var(--365ph-secondary-color);
  border: 2px solid var(--365ph-secondary-color);
}

.page-blog-365ph-latest-promotions-analysis__btn-secondary:hover {
  background: var(--365ph-secondary-color);
  color: var(--365ph-background-dark);
}

.page-blog-365ph-latest-promotions-analysis__section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--365ph-primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.4);
}

.page-blog-365ph-latest-promotions-analysis__content-section {
  padding: 60px 0;
}

.page-blog-365ph-latest-promotions-analysis__text-block {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 30px;
  text-align: center;
  color: var(--365ph-text-main);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-365ph-latest-promotions-analysis__feature-grid,
.page-blog-365ph-latest-promotions-analysis__promo-cards,
.page-blog-365ph-latest-promotions-analysis__vip-features,
.page-blog-365ph-latest-promotions-analysis__game-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-365ph-latest-promotions-analysis__feature-card,
.page-blog-365ph-latest-promotions-analysis__promo-card,
.page-blog-365ph-latest-promotions-analysis__vip-item,
.page-blog-365ph-latest-promotions-analysis__game-card {
  background-color: var(--365ph-card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--365ph-border-color);
}

.page-blog-365ph-latest-promotions-analysis__feature-image,
.page-blog-365ph-latest-promotions-analysis__promo-image,
.page-blog-365ph-latest-promotions-analysis__vip-image,
.page-blog-365ph-latest-promotions-analysis__game-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 20px;
}

.page-blog-365ph-latest-promotions-analysis__feature-title,
.page-blog-365ph-latest-promotions-analysis__promo-title,
.page-blog-365ph-latest-promotions-analysis__vip-title,
.page-blog-365ph-latest-promotions-analysis__game-title {
  font-size: 1.5rem;
  color: var(--365ph-primary-color);
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-blog-365ph-latest-promotions-analysis__feature-text,
.page-blog-365ph-latest-promotions-analysis__promo-text,
.page-blog-365ph-latest-promotions-analysis__vip-text,
.page-blog-365ph-latest-promotions-analysis__game-text {
  font-size: 1rem;
  color: var(--365ph-text-main);
  padding: 0 20px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-365ph-latest-promotions-analysis__list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-blog-365ph-latest-promotions-analysis__list-item {
  background-color: var(--365ph-card-bg);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--365ph-border-color);
}

.page-blog-365ph-latest-promotions-analysis__list-title,
.page-blog-365ph-latest-promotions-analysis__step-title {
  font-size: 1.4rem;
  color: var(--365ph-secondary-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-blog-365ph-latest-promotions-analysis__list-text,
.page-blog-365ph-latest-promotions-analysis__step-text {
  font-size: 1rem;
  color: var(--365ph-text-main);
}

.page-blog-365ph-latest-promotions-analysis__steps-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-365ph-latest-promotions-analysis__step-item {
  background-color: var(--365ph-card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--365ph-border-color);
  text-align: center;
}

.page-blog-365ph-latest-promotions-analysis__cta-center {
  text-align: center;
  margin-top: 50px;
}

/* FAQ Section */
.page-blog-365ph-latest-promotions-analysis__faq-section {
  padding: 60px 0;
}

.page-blog-365ph-latest-promotions-analysis__faq-list {
  margin-top: 40px;
}

.page-blog-365ph-latest-promotions-analysis__faq-item {
  background-color: var(--365ph-card-bg);
  border: 1px solid var(--365ph-border-color);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

.page-blog-365ph-latest-promotions-analysis__faq-question:hover {
  background-color: rgba(242, 193, 78, 0.1);
}

.page-blog-365ph-latest-promotions-analysis__faq-title {
  margin: 0;
  color: var(--365ph-primary-color);
  font-size: 1.2rem;
}

.page-blog-365ph-latest-promotions-analysis__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--365ph-secondary-color);
}

.page-blog-365ph-latest-promotions-analysis__faq-item.active .page-blog-365ph-latest-promotions-analysis__faq-toggle {
  transform: rotate(45deg); /* Plus to X/Minus */
}

.page-blog-365ph-latest-promotions-analysis__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--365ph-text-main);
  background-color: rgba(17, 17, 17, 0.8);
}

.page-blog-365ph-latest-promotions-analysis__faq-item.active .page-blog-365ph-latest-promotions-analysis__faq-answer {
  max-height: 1000px !important; /* Use !important to ensure it expands */
  padding: 15px 25px 25px;
}

.page-blog-365ph-latest-promotions-analysis__faq-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
}

.page-blog-365ph-latest-promotions-analysis__conclusion-section {
  padding: 60px 0 80px;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-blog-365ph-latest-promotions-analysis__hero-content {
    padding: 30px 20px 60px;
  }

  .page-blog-365ph-latest-promotions-analysis__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .page-blog-365ph-latest-promotions-analysis__section-title {
    font-size: clamp(1.8rem, 4.5vw, 2.5rem);
  }

  .page-blog-365ph-latest-promotions-analysis__feature-image,
  .page-blog-365ph-latest-promotions-analysis__promo-image,
  .page-blog-365ph-latest-promotions-analysis__vip-image,
  .page-blog-365ph-latest-promotions-analysis__game-image {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .page-blog-365ph-latest-promotions-analysis__hero-section {
    padding-top: var(--header-offset, 100px) !important; /* Mobile: controlled by shared's media */
  }

  .page-blog-365ph-latest-promotions-analysis__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-blog-365ph-latest-promotions-analysis__hero-description {
    font-size: 1rem;
  }

  .page-blog-365ph-latest-promotions-analysis__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-blog-365ph-latest-promotions-analysis__btn-primary,
  .page-blog-365ph-latest-promotions-analysis__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .page-blog-365ph-latest-promotions-analysis__container {
    padding: 0 15px;
  }

  .page-blog-365ph-latest-promotions-analysis__feature-grid,
  .page-blog-365ph-latest-promotions-analysis__promo-cards,
  .page-blog-365ph-latest-promotions-analysis__vip-features,
  .page-blog-365ph-latest-promotions-analysis__game-types {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-365ph-latest-promotions-analysis__feature-image,
  .page-blog-365ph-latest-promotions-analysis__promo-image,
  .page-blog-365ph-latest-promotions-analysis__vip-image,
  .page-blog-365ph-latest-promotions-analysis__game-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-blog-365ph-latest-promotions-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-365ph-latest-promotions-analysis__section,
  .page-blog-365ph-latest-promotions-analysis__card,
  .page-blog-365ph-latest-promotions-analysis__container,
  .page-blog-365ph-latest-promotions-analysis__feature-card,
  .page-blog-365ph-latest-promotions-analysis__promo-card,
  .page-blog-365ph-latest-promotions-analysis__vip-item,
  .page-blog-365ph-latest-promotions-analysis__game-card,
  .page-blog-365ph-latest-promotions-analysis__list-item,
  .page-blog-365ph-latest-promotions-analysis__step-item,
  .page-blog-365ph-latest-promotions-analysis__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-365ph-latest-promotions-analysis__list-title,
  .page-blog-365ph-latest-promotions-analysis__step-title {
    font-size: 1.2rem;
  }

  .page-blog-365ph-latest-promotions-analysis__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-blog-365ph-latest-promotions-analysis__faq-title {
    font-size: 1rem;
  }

  .page-blog-365ph-latest-promotions-analysis__faq-answer {
    padding: 0 20px;
  }

  .page-blog-365ph-latest-promotions-analysis__faq-item.active .page-blog-365ph-latest-promotions-analysis__faq-answer {
    padding: 10px 20px 20px;
  }
}

/* General image styles to ensure no small icons */
.page-blog-365ph-latest-promotions-analysis img:not(.page-blog-365ph-latest-promotions-analysis__category-icon):not(.page-blog-365ph-latest-promotions-analysis__partner-logo) {
  min-width: 200px;
  min-height: 200px;
}

/* Specific exceptions for small icons if they were used (though generally prohibited) */
/* If category icons or partner logos were to be used, their specific styles would be here */

/* No CSS filters allowed for images */
.page-blog-365ph-latest-promotions-analysis img {
  filter: none !important;
}

/* Ensure contrast for all text */
.page-blog-365ph-latest-promotions-analysis h1, .page-blog-365ph-latest-promotions-analysis h2, .page-blog-365ph-latest-promotions-analysis h3, .page-blog-365ph-latest-promotions-analysis h4, .page-blog-365ph-latest-promotions-analysis h5, .page-blog-365ph-latest-promotions-analysis h6,
.page-blog-365ph-latest-promotions-analysis p, .page-blog-365ph-latest-promotions-analysis li,
.page-blog-365ph-latest-promotions-analysis a {
  color: var(--365ph-text-main);
}

.page-blog-365ph-latest-promotions-analysis__main-title,
.page-blog-365ph-latest-promotions-analysis__section-title,
.page-blog-365ph-latest-promotions-analysis__feature-title,
.page-blog-365ph-latest-promotions-analysis__promo-title,
.page-blog-365ph-latest-promotions-analysis__vip-title,
.page-blog-365ph-latest-promotions-analysis__game-title,
.page-blog-365ph-latest-promotions-analysis__list-title,
.page-blog-365ph-latest-promotions-analysis__step-title,
.page-blog-365ph-latest-promotions-analysis__faq-title {
  color: var(--365ph-primary-color); /* Headings use primary color */
}

.page-blog-365ph-latest-promotions-analysis__faq-toggle {
  color: var(--365ph-secondary-color);
}

.page-blog-365ph-latest-promotions-analysis__btn-primary {
  color: #0A0A0A; /* Dark text for light gradient */
}

.page-blog-365ph-latest-promotions-analysis__btn-secondary {
  color: var(--365ph-secondary-color);
}

.page-blog-365ph-latest-promotions-analysis__btn-secondary:hover {
  color: var(--365ph-background-dark);
}