
    :root {
      --primary-color: #e44d26; /* A vibrant color for highlights */
      --secondary-color: #333;
      --accent-color: #ffc107; /* Gold/yellow for promotions */
      --text-color: #333;
      --background-color: #f8f9fa;
      --light-gray: #eee;
      --dark-gray: #555;
    }

    .page-68win-mobile-site {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--text-color);
      background-color: var(--background-color);
      padding-top: var(--header-offset, 122px); /* Fallback for body padding */
    }

    .page-68win-mobile-site__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-68win-mobile-site__section--dark {
      background-color: var(--secondary-color);
      color: #fff;
      text-align: center;
    }

    .page-68win-mobile-site__heading {
      text-align: center;
      color: var(--primary-color);
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-68win-mobile-site__subheading {
      text-align: center;
      color: var(--dark-gray);
      margin-bottom: 25px;
      font-size: 1.8em;
      font-weight: 600;
    }

    .page-68win-mobile-site__text-center {
      text-align: center;
    }

    .page-68win-mobile-site__paragraph {
      margin-bottom: 15px;
      font-size: 1.1em;
      line-height: 1.8;
    }

    /* Hero Section */
    .page-68win-mobile-site__hero-section {
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      color: #fff;
      text-align: center;
      padding: 10px 20px 60px; /* Small decorative top padding */
      min-height: 400px;
      background: linear-gradient(135deg, var(--primary-color), #f06a46);
    }

    .page-68win-mobile-site__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      opacity: 0.2;
    }

    .page-68win-mobile-site__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
    }

    .page-68win-mobile-site__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      line-height: 1.2;
      color: #fff;
    }

    .page-68win-mobile-site__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #f0f0f0;
    }

    .page-68win-mobile-site__cta-button {
      display: inline-block;
      background-color: var(--accent-color);
      color: var(--secondary-color);
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-68win-mobile-site__cta-button:hover {
      background-color: #ffd740;
      transform: translateY(-2px);
    }

    /* Floating Buttons */
    .page-68win-mobile-site__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .page-68win-mobile-site__floating-button {
      background-color: var(--primary-color);
      color: #fff;
      padding: 12px 20px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      min-width: 120px;
    }

    .page-68win-mobile-site__floating-button--register {
      background-color: #28a745; /* Green for register */
    }

    .page-68win-mobile-site__floating-button:hover {
      transform: translateY(-3px);
      opacity: 0.9;
    }

    /* Game Categories */
    .page-68win-mobile-site__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      padding: 20px 0;
    }

    .page-68win-mobile-site__game-category-item {
      background-color: var(--light-gray);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 250px;
      box-sizing: border-box;
    }

    .page-68win-mobile-site__game-category-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .page-68win-mobile-site__game-category-image {
      width: 100%;
      max-width: 100%;
      height: 180px;
      object-fit: cover;
      border-bottom: 1px solid #ddd;
      box-sizing: border-box;
    }

    .page-68win-mobile-site__game-category-title {
      font-size: 1.5em;
      color: var(--secondary-color);
      padding: 15px 10px;
      font-weight: bold;
    }

    /* Promotions */
    .page-68win-mobile-site__promotion-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
    }

    .page-68win-mobile-site__promotion-item {
      background-color: #fefefe;
      border: 1px solid #e0e0e0;
      border-radius: 12px;
      padding: 25px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-68win-mobile-site__promotion-item:hover {
      transform: translateY(-3px);
    }

    .page-68win-mobile-site__promotion-title {
      color: var(--primary-color);
      font-size: 1.6em;
      margin-bottom: 10px;
    }

    .page-68win-mobile-site__promotion-description {
      color: var(--dark-gray);
      margin-bottom: 15px;
    }

    .page-68win-mobile-site__promotion-link {
      display: inline-block;
      background-color: var(--primary-color);
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: 500;
      transition: background-color 0.3s ease;
    }

    .page-68win-mobile-site__promotion-link:hover {
      background-color: #c93a1d;
    }

    /* Payment Providers */
    .page-68win-mobile-site__payment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 20px;
      justify-items: center;
      align-items: center;
      padding: 20px 0;
    }

    .page-68win-mobile-site__payment-logo {
      max-width: 120px;
      height: auto;
      filter: grayscale(80%);
      opacity: 0.7;
      transition: filter 0.3s ease, opacity 0.3s ease;
      box-sizing: border-box;
    }

    .page-68win-mobile-site__payment-logo:hover {
      filter: grayscale(0%);
      opacity: 1;
    }

    /* Game Providers */
    .page-68win-mobile-site__game-provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      justify-items: center;
      align-items: center;
      padding: 20px 0;
    }

    .page-68win-mobile-site__game-provider-logo {
      max-width: 180px;
      height: auto;
      opacity: 0.8;
      transition: opacity 0.3s ease;
      box-sizing: border-box;
    }

    .page-68win-mobile-site__game-provider-logo:hover {
      opacity: 1;
    }

    /* FAQ Section */
    .page-68win-mobile-site__faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-68win-mobile-site__faq-item {
      background-color: #fefefe;
      border: 1px solid var(--light-gray);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    }

    .page-68win-mobile-site__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 25px;
      font-size: 1.2em;
      font-weight: bold;
      color: var(--secondary-color);
      cursor: pointer;
      user-select: none;
      background-color: #f2f2f2;
      transition: background-color 0.3s ease;
    }

    .page-68win-mobile-site__faq-question h3 {
      margin: 0;
      font-size: 1em; /* Adjust to fit parent */
      color: inherit;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-68win-mobile-site__faq-question:hover {
      background-color: #e6e6e6;
    }

    .page-68win-mobile-site__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-68win-mobile-site__faq-item.active .page-68win-mobile-site__faq-toggle {
      transform: rotate(45deg); /* Plus to X */
    }

    .page-68win-mobile-site__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(--dark-gray);
    }

    .page-68win-mobile-site__faq-item.active .page-68win-mobile-site__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-68win-mobile-site__faq-answer p {
      margin-bottom: 10px;
    }

    .page-68win-mobile-site__social-media-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      list-style: none;
      padding: 0;
      margin-top: 20px;
    }

    .page-68win-mobile-site__social-media-item {
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: var(--primary-color);
      color: #fff;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      font-size: 1.5em;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-68win-mobile-site__social-media-item:hover {
      background-color: var(--accent-color);
      color: var(--secondary-color);
      transform: translateY(-3px);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-68win-mobile-site__section {
        padding: 30px 15px;
      }

      .page-68win-mobile-site__hero-title {
        font-size: 2.2em;
      }

      .page-68win-mobile-site__hero-description {
        font-size: 1.1em;
      }

      .page-68win-mobile-site__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-68win-mobile-site__heading {
        font-size: 2em;
      }

      .page-68win-mobile-site__subheading {
        font-size: 1.5em;
      }

      .page-68win-mobile-site__game-categories {
        grid-template-columns: 1fr;
      }
      .page-68win-mobile-site__game-category-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-68win-mobile-site__game-category-title {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-68win-mobile-site__promotion-list {
        grid-template-columns: 1fr;
      }
      .page-68win-mobile-site__promotion-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important;
      }
      .page-68win-mobile-site__promotion-title,
      .page-68win-mobile-site__promotion-description {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }


      .page-68win-mobile-site__payment-grid,
      .page-68win-mobile-site__game-provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 15px;
      }

      .page-68win-mobile-site__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row;
        gap: 8px;
        width: calc(100% - 30px);
        justify-content: space-around;
      }

      .page-68win-mobile-site__floating-button {
        flex: 1;
        padding: 10px 15px;
        font-size: 1em;
        min-width: unset;
      }

      .page-68win-mobile-site__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }
      .page-68win-mobile-site__faq-answer {
        padding: 0 20px;
      }
      .page-68win-mobile-site__faq-item.active .page-68win-mobile-site__faq-answer {
        padding: 15px 20px !important;
      }
      .page-68win-mobile-site__faq-question h3 {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      /* Ensure all images are responsive */
      .page-68win-mobile-site img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-68win-mobile-site__game-category-image {
        max-width: 100% !important;
        height: 150px !important; /* Adjust height for mobile if needed */
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-68win-mobile-site__hero-title {
        font-size: 1.8em;
      }
      .page-68win-mobile-site__hero-description {
        font-size: 1em;
      }
      .page-68win-mobile-site__cta-button {
        padding: 10px 20px;
        font-size: 1em;
      }
      .page-68win-mobile-site__heading {
        font-size: 1.8em;
      }
      .page-68win-mobile-site__subheading {
        font-size: 1.3em;
      }
      .page-68win-mobile-site__floating-buttons {
        flex-direction: row; /* Keep row for small screens */
        justify-content: space-between;
        gap: 5px;
      }
      .page-68win-mobile-site__floating-button {
        padding: 8px 10px;
        font-size: 0.9em;
      }
    }
  