/* General styles for the page */
.page-ph-game-club-com {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0;
  background-color: #1a1a2e; /* Dark background for gaming theme */
  line-height: 1.6;
}

.page-ph-game-club-com__section-title {
  color: #e94560; /* Accent color */
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
  padding-top: 40px;
  text-shadow: 0 0 10px rgba(233, 69, 96, 0.5);
}

.page-ph-game-club-com__text-content {
  max-width: 900px;
  margin: 0 auto 30px auto;
  text-align: center;
  font-size: 1.1rem;
  color: #cccccc;
}

.page-ph-game-club-com__hero-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 10px 20px 80px 20px; /* Decorative top padding */
  box-sizing: border-box;
}

.page-ph-game-club-com__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-ph-game-club-com__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  color: #ffffff;
}

.page-ph-game-club-com__hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.page-ph-game-club-com__hero-description {
  font-size: 1.3rem;
  margin-bottom: 40px;
  line-height: 1.8;
  color: #e0e0e0;
}

.page-ph-game-club-com__hero-cta,
.page-ph-game-club-com__access-button,
.page-ph-game-club-com__game-cta,
.page-ph-game-club-com__promo-cta,
.page-ph-game-club-com__contact-cta {
  display: inline-block;
  background-color: #e94560;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
  margin-top: 20px;
}

.page-ph-game-club-com__hero-cta:hover,
.page-ph-game-club-com__access-button:hover,
.page-ph-game-club-com__game-cta:hover,
.page-ph-game-club-com__promo-cta:hover,
.page-ph-game-club-com__contact-cta:hover {
  background-color: #ff6a80;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(233, 69, 96, 0.6);
}

/* Partner Logos Section */
.page-ph-game-club-com__payment-providers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 50px 20px;
  background-color: #27273f;
}
.page-ph-game-club-com__logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.page-ph-game-club-com__payment-logo {
  flex: 0 0 auto;
  width: 80px;
  height: 80px;
  max-width: 80px;
  max-height: 80px;
  box-sizing: border-box;
  object-fit: contain;
  filter: grayscale(100%) brightness(150%); /* Make logos stand out on dark background, but no color changes */
  transition: filter 0.3s ease;
}
.page-ph-game-club-com__payment-logo:hover {
  filter: grayscale(0%) brightness(100%);
}

/* Introduction Section */
.page-ph-game-club-com__introduction-section {
  padding: 60px 20px;
  background-color: #1a1a2e;
  text-align: center;
}

.page-ph-game-club-com__content-image {
  max-width: 800px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

/* Quick Access Section */
.page-ph-game-club-com__quick-access-section {
  padding: 60px 20px;
  background-color: #27273f;
  text-align: center;
}

.page-ph-game-club-com__access-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Games Section */
.page-ph-game-club-com__games-section {
  padding: 60px 20px;
  background-color: #1a1a2e;
}

.page-ph-game-club-com__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-ph-game-club-com__game-card {
  background-color: #27273f;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-ph-game-club-com__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.page-ph-game-club-com__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-ph-game-club-com__game-title {
  color: #e94560;
  font-size: 1.5rem;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-ph-game-club-com__game-description {
  color: #cccccc;
  font-size: 0.95rem;
  margin-bottom: 20px;
  padding: 0 15px;
}

/* Promotions Section */
.page-ph-game-club-com__promotions-section {
  padding: 60px 20px;
  background-color: #27273f;
}

.page-ph-game-club-com__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 40px auto;
}

.page-ph-game-club-com__promo-card {
  background-color: #1a1a2e;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-ph-game-club-com__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.page-ph-game-club-com__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-ph-game-club-com__promo-title {
  color: #e94560;
  font-size: 1.5rem;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-ph-game-club-com__promo-description {
  color: #cccccc;
  font-size: 0.95rem;
  margin-bottom: 20px;
  padding: 0 15px;
}

.page-ph-game-club-com__view-all-promos {
  text-align: center;
  margin-top: 30px;
}

/* Security Section */
.page-ph-game-club-com__security-section {
  padding: 60px 20px;
  background-color: #1a1a2e;
  text-align: center;
}

.page-ph-game-club-com__security-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 40px auto;
}

.page-ph-game-club-com__security-item {
  background-color: #27273f;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-ph-game-club-com__security-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.page-ph-game-club-com__security-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-ph-game-club-com__security-heading {
  color: #e94560;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.page-ph-game-club-com__security-text {
  color: #cccccc;
  font-size: 0.95rem;
}

.page-ph-game-club-com__contact-cta {
  margin-top: 40px;
}

/* FAQ Section */
.page-ph-game-club-com__faq-section {
  padding: 60px 20px;
  background-color: #27273f;
}

.page-ph-game-club-com__faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-ph-game-club-com__faq-item {
  background-color: #1a1a2e;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-ph-game-club-com__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #1a1a2e;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: bold;
  user-select: none;
  transition: background-color 0.3s ease;
}

.page-ph-game-club-com__faq-question:hover {
  background-color: #2c2c4a;
}

.page-ph-game-club-com__faq-heading {
  margin: 0;
  color: #ffffff;
  font-size: 1.2rem;
  pointer-events: none; /* Prevent h3 from blocking click event */
}

.page-ph-game-club-com__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  transition: transform 0.3s ease;
  pointer-events: none; /* Prevent span from blocking click event */
  color: #e94560;
}

