/* General Styling */:root {  --page-22ph-primary-color: #FFD700; /* Gold */  --page-22ph-secondary-color: #FFFFFF; /* White */  --page-22ph-tertiary-color: #333333; /* Dark Gray */  --page-22ph-background-dark: #1a1a1a; /* Very Dark Gray */  --page-22ph-background-light: #2c2c2c; /* Slightly Lighter Dark Gray */  --page-22ph-text-color: #E0E0E0; /* Light Gray */  --page-22ph-heading-color: #FFD700; /* Gold */  --page-22ph-button-bg-primary: #FFD700;  --page-22ph-button-text-primary: #1a1a1a;  --page-22ph-button-bg-secondary: #007bff; /* Blue for download */  --page-22ph-button-text-secondary: #FFFFFF;  --page-22ph-button-bg-tertiary: #6c757d; /* Gray for login */  --page-22ph-button-text-tertiary: #FFFFFF;  --page-22ph-border-color: #444444; /* Medium Dark Gray */  --page-22ph-shadow-color: rgba(0, 0, 0, 0.5);  --page-22ph-transition-speed: 0.3s ease;}.page-22ph {  font-family: 'Arial', sans-serif;  color: var(--page-22ph-text-color);  background-color: var(--page-22ph-background-dark);  line-height: 1.6;  padding-top: 10px; /* Small decorative padding, relying on body padding for header offset */} .page-22ph__container {  max-width: 1200px;  margin: 0 auto;  padding: 20px;  box-sizing: border-box;}.page-22ph__section-title {  color: var(--page-22ph-heading-color);  text-align: center;  margin-bottom: 40px;  font-size: 2.5em;  font-weight: bold;}.page-22ph__section-title--small {  font-size: 1.8em;  margin-bottom: 20px;}.page-22ph__text-content {  text-align: center;  margin-bottom: 30px;  max-width: 800px;  margin-left: auto;  margin-right: auto;  font-size: 1.1em;}.page-22ph__button {  display: inline-block;  padding: 12px 25px;  border-radius: 8px;  text-decoration: none;  font-weight: bold;  font-size: 1.05em;  transition: transform var(--page-22ph-transition-speed), background-color var(--page-22ph-transition-speed), color var(--page-22ph-transition-speed);  box-shadow: 0 4px 10px var(--page-22ph-shadow-color);  text-align: center;  white-space: nowrap;}.page-22ph__button--primary {  background-color: var(--page-22ph-button-bg-primary);  color: var(--page-22ph-button-text-primary);}.page-22ph__button--secondary {  background-color: var(--page-22ph-button-bg-secondary);  color: var(--page-22ph-button-text-secondary);}.page-22ph__button--tertiary {  background-color: var(--page-22ph-button-bg-tertiary);  color: var(--page-22ph-button-text-tertiary);}.page-22ph__button:hover {  transform: translateY(-3px);  opacity: 0.9;}.page-22ph__button--link {  background: none;  border: 2px solid var(--page-22ph-primary-color);  color: var(--page-22ph-primary-color);  padding: 10px 20px;  font-size: 1em;  box-shadow: none;}.page-22ph__button--link:hover {  background-color: var(--page-22ph-primary-color);  color: var(--page-22ph-background-dark);  transform: translateY(-2px);}.page-22ph__button--small {  padding: 8px 18px;  font-size: 0.95em;  border-radius: 6px;}/* Image styling */.page-22ph img {  max-width: 100%;  height: auto;  display: block;  object-fit: cover;  border-radius: 8px;}/* Hero Section */.page-22ph__hero-section {  position: relative;  width: 100%;  min-height: 500px;  display: flex;  align-items: center;  justify-content: center;  overflow: hidden;  margin-bottom: 50px;  text-align: center;  background-color: var(--page-22ph-background-light); /* Fallback */} .page-22ph__hero-image {  position: absolute;  top: 0;  left: 0;  width: 100%;  height: 100%;  object-fit: cover;  z-index: 1;  filter: brightness(0.5); /* Darken image for text readability */} .page-22ph__hero-content {  position: relative;  z-index: 2;  max-width: 900px;  padding: 30px;  background-color: rgba(0, 0, 0, 0.4);  border-radius: 12px;  box-shadow: 0 8px 20px var(--page-22ph-shadow-color);}.page-22ph__hero-title {  color: var(--page-22ph-heading-color);  font-size: 3.5em;  margin-bottom: 20px;  line-height: 1.2;}.page-22ph__hero-subtitle {  color: var(--page-22ph-secondary-color);  font-size: 1.5em;  margin-bottom: 40px;  max-width: 700px;  margin-left: auto;  margin-right: auto;}.page-22ph__hero-buttons {  display: flex;  flex-wrap: wrap;  gap: 20px;  justify-content: center;}/* Partner/Vendor Logo Area */.page-22ph__payment-providers { /* This is the outer section containing title and logos */  display: flex;  flex-direction: column; /* Stacks title and logo row vertically */  align-items: center;  padding: 40px 20px;  background-color: var(--page-22ph-background-light);  margin-bottom: 50px;  box-shadow: inset 0 5px 10px rgba(0,0,0,0.3);}.page-22ph__payment-logo-row { /* This new class will be the one receiving the provided CSS */  display: flex;  flex-wrap: wrap;  justify-content: center;  align-items: center;  gap: 30px;  width: 100%;  max-width: 100%;  box-sizing: border-box;}.page-22ph__payment-logo { /* Individual logo wrapper, containing the img */  flex: 0 0 auto;  width: 80px;  height: 80px;  max-width: 80px;  max-height: 80px;  box-sizing: border-box;  background-color: #fff; /* To make logos visible if transparent */  padding: 5px;  border-radius: 5px;  box-shadow: 0 2px 5px rgba(0,0,0,0.2);  display: flex; /* To center the image inside */  justify-content: center;  align-items: center;}.page-22ph__payment-logo img { /* The actual image inside the wrapper */  display: block;  width: 80px !important;  height: 80px !important;  max-width: 80px !important;  max-height: 80px !important;  object-fit: contain;}/* Introduction Section */.page-22ph__introduction-section {  padding: 60px 0;  background-color: var(--page-22ph-background-dark);}.page-22ph__quick-access-section {  padding: 60px 0;  background-color: var(--page-22ph-background-light);}.page-22ph__quick-access-grid {  display: grid;  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));  gap: 30px;  justify-content: center;}.page-22ph__quick-access-item {  display: flex;  flex-direction: column;  align-items: center;  text-decoration: none;  background-color: var(--page-22ph-background-dark);  padding: 25px;  border-radius: 12px;  box-shadow: 0 5px 15px var(--page-22ph-shadow-color);  transition: transform var(--page-22ph-transition-speed), background-color var(--page-22ph-transition-speed);  color: var(--page-22ph-secondary-color);  text-align: center;}.page-22ph__quick-access-item:hover {  transform: translateY(-5px);  background-color: var(--page-22ph-tertiary-color);}.page-22ph__quick-access-icon {  width: 100px;  height: 100px;  object-fit: contain;  margin-bottom: 15px;  border-radius: 0;}.page-22ph__quick-access-text {  font-size: 1.2em;  font-weight: bold;  color: var(--page-22ph-primary-color);}.page-22ph__games-section {  padding: 60px 0;  background-color: var(--page-22ph-background-dark);}.page-22ph__games-grid {  display: grid;  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));  gap: 30px;  justify-content: center;}.page-22ph__game-card {  background-color: var(--page-22ph-background-light);  border-radius: 12px;  overflow: hidden;  box-shadow: 0 5px 15px var(--page-22ph-shadow-color);  transition: transform var(--page-22ph-transition-speed);  display: flex;  flex-direction: column;}.page-22ph__game-card:hover {  transform: translateY(-5px);}.page-22ph__game-card-image {  width: 100%;  height: 200px;  object-fit: cover;  border-radius: 0;}.page-22ph__game-card-title {  color: var(--page-22ph-primary-color);  font-size: 1.5em;  margin: 20px 20px 10px;}.page-22ph__game-card-description {  color: var(--page-22ph-text-color);  padding: 0 20px;  margin-bottom: 20px;  flex-grow: 1;}.page-22ph__game-card .page-22ph__button {  margin: 0 20px 20px;  width: calc(100% - 40px);  box-sizing: border-box;}.page-22ph__promotions-section {  padding: 60px 0;  background-color: var(--page-22ph-background-light);}.page-22ph__promotions-grid {  display: grid;  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));  gap: 30px;  justify-content: center;}.page-22ph__promo-card {  background-color: var(--page-22ph-background-dark);  border-radius: 12px;  overflow: hidden;  box-shadow: 0 5px 15px var(--page-22ph-shadow-color);  transition: transform var(--page-22ph-transition-speed);  display: flex;  flex-direction: column;}.page-22ph__promo-card:hover {  transform: translateY(-5px);}.page-22ph__promo-card-image {  width: 100%;  height: 220px;  object-fit: cover;  border-radius: 0;}.page-22ph__promo-card-title {  color: var(--page-22ph-primary-color);  font-size: 1.4em;  margin: 20px 20px 10px;}.page-22ph__promo-card-description {  color: var(--page-22ph-text-color);  padding: 0 20px;  margin-bottom: 20px;  flex-grow: 1;}.page-22ph__promo-card .page-22ph__button {  margin: 0 20px 20px;  width: calc(100% - 40px);  box-sizing: border-box;}.page-22ph__security-cs-section {  padding: 60px 0;  background-color: var(--page-22ph-background-dark);}.page-22ph__security-grid {  display: grid;  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));  gap: 30px;}.page-22ph__security-item {  background-color: var(--page-22ph-background-light);  padding: 30px;  border-radius: 12px;  text-align: center;  box-shadow: 0 5px 15px var(--page-22ph-shadow-color);  transition: transform var(--page-22ph-transition-speed);}.page-22ph__security-item:hover {  transform: translateY(-5px);}.page-22ph__security-icon {  width: 120px;  height: 120px;  object-fit: contain;  margin-bottom: 20px;  border-radius: 0;}.page-22ph__security-title {  color: var(--page-22ph-primary-color);  font-size: 1.4em;  margin-bottom: 15px;}.page-22ph__security-description {  color: var(--page-22ph-text-color);  margin-bottom: 20px;}/* FAQ Section */.page-22ph__faq-section {  padding: 60px 0;  background-color: var(--page-22ph-background-light);}.page-22ph__faq-list {  max-width: 800px;  margin: 0 auto;}.page-22ph__faq-item {  background-color: var(--page-22ph-background-dark);  border-radius: 8px;  margin-bottom: 15px;  box-shadow: 0 3px 10px var(--page-22ph-shadow-color);  overflow: hidden;}.page-22ph__faq-question {  display: flex;  justify-content: space-between;  align-items: center;  padding: 20px 25px;  cursor: pointer;  background-color: var(--page-22ph-tertiary-color);  color: var(--page-22ph-secondary-color);  font-weight: bold;  font-size: 1.1em;  transition: background-color var(--page-22ph-transition-speed);  user-select: none;}.page-22ph__faq-question:hover {  background-color: #444444;}.page-22ph__faq-question-title {  margin: 0;  color: var(--page-22ph-secondary-color);  font-size: 1.1em;  pointer-events: none; /* Prevent h3 from blocking click event */  flex-grow: 1;}.page-22ph__faq-toggle {  font-size: 1.5em;  line-height: 1;  margin-left: 15px;  color: var(--page-22ph-primary-color);  transition: transform var(--page-22ph-transition-speed);  pointer-events: none; /* Prevent toggle from blocking click event */}.page-22ph__faq-item.active .page-22ph__faq-toggle {  transform: rotate(45deg);}.page-22ph__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;  color: var(--page-22ph-text-color);}.page-22ph__faq-item.active .page-22ph__faq-answer {  max-height: 2000px !important; /* Sufficiently large */  padding: 20px 25px !important;  opacity: 1;} .page-22ph__faq-answer p {  margin: 0;}/* Blog Section */.page-22ph__blog-section {  padding: 60px 0;  background-color: var(--page-22ph-background-dark);}.page-22ph__blog-grid {  display: grid;  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));  gap: 30px;  justify-content: center;}.page-22ph__blog-card {  background-color: var(--page-22ph-background-light);  border-radius: 12px;  overflow: hidden;  box-shadow: 0 5px 15px var(--page-22ph-shadow-color);  transition: transform var(--page-22ph-transition-speed);  display: flex;  flex-direction: column;}.page-22ph__blog-card:hover {  transform: translateY(-5px);}.page-22ph__blog-card-image {  width: 100%;  height: 200px;  object-fit: cover;  border-radius: 0;}.page-22ph__blog-card-content {  padding: 20px;  flex-grow: 1;  display: flex;  flex-direction: column;}.page-22ph__blog-card-title {  color: var(--page-22ph-primary-color);  font-size: 1.3em;  margin-bottom: 10px;}.page-22ph__blog-card-description {  color: var(--page-22ph-text-color);  margin-bottom: 15px;  flex-grow: 1;}.page-22ph__blog-card-date {  font-size: 0.9em;  color: #999;  margin-top: 10px;}.page-22ph__blog-card .page-22ph__button {  margin-top: 15px;  align-self: flex-start;}/* Responsive adjustments */@media (max-width: 1024px) {  .page-22ph__hero-title {    font-size: 2.8em;  }  .page-22ph__hero-subtitle {    font-size: 1.3em;  }  .page-22ph__section-title {    font-size: 2em;  }  .page-22ph__quick-access-grid,  .page-22ph__games-grid,  .page-22ph__promotions-grid,  .page-22ph__security-grid,  .page-22ph__blog-grid {    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));  }}@media (max-width: 768px) {  .page-22ph__hero-section {    min-height: 400px;  }  .page-22ph__hero-content {    padding: 20px;  }  .page-22ph__hero-title {    font-size: 2.2em;    margin-bottom: 15px;  }  .page-22ph__hero-subtitle {    font-size: 1.1em;    margin-bottom: 30px;  }  .page-22ph__hero-buttons {    flex-direction: column;    gap: 15px;  }  .page-22ph__button {    width: 100%;    box-sizing: border-box;    padding: 10px 20px;  }  .page-22ph__section-title {    font-size: 1.8em;    margin-bottom: 30px;  }  .page-22ph__section-title--small {    font-size: 1.5em;  }  .page-22ph__text-content {    font-size: 1em;  }  /* Partner/Vendor Logo Area Mobile */  .page-22ph__payment-providers { /* This is the outer container, kept as column for title then logos */    flex-direction: column;    gap: 16px; /* Gap between title and logos, and between logos */    padding: 30px 15px;  }  .page-22ph__payment-logo-row { /* The row itself for logos */    flex-direction: row;    flex-wrap: wrap;    justify-content: center;    gap: 16px;  }  .page-22ph__payment-logo, /* The wrapper div */  .page-22ph__payment-logo img { /* The actual image */    width: 80px !important;    height: 80px !important;    max-width: 80px !important;    max-height: 80px !important;    box-sizing: border-box;  }  /* List items responsive optimization */  .page-22ph__quick-access-grid,  .page-22ph__games-grid,  .page-22ph__promotions-grid,  .page-22ph__security-grid,  .page-22ph__blog-grid {    grid-template-columns: 1fr; /* Single column on mobile */    gap: 20px;  }  .page-22ph__quick-access-item,  .page-22ph__game-card,  .page-22ph__promo-card,  .page-22ph__security-item,  .page-22ph__blog-card {    width: 100% !important;    max-width: 100% !important;    box-sizing: border-box !important;    margin-left: 0 !important;    margin-right: 0 !important;    padding: 20px !important; /* Adjust padding for mobile */  }  .page-22ph__quick-access-icon,  .page-22ph__security-icon {    width: 80px;    height: 80px;  }  .page-22ph__game-card-image,  .page-22ph__promo-card-image,  .page-22ph__blog-card-image {    height: 180px; /* Adjust image height for smaller screens */  }  .page-22ph__faq-question {    padding: 15px 20px;    font-size: 1em;  }  .page-22ph__faq-question-title {    font-size: 1em;  }  .page-22ph__faq-answer {    padding: 0 20px;  }  .page-22ph__faq-item.active .page-22ph__faq-answer {    padding: 15px 20px !important;  }  .page-22ph__faq-answer p {    word-wrap: break-word !important;    overflow-wrap: break-word !important;    word-break: break-word !important;  }}@media (max-width: 480px) {  .page-22ph__hero-title {    font-size: 1.8em;  }  .page-22ph__hero-subtitle {    font-size: 1em;  }  .page-22ph__section-title {    font-size: 1.5em;  }  .page-22ph__hero-content {    padding: 15px;  }  .page-22ph__button {    font-size: 0.95em;    padding: 10px 15px;  }  .page-22ph__payment-logo,  .page-22ph__payment-logo img {    width: 60px !important; /* Even smaller for very small screens if needed */    height: 60px !important;    max-width: 60px !important;    max-height: 60px !important;  }}