
    /* General Styles */
    :root {
      --page-new88link-primary-color: #e44d26; /* A vibrant red/orange */
      --page-new88link-secondary-color: #333;
      --page-new88link-accent-color: #f7b32b; /* Gold/yellow for highlights */
      --page-new88link-background-light: #f5f5f5;
      --page-new88link-background-dark: #222;
      --page-new88link-text-light: #fff;
      --page-new88link-text-dark: #333;
      --page-new88link-border-color: #eee;
    }

    .page-new88link {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-new88link-text-dark);
      background-color: var(--page-new88link-background-light);
      overflow-x: hidden; /* Prevent horizontal scroll */
    }

    .page-new88link__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

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

    .page-new88link__section--dark {
      background-color: var(--page-new88link-background-dark);
      color: var(--page-new88link-text-light);
    }

    .page-new88link__heading {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: var(--page-new88link-primary-color);
      text-transform: uppercase;
      font-weight: bold;
    }

    .page-new88link__heading--light {
      color: var(--page-new88link-text-light);
    }

    .page-new88link__subheading {
      font-size: 1.8em;
      margin-bottom: 15px;
      color: var(--page-new88link-secondary-color);
    }

    .page-new88link__text {
      font-size: 1.1em;
      margin-bottom: 20px;
      line-height: 1.8;
    }

    .page-new88link__text-link {
        color: var(--page-new88link-primary-color);
        text-decoration: none;
        font-weight: bold;
    }

    .page-new88link__text-link:hover {
        text-decoration: underline;
    }

    .page-new88link__button {
      display: inline-block;
      background-color: var(--page-new88link-primary-color);
      color: var(--page-new88link-text-light);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-new88link__button:hover {
      background-color: #ff6f40;
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-new88link__hero-section {
      background-color: var(--page-new88link-background-dark);
      color: var(--page-new88link-text-light);
      padding-top: 120px; /* Space for fixed header */
      position: relative;
      overflow: hidden;
    }

    .page-new88link__hero-content {
      position: relative;
      z-index: 2;
      padding: 40px 15px;
      text-align: center;
    }

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

    .page-new88link__hero-image {
        max-width: 100%;
        height: auto;
        display: block;
        border-radius: 10px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
        min-width: 400px; /* Recommended size for hero */
        min-height: 225px; /* Aspect ratio 16:9 */
    }

    .page-new88link__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      font-weight: 900;
      line-height: 1.2;
      color: var(--page-new88link-accent-color);
    }

    .page-new88link__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      font-weight: 300;
    }

    .page-new88link__hero-link {
        color: var(--page-new88link-accent-color);
        text-decoration: none;
        font-weight: bold;
    }

    .page-new88link__hero-link:hover {
        text-decoration: underline;
    }

    /* Floating Login/Register Button */
    .page-new88link__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-new88link-accent-color);
      color: var(--page-new88link-text-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.2);
      z-index: 100;
      transition: background-color 0.3s ease, transform 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      line-height: 1.2;
    }

    .page-new88link__floating-button:hover {
      background-color: #ffd700; /* Darker gold */
      transform: translateY(-5px) scale(1.05);
    }

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

    .page-new88link__game-card {
      background-color: var(--page-new88link-text-light);
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .page-new88link__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .page-new88link__game-card-link {
        text-decoration: none;
        color: inherit;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .page-new88link__game-card-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        height: 250px; /* Fixed height for consistency */
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #f0f0f0; /* Placeholder background */
    }

    .page-new88link__game-card-image {
        max-width: 100%;
        height: auto;
        display: block;
        object-fit: cover; /* Ensures image covers the area without distortion */
        width: 100%; /* Important for object-fit to work correctly */
        min-height: 250px; /* Ensure minimum height */
        min-width: 250px; /* Ensure minimum width */
    }

    .page-new88link__game-card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-new88link__game-card-title {
      font-size: 1.4em;
      color: var(--page-new88link-primary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }
    .page-new88link__game-card-title a {
        text-decoration: none;
        color: inherit;
    }
    .page-new88link__game-card-title a:hover {
        text-decoration: underline;
    }

    .page-new88link__game-card-description {
      font-size: 0.95em;
      color: var(--page-new88link-secondary-color);
      margin-bottom: 15px;
    }

    /* Game Providers Section */
    .page-new88link__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Adjusted for min 200px image */
      gap: 20px;
      margin-top: 30px;
      justify-items: center; /* Center items in grid cells */
    }

    .page-new88link__provider-logo-wrapper {
        width: 100%;
        max-width: 200px; /* Max width for each logo, min 200px */
        height: 200px; /* Fixed height for consistency, min 200px */
        overflow: hidden;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--page-new88link-text-light);
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        transition: transform 0.2s ease;
    }

    .page-new88link__provider-logo-wrapper:hover {
      transform: translateY(-3px);
    }

    .page-new88link__provider-logo {
        max-width: 90%;
        max-height: 90%;
        height: auto;
        display: block;
        object-fit: contain; /* Ensures logo fits without cropping */
        min-width: 200px; /* Enforce min size */
        min-height: 200px; /* Enforce min size */
    }

    /* Promotions Section */
    .page-new88link__promotion-card {
      background-color: var(--page-new88link-text-light);
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      padding: 30px;
      margin-bottom: 25px;
      text-align: left;
      border-left: 5px solid var(--page-new88link-primary-color);
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .page-new88link__promotion-icon-wrapper {
        width: 100%;
        max-width: 250px; /* Min 200px */
        height: 250px; /* Min 200px */
        overflow: hidden;
        box-sizing: border-box;
        flex-shrink: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #f9f9f9;
        border-radius: 8px;
    }
    .page-new88link__promotion-icon {
        max-width: 90%;
        max-height: 90%;
        height: auto;
        display: block;
        object-fit: contain;
        min-width: 200px; /* Enforce min size */
        min-height: 200px; /* Enforce min size */
    }

    .page-new88link__promotion-content {
      flex-grow: 1;
    }

    .page-new88link__promotion-title {
      font-size: 1.6em;
      color: var(--page-new88link-primary-color);
      margin-bottom: 10px;
    }

    .page-new88link__promotion-description {
      font-size: 1.05em;
      margin-bottom: 15px;
      color: var(--page-new88link-secondary-color);
    }

    /* Advantages List */
    .page-new88link__advantages-list {
        list-style: none;
        padding: 0;
        margin-top: 20px;
        text-align: left;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 15px;
    }

    .page-new88link__advantages-list li {
        background-color: var(--page-new88link-background-dark);
        color: var(--page-new88link-text-light);
        padding: 15px 20px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 1.05em;
    }

    .page-new88link__advantages-list li strong {
        color: var(--page-new88link-accent-color);
    }

    /* FAQ Section */
    .page-new88link__faq-list {
      margin-top: 30px;
      text-align: left;
    }

    .page-new88link__faq-item {
      background-color: var(--page-new88link-text-light);
      border: 1px solid var(--page-new88link-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
    }

    .page-new88link__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #f9f9f9;
      cursor: pointer;
      font-size: 1.2em;
      font-weight: bold;
      color: var(--page-new88link-secondary-color);
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-new88link__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-new88link__faq-question h3 {
        margin: 0;
        flex-grow: 1;
        text-align: left;
        color: var(--page-new88link-primary-color);
        pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-new88link__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      color: var(--page-new88link-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click on parent */
    }

    .page-new88link__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      background-color: var(--page-new88link-text-light);
      color: var(--page-new88link-secondary-color);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      text-align: left;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-new88link__hero-section {
        padding-top: 100px; /* Adjust for mobile fixed header */
      }

      .page-new88link__hero-title {
        font-size: 2.5em;
      }

      .page-new88link__hero-subtitle {
        font-size: 1.2em;
      }

      .page-new88link__heading {
        font-size: 2em;
      }

      .page-new88link__subheading {
        font-size: 1.5em;
      }

      .page-new88link__button {
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-new88link__floating-button {
        padding: 12px 20px;
        font-size: 1em;
        bottom: 15px;
        right: 15px;
      }

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

      .page-new88link__game-card-image-wrapper,
      .page-new88link__game-card-image {
        height: 200px; /* Smaller height for mobile, maintaining min 200px */
        min-height: 200px !important;
        min-width: 200px !important;
      }

      .page-new88link__providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Adjust for mobile */
      }

      .page-new88link__provider-logo-wrapper,
      .page-new88link__provider-logo {
        max-width: 180px; /* Adjust min size for mobile */
        height: 180px;
        min-width: 180px !important;
        min-height: 180px !important;
      }

      .page-new88link__promotion-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
      }
      .page-new88link__promotion-icon-wrapper {
        max-width: 220px; /* Adjust min size for mobile */
        height: 220px;
        min-width: 220px !important;
        min-height: 220px !important;
      }
      .page-new88link__promotion-icon {
        min-width: 220px !important;
        min-height: 220px !important;
      }

      .page-new88link__faq-question {
        font-size: 1.1em;
        padding: 12px 15px;
      }

      .page-new88link__faq-answer {
        padding: 15px 15px;
      }

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

      /* Image responsive forcing */
      .page-new88link img {
          max-width: 100% !important;
          height: auto !important;
      }
      .page-new88link__hero-image-wrapper,
      .page-new88link__game-card-image-wrapper,
      .page-new88link__provider-logo-wrapper,
      .page-new88link__promotion-icon-wrapper {
          width: 100% !important;
          max-width: 100% !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
      }
      /* Ensure minimum sizes are respected even on small screens */
      .page-new88link__hero-image {
          min-width: 300px !important; /* Keep a reasonable minimum for hero */
          min-height: 168px !important;
      }
      .page-new88link__game-card-image {
          min-width: 200px !important;
          min-height: 200px !important;
      }
      .page-new88link__provider-logo {
          min-width: 150px !important; /* Slightly smaller for logos on mobile */
          min-height: 150px !important;
      }
      .page-new88link__promotion-icon {
          min-width: 200px !important;
          min-height: 200px !important;
      }
    }
  