.page-ph-game-club-com__faq-item.active .page-ph-game-club-com__faq-toggle {
  transform: rotate(45deg); /* Change '+' to 'x' or '-' */
}

.page-ph-game-club-com__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  opacity: 0;
  color: #cccccc;
  background-color: #2c2c4a;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
}

.page-ph-game-club-com__faq-item.active .page-ph-game-club-com__faq-answer {
  max-height: 2000px !important; /* Sufficiently large */
  padding: 20px 25px !important;
  opacity: 1;
}

.page-ph-game-club-com__faq-answer p {
  margin: 0;
  font-size: 1rem;
}

/* Blog Section */
.page-ph-game-club-com__blog-section {
  padding: 60px 20px;
  background-color: #1a1a2e;
}

.page-ph-game-club-com__blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-ph-game-club-com__blog-card {
  background-color: #27273f;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-ph-game-club-com__blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.page-ph-game-club-com__blog-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.page-ph-game-club-com__blog-title {
  font-size: 1.4rem;
  margin: 20px 20px 10px 20px;
}

.page-ph-game-club-com__blog-title a {
  color: #e94560;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
}

.page-ph-game-club-com__blog-title a:hover {
  color: #ff6a80;
}

.page-ph-game-club-com__blog-summary {
  color: #cccccc;
  font-size: 0.95rem;
  padding: 0 20px 20px 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-ph-game-club-com__hero-title {
    font-size: 3rem;
  }
  .page-ph-game-club-com__section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .page-ph-game-club-com__hero-section {
    min-height: 500px;
    padding-bottom: 60px;
  }
  .page-ph-game-club-com__hero-title {
    font-size: 2.5rem;
  }
  .page-ph-game-club-com__hero-description {
    font-size: 1.1rem;
  }
  .page-ph-game-club-com__hero-cta {
    padding: 12px 25px;
    font-size: 1.1rem;
  }
  .page-ph-game-club-com__section-title {
    font-size: 2rem;
    padding-top: 30px;
  }
  .page-ph-game-club-com__text-content {
    font-size: 1rem;
  }

  /* Partner logos specific mobile rules */
  .page-ph-game-club-com__payment-providers {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding: 30px 15px;
  }
  .page-ph-game-club-com__payment-logo {
    width: 80px !important;
    height: 80px !important;
    max-width: 80px !important;
    max-height: 80px !important;
  }

  .page-ph-game-club-com__access-grid,
  .page-ph-game-club-com__game-grid,
  .page-ph-game-club-com__promo-grid,
  .page-ph-game-club-com__security-content,
  .page-ph-game-club-com__blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* List item responsive rules */
  .page-ph-game-club-com__faq-container {
    padding: 0 10px;
  }
  .page-ph-game-club-com__faq-item {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .page-ph-game-club-com__faq-question {
    padding: 15px 20px;
    font-size: 1.1rem;
  }
  .page-ph-game-club-com__faq-heading {
    font-size: 1.1rem;
  }
  .page-ph-game-club-com__faq-answer {
    padding: 0 20px;
  }
  .page-ph-game-club-com__faq-answer p {
    font-size: 0.95rem;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }

  .page-ph-game-club-com__game-card,
  .page-ph-game-club-com__promo-card,
  .page-ph-game-club-com__blog-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .page-ph-game-club-com__game-image,
  .page-ph-game-club-com__promo-image,
  .page-ph-game-club-com__blog-image,
  .page-ph-game-club-com__content-image,
  .page-ph-game-club-com__security-icon {
    max-width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
}
@media (max-width: 480px) {
  .page-ph-game-club-com__hero-title {
    font-size: 2rem;
  }
  .page-ph-game-club-com__section-title {
    font-size: 1.8rem;
  }
  .page-ph-game-club-com__hero-description {
    font-size: 1rem;
  }
  .page-ph-game-club-com__hero-cta {
    font-size: 1rem;
    padding: 10px 20px;
  }
  .page-ph-game-club-com__game-title,
  .page-ph-game-club-com__promo-title,
  .page-ph-game-club-com__blog-title {
    font-size: 1.3rem;
  }
  .page-ph-game-club-com__faq-question {
    font-size: 1rem;
    padding: 12px 15px;
  }
  .page-ph-game-club-com__faq-heading {
    font-size: 1rem;
  }
  .page-ph-game-club-com__faq-answer {
    padding: 0 15px;
  }
  .page-ph-game-club-com__faq-answer p {
    font-size: 0.9rem;
  }
}