/* Color palette */:root {  --ph22-primary-color: #e44d26; /* Orange/Red for accents */  --ph22-secondary-color: #f7b731; /* Yellow for highlights */  --ph22-background-dark: #1a1a1a; /* Dark background */  --ph22-background-light: #2c2c2c; /* Slightly lighter background */  --ph22-text-color-light: #f0f0f0; /* Light text */  --ph22-text-color-dark: #cccccc; /* Slightly darker text for contrast */  --ph22-border-color: #444444;  --ph22-hover-color: #ff6a00;  --ph22-button-text: #ffffff;}.page-ph22 {  font-family: 'Arial', sans-serif;  color: var(--ph22-text-color-light);  background-color: var(--ph22-background-dark);  line-height: 1.6;  padding-top: 10px; /* Adjust for header offset, assuming body has it */}/* Ensure all images are responsive and within container */.page-ph22 img {  max-width: 100%;  height: auto;}.page-ph22__section-title,.page-ph22__cta-title {  color: var(--ph22-primary-color);  text-align: center;  margin-bottom: 20px;  font-size: 2.5em;  font-weight: bold;}.page-ph22__section-description,.page-ph22__cta-description {  text-align: center;  max-width: 800px;  margin: 0 auto 40px auto;  color: var(--ph22-text-color-dark);  font-size: 1.1em;}/* Hero Section */.page-ph22__hero-section {  position: relative;  display: flex;  flex-direction: column;  align-items: center;  justify-content: center;  min-height: 600px;  padding: 60px 20px;  text-align: center;  overflow: hidden;  background-color: var(--ph22-background-light);}.page-ph22__hero-image-wrapper {  position: absolute;  top: 0;  left: 0;  width: 100%;  height: 100%;  overflow: hidden;  z-index: 0;}.page-ph22__hero-image {  width: 100%;  height: 100%;  object-fit: cover;  opacity: 0.3; /* Overlay for text readability */  filter: grayscale(50%); /* Subtle effect */}.page-ph22__hero-content {  position: relative;  z-index: 1;  max-width: 900px;  margin: 0 auto;}.page-ph22__hero-title {  font-size: 3.5em;  color: var(--ph22-text-color-light);  margin-bottom: 20px;  line-height: 1.2;}.page-ph22__hero-description {  font-size: 1.3em;  color: var(--ph22-text-color-light);  margin-bottom: 40px;}.page-ph22__hero-buttons {  display: flex;  gap: 20px;  justify-content: center;}/* Buttons */.page-ph22__button {  display: inline-block;  padding: 15px 30px;  border-radius: 8px;  text-decoration: none;  font-weight: bold;  font-size: 1.1em;  transition: background-color 0.3s ease, transform 0.2s ease;  cursor: pointer;  border: none;  text-align: center;}.page-ph22__button--primary {  background-color: var(--ph22-primary-color);  color: var(--ph22-button-text);}.page-ph22__button--primary:hover {  background-color: var(--ph22-hover-color);  transform: translateY(-2px);}.page-ph22__button--secondary {  background-color: transparent;  color: var(--ph22-primary-color);  border: 2px solid var(--ph22-primary-color);}.page-ph22__button--secondary:hover {  background-color: var(--ph22-primary-color);  color: var(--ph22-button-text);  transform: translateY(-2px);}.page-ph22__button--small {  padding: 10px 20px;  font-size: 0.9em;}.page-ph22__button--large {  padding: 18px 40px;  font-size: 1.2em;}/* Games Section */.page-ph22__games-section {  padding: 80px 20px;  background-color: var(--ph22-background-dark);}.page-ph22__game-categories {  display: grid;  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));  gap: 30px;  max-width: 1200px;  margin: 0 auto;}.page-ph22__category-card {  background-color: var(--ph22-background-light);  border-radius: 12px;  overflow: hidden;  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);  text-align: center;  padding-bottom: 20px;  transition: transform 0.3s ease, box-shadow 0.3s ease;}.page-ph22__category-card:hover {  transform: translateY(-5px);  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);}.page-ph22__category-image {  width: 100%;  height: 200px;  object-fit: cover;  margin-bottom: 15px;  display: block;}.page-ph22__category-title {  font-size: 1.8em;  color: var(--ph22-primary-color);  margin-bottom: 10px;  padding: 0 15px;}.page-ph22__category-text {  font-size: 1em;  color: var(--ph22-text-color-dark);  margin-bottom: 20px;  padding: 0 15px;}/* Promotions Section */.page-ph22__promo-section {  padding: 80px 20px;  background-color: var(--ph22-background-light);}.page-ph22__promo-cards {  display: grid;  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));  gap: 30px;  max-width: 1200px;  margin: 0 auto;}.page-ph22__promo-card {  background-color: var(--ph22-background-dark);  border-radius: 12px;  overflow: hidden;  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);  text-align: center;  padding-bottom: 20px;  transition: transform 0.3s ease, box-shadow 0.3s ease;}.page-ph22__promo-card:hover {  transform: translateY(-5px);  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);}.page-ph22__promo-image {  width: 100%;  height: 220px;  object-fit: cover;  margin-bottom: 15px;  display: block;}.page-ph22__promo-title {  font-size: 1.8em;  color: var(--ph22-secondary-color);  margin-bottom: 10px;  padding: 0 15px;}.page-ph22__promo-text {  font-size: 1em;  color: var(--ph22-text-color-dark);  margin-bottom: 20px;  padding: 0 15px;}/* Download Section */.page-ph22__download-section {  padding: 80px 20px;  background-color: var(--ph22-background-dark);  display: flex;  flex-direction: column;  align-items: center;  gap: 40px;  max-width: 1200px;  margin: 0 auto;}.page-ph22__download-content {  text-align: center;  max-width: 700px;}.page-ph22__download-image-wrapper {  width: 100%;  max-width: 600px;  overflow: hidden;  border-radius: 12px;  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);}.page-ph22__download-image {  width: 100%;  height: auto;  display: block;}/* CTA Section */.page-ph22__cta-section {  padding: 80px 20px;  background-color: var(--ph22-background-light);  text-align: center;}.page-ph22__cta-title {  font-size: 3em;  margin-bottom: 20px;  color: var(--ph22-text-color-light);}.page-ph22__cta-description {  font-size: 1.2em;  margin-bottom: 40px;}/* FAQ Section */.page-ph22__faq-section {  padding: 80px 20px;  background-color: var(--ph22-background-dark);}.page-ph22__faq-list {  max-width: 900px;  margin: 0 auto;}.page-ph22__faq-item {  background-color: var(--ph22-background-light);  border-radius: 8px;  margin-bottom: 15px;  overflow: hidden;  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);}.page-ph22__faq-question {  display: flex;  justify-content: space-between;  align-items: center;  padding: 20px 25px;  cursor: pointer;  user-select: none;  background-color: var(--ph22-background-light);  border-bottom: 1px solid var(--ph22-border-color);  transition: background-color 0.3s ease;}.page-ph22__faq-question:hover {  background-color: #3a3a3a;}.page-ph22__faq-question h3 {  margin: 0;  font-size: 1.3em;  color: var(--ph22-text-color-light);  pointer-events: none; /* Prevent h3 from interfering with click event */}.page-ph22__faq-toggle {  font-size: 1.8em;  color: var(--ph22-primary-color);  transition: transform 0.3s ease;  pointer-events: none; /* Prevent toggle icon from interfering with click event */  line-height: 1;}.page-ph22__faq-item.active .page-ph22__faq-toggle {  transform: rotate(45deg);}.page-ph22__faq-answer {  max-height: 0;  overflow: hidden;  padding: 0 25px;  opacity: 0;  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;  box-sizing: border-box;}.page-ph22__faq-item.active .page-ph22__faq-answer {  max-height: 2000px !important; /* Sufficiently large value */  padding: 20px 25px !important;  opacity: 1;}.page-ph22__faq-answer p {  margin: 0;  font-size: 1em;  color: var(--ph22-text-color-dark);}/* Contact Section */.page-ph22__contact-section {  padding: 80px 20px;  background-color: var(--ph22-background-light);  text-align: center;}/* Responsive Design */@media (max-width: 1024px) {  .page-ph22__hero-title {    font-size: 2.8em;  }  .page-ph22__section-title,  .page-ph22__cta-title {    font-size: 2em;  }  .page-ph22__hero-description {    font-size: 1.1em;  }}.page-ph22__download-image-wrapper, .page-ph22__download-image { width: 100%; max-width: 100%; box-sizing: border-box; overflow: hidden; }@media (max-width: 768px) {  .page-ph22__hero-section {    padding: 40px 15px;    min-height: 500px;  }  .page-ph22__hero-title {    font-size: 2.2em;  }  .page-ph22__hero-description {    font-size: 1em;  }  .page-ph22__hero-buttons {    flex-direction: column;    gap: 15px;  }  .page-ph22__button {    width: 100%;    max-width: 300px;    margin: 0 auto;  }  .page-ph22__section-title,  .page-ph22__cta-title {    font-size: 1.8em;  }  .page-ph22__section-description,  .page-ph22__cta-description {    font-size: 0.95em;    margin-bottom: 30px;  }  .page-ph22__games-section,  .page-ph22__promo-section,  .page-ph22__download-section,  .page-ph22__cta-section,  .page-ph22__faq-section,  .page-ph22__contact-section {    padding: 60px 15px;  }  .page-ph22__game-categories,  .page-ph22__promo-cards {    grid-template-columns: 1fr; /* Stack cards on mobile */  }  .page-ph22__category-image,  .page-ph22__promo-image {    height: 180px;  }  .page-ph22__download-section {    flex-direction: column;  }  .page-ph22__download-image-wrapper {    max-width: 100%;  }  .page-ph22__faq-question {    padding: 15px 20px;  }  .page-ph22__faq-question h3 {    font-size: 1.1em;  }  .page-ph22__faq-answer {    padding: 0 20px;  }  .page-ph22__faq-item.active .page-ph22__faq-answer {    padding: 15px 20px !important;  }  /* List item responsive requirements */  .page-ph22__game-categories > div,  .page-ph22__promo-cards > div {    width: 100% !important;    max-width: 100% !important;    box-sizing: border-box !important;    margin-left: 0 !important;    margin-right: 0 !important;    word-wrap: break-word !important;    overflow-wrap: break-word !important;  }  .page-ph22__game-categories,  .page-ph22__promo-cards {    width: 100% !important;    max-width: 100% !important;    box-sizing: border-box !important;    padding: 0 !important;    margin-left: 0 !important;    margin-right: 0 !important;  }  .page-ph22__download-image, .page-ph22__hero-image, .page-ph22__category-image, .page-ph22__promo-image {    max-width: 100% !important;    height: auto !important;    box-sizing: border-box !important;  }}.page-ph22__hero-image-wrapper, .page-ph22__category-card, .page-ph22__promo-card {  width: 100%;  max-width: 100%;  overflow: hidden;  box-sizing: border-box;}@media (max-width: 480px) {  .page-ph22__hero-title {    font-size: 1.8em;  }  .page-ph22__section-title,  .page-ph22__cta-title {    font-size: 1.5em;  }  .page-ph22__hero-buttons {    flex-direction: column;  }  .page-ph22__button {    font-size: 1em;    padding: 12px 25px;  }  .page-ph22__button--large {    font-size: 1.1em;    padding: 15px 30px;  }  .page-ph22__category-title,  .page-ph22__promo-title {    font-size: 1.5em;  }  .page-ph22__faq-question h3 {    font-size: 1em;  }}