:root {
      --page-22ph-app-primary-color: #e44d26; /* A vibrant orange-red */
      --page-22ph-app-secondary-color: #333;
      --page-22ph-app-accent-color: #f7b731; /* Golden yellow */
      --page-22ph-app-text-color: #333;
      --page-22ph-app-text-light: #f4f4f4;
      --page-22ph-app-background-light: #f9f9f9;
      --page-22ph-app-background-dark: #2c3e50; /* Dark blue-grey */
      --page-22ph-app-border-color: #ddd;
      --page-22ph-app-border-radius: 8px;
      --page-22ph-app-transition-speed: 0.3s;
    }

    .page-22ph-app {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-22ph-app-text-color);
      background-color: var(--page-22ph-app-background-light);
      overflow-x: hidden;
      padding-top: 10px; /* Small padding, assuming body has --header-offset */
    }

    .page-22ph-app__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-22ph-app__section-title {
      font-size: 2.5em;
      color: var(--page-22ph-app-primary-color);
      text-align: center;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-22ph-app__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--page-22ph-app-accent-color);
      border-radius: 2px;
    }

    .page-22ph-app__section-description {
      text-align: center;
      font-size: 1.1em;
      color: var(--page-22ph-app-secondary-color);
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-22ph-app__button {
      display: inline-block;
      padding: 12px 25px;
      border-radius: var(--page-22ph-app-border-radius);
      text-decoration: none;
      font-weight: bold;
      transition: background-color var(--page-22ph-app-transition-speed) ease, transform var(--page-22ph-app-transition-speed) ease;
      cursor: pointer;
      text-align: center;
      white-space: nowrap;
    }

    .page-22ph-app__button--primary {
      background-color: var(--page-22ph-app-primary-color);
      color: var(--page-22ph-app-text-light);
      border: 2px solid var(--page-22ph-app-primary-color);
    }

    .page-22ph-app__button--primary:hover {
      background-color: #d14320;
      transform: translateY(-2px);
    }

    .page-22ph-app__button--secondary {
      background-color: transparent;
      color: var(--page-22ph-app-primary-color);
      border: 2px solid var(--page-22ph-app-primary-color);
    }

    .page-22ph-app__button--secondary:hover {
      background-color: var(--page-22ph-app-primary-color);
      color: var(--page-22ph-app-text-light);
      transform: translateY(-2px);
    }

    .page-22ph-app__button--small {
      padding: 8px 18px;
      font-size: 0.9em;
      border-radius: 5px;
    }

    .page-22ph-app__button--text {
      background: none;
      border: none;
      color: var(--page-22ph-app-primary-color);
      padding: 0;
      text-decoration: underline;
    }

    .page-22ph-app__button--text:hover {
      color: var(--page-22ph-app-accent-color);
      transform: none;
    }

    /* Hero Section */
    .page-22ph-app__hero-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      background-color: var(--page-22ph-app-background-dark);
      color: var(--page-22ph-app-text-light);
      padding: 60px 20px;
      position: relative;
      overflow: hidden;
    }

    .page-22ph-app__hero-image-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
    }

    .page-22ph-app__hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.2; /* Subtle background image */
    }

    .page-22ph-app__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
    }

    .page-22ph-app__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      line-height: 1.2;
      color: var(--page-22ph-app-accent-color);
    }

    .page-22ph-app__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 40px;
      color: var(--page-22ph-app-text-light);
    }

    .page-22ph-app__hero-ctas {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* Introduction Section */
    .page-22ph-app__introduction-section {
      padding: 80px 0;
      background-color: var(--page-22ph-app-background-light);
    }

    .page-22ph-app__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }

    .page-22ph-app__feature-item {
      background-color: #fff;
      padding: 30px;
      border-radius: var(--page-22ph-app-border-radius);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      text-align: center;
      transition: transform var(--page-22ph-app-transition-speed) ease;
    }

    .page-22ph-app__feature-item:hover {
      transform: translateY(-10px);
    }

    .page-22ph-app__feature-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 20px;
      object-fit: contain;
      max-width: 100%;
      height: auto;
    }

    .page-22ph-app__feature-title {
      font-size: 1.5em;
      color: var(--page-22ph-app-primary-color);
      margin-bottom: 15px;
    }

    .page-22ph-app__feature-text {
      font-size: 1em;
      color: var(--page-22ph-app-secondary-color);
    }

    /* Quick Access Section */
    .page-22ph-app__quick-access-section {
      padding: 80px 0;
      background-color: var(--page-22ph-app-background-dark);
      color: var(--page-22ph-app-text-light);
    }

    .page-22ph-app__quick-access-section .page-22ph-app__section-title {
      color: var(--page-22ph-app-text-light);
    }

    .page-22ph-app__quick-access-section .page-22ph-app__section-title::after {
      background-color: var(--page-22ph-app-primary-color);
    }

    .page-22ph-app__quick-access-section .page-22ph-app__section-description {
      color: var(--page-22ph-app-text-light);
    }

    .page-22ph-app__access-buttons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
    }

    .page-22ph-app__access-buttons .page-22ph-app__button {
      background-color: var(--page-22ph-app-accent-color);
      color: var(--page-22ph-app-background-dark);
      border: 2px solid var(--page-22ph-app-accent-color);
      font-size: 1.1em;
      padding: 15px 30px;
    }

    .page-22ph-app__access-buttons .page-22ph-app__button:hover {
      background-color: #e6a72c;
      border-color: #e6a72c;
    }

    /* Games Section */
    .page-22ph-app__games-section {
      padding: 80px 0;
      background-color: var(--page-22ph-app-background-light);
    }

    .page-22ph-app__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }

    .page-22ph-app__game-card {
      background-color: #fff;
      border-radius: var(--page-22ph-app-border-radius);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      text-align: center;
      transition: transform var(--page-22ph-app-transition-speed) ease, box-shadow var(--page-22ph-app-transition-speed) ease;
      display: flex;
      flex-direction: column;
    }

    .page-22ph-app__game-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .page-22ph-app__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      margin-bottom: 20px;
      max-width: 100%;
    }

    .page-22ph-app__game-title {
      font-size: 1.6em;
      color: var(--page-22ph-app-primary-color);
      margin-bottom: 10px;
      padding: 0 20px;
    }

    .page-22ph-app__game-text {
      font-size: 0.95em;
      color: var(--page-22ph-app-secondary-color);
      padding: 0 20px 20px;
      flex-grow: 1;
    }

    .page-22ph-app__game-card .page-22ph-app__button {
      margin: 0 20px 20px;
    }

    /* Promotions Section */
    .page-22ph-app__promotions-section {
      padding: 80px 0;
      background-color: var(--page-22ph-app-background-dark);
      color: var(--page-22ph-app-text-light);
    }

    .page-22ph-app__promotions-section .page-22ph-app__section-title {
      color: var(--page-22ph-app-text-light);
    }

    .page-22ph-app__promotions-section .page-22ph-app__section-title::after {
      background-color: var(--page-22ph-app-primary-color);
    }

    .page-22ph-app__promotions-section .page-22ph-app__section-description {
      color: var(--page-22ph-app-text-light);
    }

    .page-22ph-app__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }

    .page-22ph-app__promo-card {
      background-color: #fff;
      border-radius: var(--page-22ph-app-border-radius);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      text-align: center;
      transition: transform var(--page-22ph-app-transition-speed) ease, box-shadow var(--page-22ph-app-transition-speed) ease;
      display: flex;
      flex-direction: column;
    }

    .page-22ph-app__promo-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .page-22ph-app__promo-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      margin-bottom: 20px;
      max-width: 100%;
    }

    .page-22ph-app__promo-title {
      font-size: 1.6em;
      color: var(--page-22ph-app-primary-color);
      margin-bottom: 10px;
      padding: 0 20px;
    }

    .page-22ph-app__promo-text {
      font-size: 0.95em;
      color: var(--page-22ph-app-secondary-color);
      padding: 0 20px 20px;
      flex-grow: 1;
    }

    .page-22ph-app__promo-card .page-22ph-app__button {
      margin: 0 20px 20px;
    }

    /* Security Section */
    .page-22ph-app__security-section {
      padding: 80px 0;
      background-color: var(--page-22ph-app-background-light);
    }

    .page-22ph-app__security-features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }

    .page-22ph-app__security-item {
      background-color: #fff;
      padding: 30px;
      border-radius: var(--page-22ph-app-border-radius);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      text-align: center;
      transition: transform var(--page-22ph-app-transition-speed) ease;
      display: flex;
      flex-direction: column;
    }

    .page-22ph-app__security-item:hover {
      transform: translateY(-10px);
    }

    .page-22ph-app__security-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 20px;
      object-fit: contain;
      max-width: 100%;
      height: auto;
    }

    .page-22ph-app__security-title {
      font-size: 1.5em;
      color: var(--page-22ph-app-primary-color);
      margin-bottom: 15px;
    }

    .page-22ph-app__security-text {
      font-size: 1em;
      color: var(--page-22ph-app-secondary-color);
      flex-grow: 1;
      margin-bottom: 20px;
    }

    /* FAQ Section */
    .page-22ph-app__faq-section {
      padding: 80px 0;
      background-color: var(--page-22ph-app-background-dark);
      color: var(--page-22ph-app-text-light);
    }

    .page-22ph-app__faq-section .page-22ph-app__section-title {
      color: var(--page-22ph-app-text-light);
    }

    .page-22ph-app__faq-section .page-22ph-app__section-title::after {
      background-color: var(--page-22ph-app-primary-color);
    }

    .page-22ph-app__faq-list {
      margin-top: 50px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-22ph-app__faq-item {
      background-color: #fff;
      margin-bottom: 15px;
      border-radius: var(--page-22ph-app-border-radius);
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .page-22ph-app__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: var(--page-22ph-app-primary-color);
      color: var(--page-22ph-app-text-light);
      cursor: pointer;
      user-select: none;
      transition: background-color var(--page-22ph-app-transition-speed) ease;
    }

    .page-22ph-app__faq-question:hover {
      background-color: #d14320;
    }

    .page-22ph-app__faq-title {
      font-size: 1.2em;
      margin: 0;
      pointer-events: none; /* Prevents h3 from interfering with click event */
    }

    .page-22ph-app__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      pointer-events: none; /* Prevents span from interfering with click event */
      transition: transform var(--page-22ph-app-transition-speed) ease;
    }

    .page-22ph-app__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: #fcfcfc;
      color: var(--page-22ph-app-text-color);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-22ph-app__faq-answer p {
      padding: 15px 0;
      margin: 0;
    }

    .page-22ph-app__faq-item.active .page-22ph-app__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 25px !important;
      opacity: 1;
    }

    /* Blog Section */
    .page-22ph-app__blog-section {
      padding: 80px 0;
      background-color: var(--page-22ph-app-background-light);
    }

    .page-22ph-app__blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }

    .page-22ph-app__blog-card {
      background-color: #fff;
      border-radius: var(--page-22ph-app-border-radius);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      transition: transform var(--page-22ph-app-transition-speed) ease, box-shadow var(--page-22ph-app-transition-speed) ease;
      display: flex;
      flex-direction: column;
    }

    .page-22ph-app__blog-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .page-22ph-app__blog-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      max-width: 100%;
    }

    .page-22ph-app__blog-content {
      padding: 25px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .page-22ph-app__blog-title {
      font-size: 1.4em;
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .page-22ph-app__blog-title a {
      color: var(--page-22ph-app-primary-color);
      text-decoration: none;
      transition: color var(--page-22ph-app-transition-speed) ease;
    }

    .page-22ph-app__blog-title a:hover {
      color: var(--page-22ph-app-accent-color);
    }

    .page-22ph-app__blog-excerpt {
      font-size: 0.95em;
      color: var(--page-22ph-app-secondary-color);
      margin-bottom: 20px;
      flex-grow: 1;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-22ph-app__hero-title {
        font-size: 3em;
      }
      .page-22ph-app__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-22ph-app__hero-title {
        font-size: 2.5em;
      }
      .page-22ph-app__hero-subtitle {
        font-size: 1.1em;
      }
      .page-22ph-app__hero-ctas {
        flex-direction: column;
        gap: 15px;
      }
      .page-22ph-app__hero-ctas .page-22ph-app__button {
        width: 100%;
      }

      .page-22ph-app__section-title {
        font-size: 1.8em;
      }
      .page-22ph-app__section-description {
        font-size: 1em;
      }

      .page-22ph-app__features-grid,
      .page-22ph-app__game-categories,
      .page-22ph-app__promo-grid,
      .page-22ph-app__security-features,
      .page-22ph-app__blog-grid {
        grid-template-columns: 1fr;
      }

      .page-22ph-app__access-buttons {
        flex-direction: column;
      }
      .page-22ph-app__access-buttons .page-22ph-app__button {
        width: 100%;
      }

      /* List item responsive requirements */
      .page-22ph-app__features-grid > .page-22ph-app__feature-item,
      .page-22ph-app__game-categories > .page-22ph-app__game-card,
      .page-22ph-app__promo-grid > .page-22ph-app__promo-card,
      .page-22ph-app__security-features > .page-22ph-app__security-item,
      .page-22ph-app__blog-grid > .page-22ph-app__blog-card {
        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;
        word-break: break-word !important;
      }

      .page-22ph-app__container {
        padding: 15px;
      }

      .page-22ph-app__faq-question {
        padding: 15px 20px;
      }
      .page-22ph-app__faq-title {
        font-size: 1.1em;
      }
      .page-22ph-app__faq-answer {
        padding: 0 20px;
      }
      .page-22ph-app__faq-item.active .page-22ph-app__faq-answer {
        padding: 15px 20px !important;
      }

      /* Image responsive requirements */
      .page-22ph-app__hero-image,
      .page-22ph-app__feature-icon,
      .page-22ph-app__game-image,
      .page-22ph-app__promo-image,
      .page-22ph-app__security-icon,
      .page-22ph-app__blog-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-22ph-app__hero-image-wrapper,
      .page-22ph-app__feature-item,
      .page-22ph-app__game-card,
      .page-22ph-app__promo-card,
      .page-22ph-app__security-item,
      .page-22ph-app__blog-card {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-22ph-app__hero-title {
        font-size: 2em;
      }
      .page-22ph-app__hero-subtitle {
        font-size: 1em;
      }
      .page-22ph-app__section-title {
        font-size: 1.5em;
      }
      .page-22ph-app__feature-title,
      .page-22ph-app__game-title,
      .page-22ph-app__promo-title,
      .page-22ph-app__security-title,
      .page-22ph-app__blog-title {
        font-size: 1.3em;
      }
      .page-22ph-app__button {
        padding: 10px 20px;
      }
    }