:root {
      --primary-color: #e44d26; /* A vibrant orange/red */
      --secondary-color: #2c3e50; /* Dark blue/gray */
      --accent-color: #f39c12; /* Yellow/orange for highlights */
      --text-color: #ecf0f1; /* Light text on dark background */
      --background-dark: #1a1a1a;
      --background-light: #2c2c2c;
      --header-offset: 122px; /* Default value if not set by shared CSS */
    }

    .page-22bet-app-store {
      font-family: 'Arial', sans-serif;
      color: var(--text-color);
      background-color: var(--background-dark);
      line-height: 1.6;
      overflow-x: hidden;
    }

    .page-22bet-app-store__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    @media (max-width: 768px) {
      .page-22bet-app-store__section {
        padding: 40px 15px;
      }
    }

    .page-22bet-app-store__section-title {
      font-size: 2.8em;
      color: var(--primary-color);
      margin-bottom: 30px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    @media (max-width: 768px) {
      .page-22bet-app-store__section-title {
        font-size: 2em;
        margin-bottom: 20px;
      }
    }

    .page-22bet-app-store__section-description {
      font-size: 1.1em;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    @media (max-width: 768px) {
      .page-22bet-app-store__section-description {
        font-size: 1em;
        margin-bottom: 30px;
      }
    }

    /* Buttons */
    .page-22bet-app-store__button,
    .page-22bet-app-store__hero-cta,
    .page-22bet-app-store__quick-access-btn,
    .page-22bet-app-store__game-cta,
    .page-22bet-app-store__promo-cta,
    .page-22bet-app-store__security-contact-cta,
    .page-22bet-app-store__blog-read-more {
      display: inline-block;
      background-color: var(--primary-color);
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
      text-align: center;
    }

    .page-22bet-app-store__button:hover,
    .page-22bet-app-store__hero-cta:hover,
    .page-22bet-app-store__quick-access-btn:hover,
    .page-22bet-app-store__game-cta:hover,
    .page-22bet-app-store__promo-cta:hover,
    .page-22bet-app-store__security-contact-cta:hover,
    .page-22bet-app-store__blog-read-more:hover {
      background-color: var(--accent-color);
      transform: translateY(-2px);
    }

    @media (max-width: 768px) {
      .page-22bet-app-store__button,
      .page-22bet-app-store__hero-cta,
      .page-22bet-app-store__quick-access-btn,
      .page-22bet-app-store__game-cta,
      .page-22bet-app-store__promo-cta,
      .page-22bet-app-store__security-contact-cta,
      .page-22bet-app-store__blog-read-more {
        padding: 12px 25px;
        font-size: 1em;
      }
    }

    /* Hero Section */
    .page-22bet-app-store__hero-section {
      position: relative;
      height: 70vh; /* Adjust as needed */
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      padding-top: 10px; /* Small decorative padding, as body padding handles header offset */
    }

    @media (max-width: 768px) {
      .page-22bet-app-store__hero-section {
        height: auto;
        min-height: 60vh;
        padding-top: 10px !important;
      }
    }

    .page-22bet-app-store__hero-image-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }

    .page-22bet-app-store__hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.5); /* Darken image for text readability */
      max-width: 100%;
    }

    @media (max-width: 768px) {
      .page-22bet-app-store__hero-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-22bet-app-store__hero-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    .page-22bet-app-store__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding: 20px;
    }

    .page-22bet-app-store__hero-title {
      font-size: 3.8em;
      color: #fff;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    @media (max-width: 768px) {
      .page-22bet-app-store__hero-title {
        font-size: 2.5em;
      }
    }

    .page-22bet-app-store__hero-subtitle {
      font-size: 1.5em;
      color: #f1f1f1;
      margin-bottom: 40px;
    }

    @media (max-width: 768px) {
      .page-22bet-app-store__hero-subtitle {
        font-size: 1.1em;
        margin-bottom: 30px;
      }
    }

    /* Intro Section */
    .page-22bet-app-store__intro-section {
      background-color: var(--background-light);
      padding: 80px 20px;
      text-align: center;
    }

    @media (max-width: 768px) {
      .page-22bet-app-store__intro-section {
        padding: 50px 15px;
      }
    }

    .page-22bet-app-store__intro-title {
      font-size: 2.5em;
      color: var(--primary-color);
      margin-bottom: 25px;
    }

    @media (max-width: 768px) {
      .page-22bet-app-store__intro-title {
        font-size: 1.8em;
      }
    }

    .page-22bet-app-store__intro-text {
      font-size: 1.1em;
      max-width: 900px;
      margin: 0 auto 50px auto;
      color: var(--text-color);
    }

    .page-22bet-app-store__intro-features {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 30px;
      margin-top: 40px;
    }

    .page-22bet-app-store__feature-item {
      flex: 1;
      min-width: 280px;
      max-width: 350px;
      background-color: var(--background-dark);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      text-align: center;
      box-sizing: border-box;
    }

    @media (max-width: 768px) {
      .page-22bet-app-store__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
    }

    .page-22bet-app-store__feature-icon {
      width: 100px;
      height: 100px;
      margin-bottom: 20px;
      max-width: 100%;
      height: auto;
    }

    @media (max-width: 768px) {
      .page-22bet-app-store__feature-icon {
        max-width: 100% !important;
        height: auto !important;
      }
    }

    .page-22bet-app-store__feature-title {
      font-size: 1.5em;
      color: var(--accent-color);
      margin-bottom: 15px;
    }

    .page-22bet-app-store__feature-description {
      font-size: 1em;
      color: var(--text-color);
    }

    /* Quick Access Section */
    .page-22bet-app-store__quick-access-section {
      background-color: var(--background-dark);
      padding: 80px 20px;
      text-align: center;
    }

    @media (max-width: 768px) {
      .page-22bet-app-store__quick-access-section {
        padding: 50px 15px;
      }
    }

    .page-22bet-app-store__quick-access-title {
      font-size: 2.5em;
      color: #fff;
      margin-bottom: 25px;
    }

    @media (max-width: 768px) {
      .page-22bet-app-store__quick-access-title {
        font-size: 1.8em;
      }
    }

    .page-22bet-app-store__quick-access-description {
      font-size: 1.1em;
      max-width: 900px;
      margin: 0 auto 50px auto;
      color: #f1f1f1;
    }

    .page-22bet-app-store__quick-access-buttons {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .page-22bet-app-store__quick-access-btn {
      flex-basis: 220px;
      padding: 15px 20px;
      font-size: 1em;
      background-color: var(--secondary-color);
    }

    .page-22bet-app-store__quick-access-btn:hover {
      background-color: var(--primary-color);
    }

    @media (max-width: 768px) {
      .page-22bet-app-store__quick-access-btn {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        flex-basis: auto;
      }
    }

    /* Games Section */
    .page-22bet-app-store__games-section {
      background-color: var(--background-light);
      padding: 80px 20px;
      text-align: center;
    }

    @media (max-width: 768px) {
      .page-22bet-app-store__games-section {
        padding: 50px 15px;
      }
    }

    .page-22bet-app-store__games-title {
      font-size: 2.5em;
      color: var(--primary-color);
      margin-bottom: 25px;
    }

    @media (max-width: 768px) {
      .page-22bet-app-store__games-title {
        font-size: 1.8em;
      }
    }

    .page-22bet-app-store__games-description {
      font-size: 1.1em;
      max-width: 900px;
      margin: 0 auto 50px auto;
      color: var(--text-color);
    }

    .page-22bet-app-store__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    @media (max-width: 768px) {
      .page-22bet-app-store__game-categories {
        grid-template-columns: 1fr;
      }
    }

    .page-22bet-app-store__game-card {
      background-color: var(--background-dark);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      text-align: center;
      box-sizing: border-box;
    }

    .page-22bet-app-store__game-logo {
      width: 80px; /* gamelogo does not specify width, so define it here */
      height: 80px;
      object-fit: contain;
      margin-bottom: 20px;
      max-width: 100%;
      height: auto;
    }

    @media (max-width: 768px) {
      .page-22bet-app-store__game-logo {
        max-width: 100% !important;
        height: auto !important;
      }
    }

    .page-22bet-app-store__game-name {
      font-size: 1.8em;
      color: var(--accent-color);
      margin-bottom: 10px;
    }

    .page-22bet-app-store__game-text {
      font-size: 1em;
      color: var(--text-color);
      margin-bottom: 20px;
    }

    .page-22bet-app-store__game-cta {
      background-color: var(--primary-color);
      padding: 10px 20px;
      font-size: 0.95em;
    }

    /* Promotions Section */
    .page-22bet-app-store__promotions-section {
      background-color: var(--background-dark);
      padding: 80px 20px;
      text-align: center;
    }

    @media (max-width: 768px) {
      .page-22bet-app-store__promotions-section {
        padding: 50px 15px;
      }
    }

    .page-22bet-app-store__promotions-title {
      font-size: 2.5em;
      color: #fff;
      margin-bottom: 25px;
    }

    @media (max-width: 768px) {
      .page-22bet-app-store__promotions-title {
        font-size: 1.8em;
      }
    }

    .page-22bet-app-store__promotions-description {
      font-size: 1.1em;
      max-width: 900px;
      margin: 0 auto 50px auto;
      color: #f1f1f1;
    }

    .page-22bet-app-store__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    @media (max-width: 768px) {
      .page-22bet-app-store__promo-grid {
        grid-template-columns: 1fr;
      }
    }

    .page-22bet-app-store__promo-card {
      background-color: var(--background-light);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      text-align: left;
      box-sizing: border-box;
    }

    .page-22bet-app-store__promo-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      max-width: 100%;
    }

    @media (max-width: 768px) {
      .page-22bet-app-store__promo-image {
        max-width: 100% !important;
        height: auto !important;
      }
    }

    .page-22bet-app-store__promo-card h3,
    .page-22bet-app-store__promo-card p,
    .page-22bet-app-store__promo-card a {
      padding: 0 20px;
    }

    .page-22bet-app-store__promo-name {
      font-size: 1.6em;
      color: var(--primary-color);
      margin-top: 20px;
      margin-bottom: 10px;
    }

    .page-22bet-app-store__promo-text {
      font-size: 1em;
      color: var(--text-color);
      margin-bottom: 20px;
    }

    .page-22bet-app-store__promo-cta {
      display: block;
      width: calc(100% - 40px); /* Account for padding */
      margin: 0 20px 20px 20px;
      padding: 12px 0;
      background-color: var(--accent-color);
      font-size: 1em;
    }

    .page-22bet-app-store__promo-cta:hover {
      background-color: var(--primary-color);
    }

    /* Security Section */
    .page-22bet-app-store__security-section {
      background-color: var(--background-light);
      padding: 80px 20px;
      text-align: center;
    }

    @media (max-width: 768px) {
      .page-22bet-app-store__security-section {
        padding: 50px 15px;
      }
    }

    .page-22bet-app-store__security-title {
      font-size: 2.5em;
      color: var(--primary-color);
      margin-bottom: 25px;
    }

    @media (max-width: 768px) {
      .page-22bet-app-store__security-title {
        font-size: 1.8em;
      }
    }

    .page-22bet-app-store__security-description {
      font-size: 1.1em;
      max-width: 900px;
      margin: 0 auto 50px auto;
      color: var(--text-color);
    }

    .page-22bet-app-store__security-features {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 30px;
      margin-bottom: 50px;
    }

    .page-22bet-app-store__security-item {
      flex: 1;
      min-width: 280px;
      max-width: 350px;
      background-color: var(--background-dark);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      text-align: center;
      box-sizing: border-box;
    }

    @media (max-width: 768px) {
      .page-22bet-app-store__security-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
    }

    .page-22bet-app-store__security-icon {
      width: 100px;
      height: 100px;
      margin-bottom: 20px;
      max-width: 100%;
      height: auto;
    }

    @media (max-width: 768px) {
      .page-22bet-app-store__security-icon {
        max-width: 100% !important;
        height: auto !important;
      }
    }

    .page-22bet-app-store__security-subtitle {
      font-size: 1.5em;
      color: var(--accent-color);
      margin-bottom: 15px;
    }

    .page-22bet-app-store__security-text {
      font-size: 1em;
      color: var(--text-color);
    }

    /* FAQ Section */
    .page-22bet-app-store__faq-section {
      background-color: var(--background-dark);
      padding: 80px 20px;
      text-align: center;
    }

    @media (max-width: 768px) {
      .page-22bet-app-store__faq-section {
        padding: 50px 15px;
      }
    }

    .page-22bet-app-store__faq-title {
      font-size: 2.5em;
      color: #fff;
      margin-bottom: 40px;
    }

    @media (max-width: 768px) {
      .page-22bet-app-store__faq-title {
        font-size: 1.8em;
      }
    }

    .page-22bet-app-store__faq-list {
      max-width: 900px;
      margin: 0 auto;
      text-align: left;
    }

    @media (max-width: 768px) {
      .page-22bet-app-store__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }
    }

    .page-22bet-app-store__faq-item {
      background-color: var(--background-light);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
    }

    @media (max-width: 768px) {
      .page-22bet-app-store__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
    }

    .page-22bet-app-store__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: var(--secondary-color);
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-22bet-app-store__faq-question:hover {
      background-color: #3a506b; /* Slightly lighter secondary color */
    }

    .page-22bet-app-store__faq-question-text {
      font-size: 1.2em;
      color: #fff;
      margin: 0;
      pointer-events: none; /* Prevents text from blocking click event on parent */
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
      word-break: break-word !important;
      flex-grow: 1;
      padding-right: 15px; /* Space for toggle icon */
    }

    @media (max-width: 768px) {
      .page-22bet-app-store__faq-question {
        padding: 15px 20px;
      }
      .page-22bet-app-store__faq-question-text {
        font-size: 1.1em;
      }
    }

    .page-22bet-app-store__faq-toggle {
      font-size: 1.8em;
      color: var(--primary-color);
      font-weight: bold;
      pointer-events: none; /* Prevents icon from blocking click event on parent */
      transition: transform 0.3s ease;
      flex-shrink: 0;
    }

    .page-22bet-app-store__faq-item.active .page-22bet-app-store__faq-toggle {
      transform: rotate(45deg); /* Rotate '+' to 'x' or '-' */
      color: var(--accent-color);
    }

    .page-22bet-app-store__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding */
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      box-sizing: border-box;
    }

    .page-22bet-app-store__faq-item.active .page-22bet-app-store__faq-answer {
      max-height: 2000px !important; /* Sufficiently large value */
      padding: 20px 25px !important; /* Expanded padding */
      opacity: 1;
    }

    .page-22bet-app-store__faq-answer p {
      margin: 0;
      color: #ccc;
      font-size: 1em;
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
      word-break: break-word !important;
    }

    @media (max-width: 768px) {
      .page-22bet-app-store__faq-answer {
        padding: 0 20px; /* Adjust for mobile */
      }
      .page-22bet-app-store__faq-item.active .page-22bet-app-store__faq-answer {
        padding: 15px 20px !important; /* Adjust for mobile */
      }
      .page-22bet-app-store__faq-answer p {
        font-size: 0.95em;
      }
    }

    /* Blog Section */
    .page-22bet-app-store__blog-section {
      background-color: var(--background-light);
      padding: 80px 20px;
      text-align: center;
    }

    @media (max-width: 768px) {
      .page-22bet-app-store__blog-section {
        padding: 50px 15px;
      }
    }

    .page-22bet-app-store__blog-title {
      font-size: 2.5em;
      color: var(--primary-color);
      margin-bottom: 25px;
    }

    @media (max-width: 768px) {
      .page-22bet-app-store__blog-title {
        font-size: 1.8em;
      }
    }

    .page-22bet-app-store__blog-description {
      font-size: 1.1em;
      max-width: 900px;
      margin: 0 auto 50px auto;
      color: var(--text-color);
    }

    .page-22bet-app-store__blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    @media (max-width: 768px) {
      .page-22bet-app-store__blog-grid {
        grid-template-columns: 1fr;
      }
    }

    .page-22bet-app-store__blog-card {
      background-color: var(--background-dark);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      text-align: left;
      box-sizing: border-box;
    }

    .page-22bet-app-store__blog-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      max-width: 100%;
    }

    @media (max-width: 768px) {
      .page-22bet-app-store__blog-image {
        max-width: 100% !important;
        height: auto !important;
      }
    }

    .page-22bet-app-store__blog-card h3,
    .page-22bet-app-store__blog-card p,
    .page-22bet-app-store__blog-card a {
      padding: 0 20px;
    }

    .page-22bet-app-store__blog-card-title {
      font-size: 1.6em;
      color: var(--primary-color);
      margin-top: 20px;
      margin-bottom: 10px;
    }

    .page-22bet-app-store__blog-card-title a {
      color: var(--primary-color);
      text-decoration: none;
      transition: color 0.3s ease;
      padding: 0; /* Override button padding */
      display: inline; /* Keep text flow */
    }

    .page-22bet-app-store__blog-card-title a:hover {
      color: var(--accent-color);
    }

    .page-22bet-app-store__blog-card-excerpt {
      font-size: 1em;
      color: var(--text-color);
      margin-bottom: 20px;
    }

    .page-22bet-app-store__blog-read-more {
      display: block;
      width: calc(100% - 40px);
      margin: 0 20px 20px 20px;
      padding: 12px 0;
      background-color: var(--secondary-color);
      font-size: 1em;
    }

    .page-22bet-app-store__blog-read-more:hover {
      background-color: var(--primary-color);
    }

    /* General image and list item responsiveness */
    .page-22bet-app-store img {
      max-width: 100%;
      height: auto;
      display: block; /* Remove extra space below images */
    }

    @media (max-width: 768px) {
      .page-22bet-app-store img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-22bet-app-store div[class*="__image-wrapper"],
      .page-22bet-app-store div[class*="__card"],
      .page-22bet-app-store div[class*="__item"] {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-22bet-app-store ul,
      .page-22bet-app-store ol {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }
      .page-22bet-app-store li {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px !important; /* Example adjustment */
        padding-right: 15px !important; /* Example adjustment */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }