/* style/blog-ph789-gaming-guide.css */

:root {
  --ph789-primary-color: #F2C14E;
  --ph789-secondary-color: #FFD36B;
  --ph789-button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  --ph789-card-bg: #111111;
  --ph789-background-color: #0A0A0A;
  --ph789-text-main: #FFF6D6;
  --ph789-border-color: #3A2A12;
  --ph789-glow-color: #FFD36B;
  --header-offset: 120px; /* Default for desktop */
}

.page-blog-ph789-gaming-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--ph789-text-main); /* Light text for dark body background */
  background-color: var(--ph789-background-color);
}

.page-blog-ph789-gaming-guide__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
  background-color: var(--ph789-background-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-blog-ph789-gaming-guide__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Adjust as needed */
  overflow: hidden;
  position: relative;
}

.page-blog-ph789-gaming-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly dim the image for text contrast */
}

.page-blog-ph789-gaming-guide__hero-content {
  position: relative;
  z-index: 10;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Pull content up slightly over the image for better flow */
}

.page-blog-ph789-gaming-guide__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--ph789-text-main);
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-blog-ph789-gaming-guide__hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--ph789-text-main);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-ph789-gaming-guide__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-ph789-gaming-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-ph789-gaming-guide__content-section {
  padding: 60px 0;
  background-color: var(--ph789-background-color);
}

.page-blog-ph789-gaming-guide__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--ph789-primary-color);
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-blog-ph789-gaming-guide__section-intro {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: var(--ph789-text-main);
}

.page-blog-ph789-gaming-guide__btn-primary,
.page-blog-ph789-gaming-guide__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-ph789-gaming-guide__btn-primary {
  background: var(--ph789-button-gradient);
  color: #ffffff; /* White text for contrast */
  border: 2px solid transparent;
}

.page-blog-ph789-gaming-guide__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.page-blog-ph789-gaming-guide__btn-secondary {
  background: transparent;
  color: var(--ph789-primary-color);
  border: 2px solid var(--ph789-primary-color);
}

.page-blog-ph789-gaming-guide__btn-secondary:hover {
  background: var(--ph789-primary-color);
  color: var(--ph789-background-color);
}

.page-blog-ph789-gaming-guide__features-grid,
.page-blog-ph789-gaming-guide__steps-grid,
.page-blog-ph789-gaming-guide__game-categories,
.page-blog-ph789-gaming-guide__promo-cards,
.page-blog-ph789-gaming-guide__security-features,
.page-blog-ph789-gaming-guide__methods-grid,
.page-blog-ph789-gaming-guide__support-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-ph789-gaming-guide__feature-card,
.page-blog-ph789-gaming-guide__step-card,
.page-blog-ph789-gaming-guide__category-card,
.page-blog-ph789-gaming-guide__promo-card,
.page-blog-ph789-gaming-guide__method-item,
.page-blog-ph789-gaming-guide__channel-card {
  background-color: var(--ph789-card-bg);
  border: 1px solid var(--ph789-border-color);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--ph789-text-main);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page-blog-ph789-gaming-guide__feature-card:hover,
.page-blog-ph789-gaming-guide__step-card:hover,
.page-blog-ph789-gaming-guide__category-card:hover,
.page-blog-ph789-gaming-guide__promo-card:hover,
.page-blog-ph789-gaming-guide__method-item:hover,
.page-blog-ph789-gaming-guide__channel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 20px var(--ph789-glow-color);
}

.page-blog-ph789-gaming-guide__feature-icon,
.page-blog-ph789-gaming-guide__category-icon,
.page-blog-ph789-gaming-guide__method-icon,
.page-blog-ph789-gaming-guide__channel-icon {
  margin-bottom: 20px;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.page-blog-ph789-gaming-guide__feature-title,
.page-blog-ph789-gaming-guide__step-title,
.page-blog-ph789-gaming-guide__category-title,
.page-blog-ph789-gaming-guide__promo-title,
.page-blog-ph789-gaming-guide__security-heading,
.page-blog-ph789-gaming-guide__mobile-heading,
.page-blog-ph789-gaming-guide__method-name,
.page-blog-ph789-gaming-guide__channel-title {
  font-size: 1.4rem;
  color: var(--ph789-primary-color);
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.page-blog-ph789-gaming-guide__category-title a {
  color: var(--ph789-primary-color);
  text-decoration: none;
}

.page-blog-ph789-gaming-guide__category-title a:hover {
  text-decoration: underline;
}

.page-blog-ph789-gaming-guide__feature-description,
.page-blog-ph789-gaming-guide__step-description,
.page-blog-ph789-gaming-guide__category-description,
.page-blog-ph789-gaming-guide__promo-description,
.page-blog-ph789-gaming-guide__security-description,
.page-blog-ph789-gaming-guide__mobile-description,
.page-blog-ph789-gaming-guide__channel-description {
  font-size: 1rem;
  color: var(--ph789-text-main);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-ph789-gaming-guide__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-blog-ph789-gaming-guide__view-all-promos,
.page-blog-ph789-gaming-guide__view-all-payments,
.page-blog-ph789-gaming-guide__contact-link {
  text-align: center;
  margin-top: 40px;
}

.page-blog-ph789-gaming-guide__security-item {
  background-color: var(--ph789-card-bg);
  border: 1px solid var(--ph789-border-color);
  border-radius: 12px;
  padding: 30px;
  color: var(--ph789-text-main);
}

.page-blog-ph789-gaming-guide__security-item a {
  color: var(--ph789-primary-color);
  text-decoration: none;
}

.page-blog-ph789-gaming-guide__security-item a:hover {
  text-decoration: underline;
}

.page-blog-ph789-gaming-guide__mobile-experience {
  background-color: var(--ph789-background-color);
}

.page-blog-ph789-gaming-guide__mobile-features {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
}

.page-blog-ph789-gaming-guide__mobile-text {
  flex: 1;
  max-width: 500px;
  text-align: left;
}

.page-blog-ph789-gaming-guide__app-buttons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.page-blog-ph789-gaming-guide__mobile-image-wrapper {
  flex: 1;
  max-width: 400px;
  display: flex;
  justify-content: center;
}

.page-blog-ph789-gaming-guide__mobile-screenshot {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.page-blog-ph789-gaming-guide__method-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px;
}

.page-blog-ph789-gaming-guide__faq-list {
  margin-top: 40px;
}

.page-blog-ph789-gaming-guide__faq-item {
  background-color: var(--ph789-card-bg);
  border: 1px solid var(--ph789-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-blog-ph789-gaming-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  color: var(--ph789-text-main);
  font-weight: 600;
  font-size: 1.15rem;
  transition: background-color 0.3s ease;
}

.page-blog-ph789-gaming-guide__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.page-blog-ph789-gaming-guide__faq-question h3 {
  margin: 0;
  color: inherit;
  font-size: inherit;
}

.page-blog-ph789-gaming-guide__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  color: var(--ph789-primary-color);
  transition: transform 0.3s ease;
}

.page-blog-ph789-gaming-guide__faq-item.active .page-blog-ph789-gaming-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-ph789-gaming-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--ph789-text-main);
  font-size: 0.95rem;
}

.page-blog-ph789-gaming-guide__faq-item.active .page-blog-ph789-gaming-guide__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px 25px 25px;
}

