
    /* Reset & Base Styles for page-sv88 */
    .page-sv88 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      box-sizing: border-box;
      padding: 0;
      margin: 0;
    }

    .page-sv88__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    /* Hero Section */
    .page-sv88__hero-section {
      position: relative;
      width: 100%;
      overflow: hidden;
      text-align: center;
      color: #fff;
      padding-top: 10px; /* For fixed header */
      box-sizing: border-box;
      background-color: #2c3e50; /* Fallback background */
    }

    .page-sv88__hero-image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      max-width: 100%; /* Ensure responsiveness */
    }

    .page-sv88__hero-content {
      padding: 20px 15px 40px;
      background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
      position: relative;
      z-index: 1;
    }

    .page-sv88__hero-title {
      font-size: 2.5em;
      margin-top: 10px;
      margin-bottom: 15px;
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    }

    .page-sv88__hero-description {
      font-size: 1.1em;
      margin-bottom: 25px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: #eee;
    }

    /* Floating Login Button */
    .page-sv88__floating-button-wrapper {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
        width: 90%;
        max-width: 400px;
        box-sizing: border-box;
    }

    .page-sv88__floating-button {
      display: block;
      width: 100%;
      padding: 15px 20px;
      background-color: #e74c3c; /* Red color for urgency */
      color: #fff;
      font-size: 1.2em;
      font-weight: bold;
      text-align: center;
      border-radius: 50px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none; /* Ensure it looks like a button */
    }

    .page-sv88__floating-button:hover {
      background-color: #c0392b;
      transform: scale(1.02) translateX(-50%);
    }

    /* Section Styling */
    .page-sv88__section {
      padding: 40px 0;
      background-color: #fff;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .page-sv88__section--dark {
      background-color: #2c3e50;
      color: #ecf0f1;
    }

    .page-sv88__section-title {
      font-size: 2em;
      color: #2c3e50;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
    }

    .page-sv88__section-title--dark {
      color: #ecf0f1;
    }

    .page-sv88__section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background-color: #e74c3c;
      margin: 10px auto 0;
    }

    .page-sv88__text-block {
      margin-bottom: 20px;
      text-align: justify;
    }

    .page-sv88__text-block p {
      margin-bottom: 15px;
    }

    /* List Styles */
    .page-sv88__numbered-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-sv88__numbered-list-item {
      background-color: #ecf0f1;
      margin-bottom: 10px;
      padding: 15px 20px;
      border-radius: 5px;
      display: flex;
      align-items: flex-start;
      box-shadow: 0 1px 5px rgba(0,0,0,0.05);
    }

    .page-sv88__numbered-list-item-number {
      background-color: #e74c3c;
      color: #fff;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      margin-right: 15px;
      flex-shrink: 0;
    }

    .page-sv88__numbered-list-item-content {
      flex-grow: 1;
    }

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

    .page-sv88__game-card {
      background-color: #ecf0f1;
      border-radius: 8px;
      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;
    }

    .page-sv88__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    }

    .page-sv88__game-card-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
      background-color: #ccc; /* Placeholder background */
    }

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

    .page-sv88__game-card-content {
      padding: 20px;
    }

    .page-sv88__game-card-title {
      font-size: 1.3em;
      color: #2c3e50;
      margin-bottom: 10px;
    }

    .page-sv88__game-card-description {
      font-size: 0.9em;
      color: #555;
      margin-bottom: 15px;
    }

    .page-sv88__game-card-button {
      display: inline-block;
      padding: 10px 20px;
      background-color: #3498db;
      color: #fff;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-sv88__game-card-button:hover {
      background-color: #2980b9;
    }

    /* Call to Action Button */
    .page-sv88__cta-button {
      display: inline-block;
      padding: 15px 30px;
      background-color: #27ae60; /* Green for positive action */
      color: #fff;
      font-size: 1.2em;
      font-weight: bold;
      border-radius: 50px;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      margin-top: 30px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .page-sv88__cta-button:hover {
      background-color: #229954;
      transform: translateY(-2px);
    }

    /* FAQ Section */
    .page-sv88__faq-section {
      background-color: #f8f8f8;
      padding: 40px 0;
    }

    .page-sv88__faq-item {
      background-color: #fff;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      overflow: hidden;
    }

    .page-sv88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 15px;
      cursor: pointer;
      background-color: #f0f0f0;
      border-bottom: 1px solid #ddd;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-sv88__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-sv88__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #333;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-sv88__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #e74c3c;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent span from blocking click event */
    }

    .page-sv88__faq-item.active .page-sv88__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' visually */
      color: #27ae60;
    }

    .page-sv88__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555;
    }

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

    .page-sv88__faq-answer p {
      margin-top: 0;
      margin-bottom: 10px;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-sv88__hero-title {
        font-size: 1.8em;
      }

      .page-sv88__hero-description {
        font-size: 1em;
      }

      .page-sv88__section-title {
        font-size: 1.6em;
      }

      .page-sv88__game-grid {
        grid-template-columns: 1fr;
      }

      .page-sv88__game-card-image-wrapper {
        height: 180px;
      }

      .page-sv88__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-sv88__numbered-list-item {
        padding: 10px 15px;
      }

      .page-sv88__numbered-list-item-number {
        width: 25px;
        height: 25px;
        font-size: 0.9em;
        margin-right: 10px;
      }

      .page-sv88__faq-question {
        padding: 15px 10px;
      }

      .page-sv88__faq-question h3 {
        font-size: 1em;
      }

      .page-sv88__faq-answer {
        padding: 15px 10px;
      }

      .page-sv88__faq-item.active .page-sv88__faq-answer {
        padding: 15px 10px !important;
      }

      /* Image responsive optimization for mobile */
      .page-sv88 img {
          max-width: 100% !important;
          height: auto !important;
      }
      .page-sv88__game-card-image-wrapper,
      .page-sv88__hero-image-container { /* Add any other image containers here */
          width: 100% !important;
          max-width: 100% !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
      }
    }
  