
    :root {
      --page-sim88-bg-dark: #1a1a1a;
      --page-sim88-text-white: #ffffff;
      --page-sim88-text-yellow: #fdd835; /* A bright yellow */
      --page-sim88-accent-yellow: #ffeb3b; /* A slightly brighter yellow for accents */
      --page-sim88-border-dark: #333333;
      --page-sim88-button-hover: #fbc02d;
    }

    .page-sim88 {
      font-family: 'Arial', sans-serif;
      background-color: var(--page-sim88-bg-dark);
      color: var(--page-sim88-text-white);
      line-height: 1.6;
      overflow-x: hidden;
    }

    .page-sim88__main-wrapper {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
      padding-top: 120px; /* Safety area for fixed header on desktop */
    }

    @media (max-width: 768px) {
      .page-sim88__main-wrapper {
        padding-top: 100px; /* Safety area for fixed header on mobile */
      }
    }

    .page-sim88__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-sim88__section-title {
      font-size: 2.5em;
      color: var(--page-sim88-text-yellow);
      margin-bottom: 30px;
      text-transform: uppercase;
      font-weight: bold;
    }

    @media (max-width: 768px) {
      .page-sim88__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
      }
    }

    .page-sim88__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: var(--page-sim88-text-white);
    }

    .page-sim88__text-content strong {
      color: var(--page-sim88-text-yellow);
    }

    /* Hero Section */
    .page-sim88__hero-section {
      background-color: var(--page-sim88-bg-dark);
      padding: 0; /* Hero image will be its own block */
      margin-bottom: 40px;
    }

    .page-sim88__hero-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 30px;
    }

    .page-sim88__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    }

    .page-sim88__hero-content {
      padding: 20px 15px;
      text-align: center;
    }

    .page-sim88__hero-title {
      font-size: 3.5em;
      color: var(--page-sim88-accent-yellow);
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .page-sim88__hero-subtitle {
      font-size: 1.5em;
      color: var(--page-sim88-text-white);
      margin-bottom: 30px;
    }

    @media (max-width: 768px) {
      .page-sim88__hero-title {
        font-size: 2.2em;
      }
      .page-sim88__hero-subtitle {
        font-size: 1.2em;
      }
      .page-sim88__hero-image-wrapper {
        margin-bottom: 20px;
      }
    }

    /* Floating Login Button */
    .page-sim88__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-sim88-accent-yellow);
      color: var(--page-sim88-bg-dark);
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      animation: page-sim88__pulse 2s infinite;
    }

    .page-sim88__floating-button:hover {
      background-color: var(--page-sim88-button-hover);
      transform: scale(1.05);
    }

    @keyframes page-sim88__pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.03); }
      100% { transform: scale(1); }
    }

    @media (max-width: 768px) {
      .page-sim88__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }
    }

    /* Game Categories */
    .page-sim88__game-categories-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-sim88__game-card {
      background-color: #2a2a2a;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
    }

    .page-sim88__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    }

    .page-sim88__game-card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 200px; /* Fixed height for image consistency */
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-sim88__game-card-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      width: 100%;
      height: 100%;
    }

    .page-sim88__game-card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .page-sim88__game-card-title {
      font-size: 1.5em;
      color: var(--page-sim88-text-yellow);
      margin-bottom: 10px;
      text-decoration: none;
      font-weight: bold;
    }

    .page-sim88__game-card-title:hover {
      color: var(--page-sim88-accent-yellow);
    }

    .page-sim88__game-card-description {
      font-size: 0.95em;
      color: var(--page-sim88-text-white);
    }

    @media (max-width: 768px) {
      .page-sim88__game-categories-grid {
        grid-template-columns: 1fr;
      }
      .page-sim88__game-card-title {
        font-size: 1.3em;
      }
      .page-sim88__game-card-image-wrapper {
        height: 180px;
      }
    }

    /* Providers Section */
    .page-sim88__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 20px;
      margin-top: 30px;
      justify-items: center;
      align-items: center;
    }

    .page-sim88__provider-logo-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      background-color: #2a2a2a;
      border-radius: 8px;
      padding: 15px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px; /* Ensure consistent height for logos */
    }

    .page-sim88__provider-logo-wrapper:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }

    .page-sim88__provider-logo {
      max-width: 100%;
      height: auto;
      max-height: 70px; /* Max height for logos */
      display: block;
      object-fit: contain;
    }

    @media (max-width: 768px) {
      .page-sim88__providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 15px;
      }
      .page-sim88__provider-logo-wrapper {
        height: 80px;
        padding: 10px;
      }
      .page-sim88__provider-logo {
        max-height: 50px;
      }
    }

    /* Why Choose Section */
    .page-sim88__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-sim88__feature-item {
      background-color: #2a2a2a;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: left;
      transition: transform 0.3s ease, background-color 0.3s ease;
    }

    .page-sim88__feature-item:hover {
      transform: translateY(-5px);
      background-color: #3a3a3a;
    }

    .page-sim88__feature-icon-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 20px;
      height: 100px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-sim88__feature-icon {
      max-width: 100%;
      height: auto;
      max-height: 80px;
      display: block;
      object-fit: contain;
    }

    .page-sim88__feature-title {
      font-size: 1.8em;
      color: var(--page-sim88-text-yellow);
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-sim88__feature-description {
      font-size: 1em;
      color: var(--page-sim88-text-white);
    }

    @media (max-width: 768px) {
      .page-sim88__features-grid {
        grid-template-columns: 1fr;
      }
      .page-sim88__feature-title {
        font-size: 1.5em;
      }
      .page-sim88__feature-item {
        padding: 25px;
      }
      .page-sim88__feature-icon-wrapper {
        height: 80px;
        margin-bottom: 15px;
      }
      .page-sim88__feature-icon {
        max-height: 60px;
      }
    }

    /* FAQ Section */
    .page-sim88__faq-section {
      text-align: left;
    }

    .page-sim88__faq-container {
      margin-top: 30px;
      background-color: #2a2a2a;
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-sim88__faq-item {
      border-bottom: 1px solid var(--page-sim88-border-dark);
      margin-bottom: 10px;
      padding-bottom: 10px;
    }

    .page-sim88__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .page-sim88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      cursor: pointer;
      user-select: none;
      transition: color 0.3s ease;
    }

    .page-sim88__faq-question:hover {
      color: var(--page-sim88-accent-yellow);
    }

    .page-sim88__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-sim88-text-white);
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-sim88__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-sim88-text-yellow);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click on parent */
    }

    .page-sim88__faq-item.active .page-sim88__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
      content: "−"; /* Visually change to minus, handled by JS */
    }

    .page-sim88__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      color: var(--page-sim88-text-white);
      font-size: 1em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-sim88__faq-item.active .page-sim88__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 15px !important;
      opacity: 1;
    }

    @media (max-width: 768px) {
      .page-sim88__faq-question {
        padding: 12px 0;
      }
      .page-sim88__faq-question h3 {
        font-size: 1em;
      }
      .page-sim88__faq-toggle {
        font-size: 1.5em;
      }
      .page-sim88__faq-answer {
        padding: 0 10px;
        font-size: 0.9em;
      }
      .page-sim88__faq-item.active .page-sim88__faq-answer {
        padding: 15px 10px !important;
      }
    }

    /* General responsive image styles */
    .page-sim88 img {
      max-width: 100%;
      height: auto;
      display: block; /* Remove extra space below images */
    }

    @media (max-width: 768px) {
      .page-sim88 img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-sim88 div[class*="__image-wrapper"] {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

  