.page-blog-ph789-gaming-guide__faq-answer p {
  margin: 0;
  color: inherit;
}

.page-blog-ph789-gaming-guide__conclusion {
  text-align: center;
  padding-bottom: 80px;
}

.page-blog-ph789-gaming-guide__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-ph789-gaming-guide__hero-content {
    margin-top: -80px;
  }
  .page-blog-ph789-gaming-guide__mobile-features {
    flex-direction: column;
    gap: 30px;
  }
  .page-blog-ph789-gaming-guide__mobile-text {
    text-align: center;
    max-width: 100%;
  }
  .page-blog-ph789-gaming-guide__app-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  :root {
    --header-offset: 100px; /* Adjust for mobile header height */
  }
  .page-blog-ph789-gaming-guide__hero-section {
    padding-top: var(--header-offset, 100px) !important;
  }
  .page-blog-ph789-gaming-guide__hero-content {
    margin-top: -60px;
    padding: 30px 15px;
  }
  .page-blog-ph789-gaming-guide__section-title {
    font-size: 2rem;
  }
  .page-blog-ph789-gaming-guide__section-intro {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }
  .page-blog-ph789-gaming-guide__features-grid,
  .page-blog-ph789-gaming-guide__steps-grid,
  .page-blog-ph789-gaming-guide__game-categories,
  .page-blog-ph789-gaming-guide__promo-cards,
  .page-blog-ph789-gaming-guide__security-features,
  .page-blog-ph789-gaming-guide__methods-grid,
  .page-blog-ph789-gaming-guide__support-channels {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-blog-ph789-gaming-guide__btn-primary,
  .page-blog-ph789-gaming-guide__btn-secondary,
  .page-blog-ph789-gaming-guide a[class*="button"],
  .page-blog-ph789-gaming-guide a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-blog-ph789-gaming-guide__hero-cta-buttons,
  .page-blog-ph789-gaming-guide__app-buttons,
  .page-blog-ph789-gaming-guide__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }
  .page-blog-ph789-gaming-guide__content-section,
  .page-blog-ph789-gaming-guide__container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-ph789-gaming-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-blog-ph789-gaming-guide__section,
  .page-blog-ph789-gaming-guide__card,
  .page-blog-ph789-gaming-guide__container,
  .page-blog-ph789-gaming-guide__feature-card,
  .page-blog-ph789-gaming-guide__step-card,
  .page-blog-ph789-gaming-guide__category-card,
  .page-blog-ph789-gaming-guide__promo-card,
  .page-blog-ph789-gaming-guide__security-item,
  .page-blog-ph789-gaming-guide__method-item,
  .page-blog-ph789-gaming-guide__channel-card,
  .page-blog-ph789-gaming-guide__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-blog-ph789-gaming-guide__mobile-text {
    order: 2;
  }
  .page-blog-ph789-gaming-guide__mobile-image-wrapper {
    order: 1;
  }
}

@media (max-width: 480px) {
  .page-blog-ph789-gaming-guide__hero-title {
    font-size: 2rem;
  }
  .page-blog-ph789-gaming-guide__hero-description {
    font-size: 0.9rem;
  }
  .page-blog-ph789-gaming-guide__feature-title,
  .page-blog-ph789-gaming-guide__category-title,
  .page-blog-ph789-gaming-guide__promo-title,
  .page-blog-ph789-gaming-guide__security-heading,
  .page-blog-ph789-gaming-guide__mobile-heading,
  .page-blog-ph789-gaming-guide__method-name,
  .page-blog-ph789-gaming-guide__channel-title {
    font-size: 1.2rem;
  }
  .page-blog-ph789-gaming-guide__faq-question {
    font-size: 1rem;
  }
  .page-blog-ph789-gaming-guide__faq-toggle {
    font-size: 1.5rem;
  }
}