
    :root {
      --cty88-primary-color: #FFD700; /* Gold */
      --cty88-secondary-color: #00008B; /* Dark Blue */
      --cty88-accent-color: #DC143C; /* Crimson */
      --cty88-text-light: #f8f9fa;
      --cty88-text-dark: #212529;
      --cty88-bg-dark: #1a1a2e; /* Dark background for sections */
      --cty88-bg-light: #f0f2f5;
      --cty88-border-color: #4a4a6e;
    }

    body {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--cty88-text-light);
      background-color: var(--cty88-bg-dark);
    }

    /* General styling for the page-cty88 scope */
    .page-cty88 {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0; /* Remove default padding, sections will add their own */
      color: var(--cty88-text-light);
      background-color: var(--cty88-bg-dark);
      overflow-x: hidden; /* Prevent horizontal scroll */
      padding-top: var(--header-offset, 122px); /* Fallback to 122px if --header-offset not defined */
    }

    .page-cty88__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      border-radius: 8px;
      background-color: var(--cty88-bg-dark);
    }

    .page-cty88__section--light {
      background-color: var(--cty88-bg-light);
      color: var(--cty88-text-dark);
    }

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

    .page-cty88__subheading {
      font-size: 1.8em;
      color: var(--cty88-accent-color);
      text-align: center;
      margin-bottom: 20px;
    }

    .page-cty88__paragraph {
      font-size: 1.1em;
      margin-bottom: 15px;
      text-align: justify;
    }

    .page-cty88__button {
      display: inline-block;
      padding: 12px 25px;
      background-color: var(--cty88-accent-color);
      color: var(--cty88-text-light);
      border: none;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none; /* For button-like divs */
      text-align: center;
      white-space: nowrap;
    }

    .page-cty88__button:hover {
      background-color: #DC143C; /* Slightly darker crimson */
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-cty88__hero-section {
      position: relative;
      width: 100%;
      height: 600px; /* Adjust height for visual impact */
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: var(--cty88-text-light);
      overflow: hidden;
      padding-top: 10px; /* Small decorative top padding */
    }

    .page-cty88__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      filter: brightness(0.6); /* Darken background image for text readability */
      max-width: 100%; /* Ensure responsiveness */
    }

    .page-cty88__hero-content {
      position: relative;
      z-index: 1;
      padding: 20px;
      max-width: 800px;
    }

    .page-cty88__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      color: var(--cty88-primary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      line-height: 1.2;
    }

    .page-cty88__hero-description {
      font-size: 1.4em;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    /* Floating Buttons for Register/Login */
    .page-cty88__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .page-cty88__floating-button {
      width: 120px;
      padding: 10px 15px;
      font-size: 1em;
      border-radius: 50px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-cty88__floating-button--register {
      background-color: var(--cty88-primary-color);
      color: var(--cty88-text-dark);
    }

    .page-cty88__floating-button--login {
      background-color: var(--cty88-secondary-color);
      color: var(--cty88-text-light);
    }

    .page-cty88__floating-button--register:hover {
      background-color: #e6c200;
    }

    .page-cty88__floating-button--login:hover {
      background-color: #000066;
    }

    /* Games Section */
    .page-cty88__games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      padding: 20px 0;
    }

    .page-cty88__game-card {
      background-color: #2a2a4a; /* Darker background for cards */
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

    .page-cty88__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100%; /* Responsive image */
    }

    .page-cty88__game-content {
      padding: 20px;
    }

    .page-cty88__game-title {
      font-size: 1.5em;
      color: var(--cty88-primary-color);
      margin-bottom: 10px;
    }

    .page-cty88__game-description {
      font-size: 1em;
      color: var(--cty88-text-light);
      margin-bottom: 20px;
    }

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

    .page-cty88__promo-item {
      background-color: #2a2a4a;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      padding: 25px;
      text-align: center;
    }

    .page-cty88__promo-title {
      font-size: 1.6em;
      color: var(--cty88-accent-color);
      margin-bottom: 15px;
    }

    .page-cty88__promo-description {
      font-size: 1em;
      color: var(--cty88-text-light);
      margin-bottom: 20px;
    }

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

    .page-cty88__feature-item {
      background-color: #2a2a4a;
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-cty88__feature-icon {
      width: 200px; /* Enforce minimum size for gallery images */
      height: 200px;
      margin: 0 auto 15px auto;
      object-fit: contain;
      max-width: 100%; /* Responsive image */
      display: block;
    }

    .page-cty88__feature-title {
      font-size: 1.4em;
      color: var(--cty88-primary-color);
      margin-bottom: 10px;
    }

    .page-cty88__feature-description {
      font-size: 0.95em;
      color: var(--cty88-text-light);
    }

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

    .page-cty88__logo-item {
      background-color: #3a3a5a;
      border-radius: 8px;
      padding: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease;
    }

    .page-cty88__logo-item:hover {
      transform: scale(1.05);
    }

    .page-cty88__logo-image {
      max-width: 100%;
      max-height: 70px;
      object-fit: contain;
      filter: grayscale(0.8) brightness(1.5); /* Make logos visible on dark background */
      transition: filter 0.3s ease;
      min-width: 200px; /* Enforce minimum size for gallery images */
      min-height: 200px;
    }

    .page-cty88__logo-item:hover .page-cty88__logo-image {
      filter: grayscale(0) brightness(1); /* Original color on hover */
    }

    /* FAQ Section */
    .page-cty88__faq-section {
      background-color: #2a2a4a;
      padding: 40px 20px;
      border-radius: 8px;
      margin-bottom: 20px;
      color: var(--cty88-text-light);
    }

    .page-cty88__faq-item {
      border-bottom: 1px solid var(--cty88-border-color);
      margin-bottom: 10px;
    }

    .page-cty88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      color: var(--cty88-primary-color);
      transition: background-color 0.3s ease;
    }

    .page-cty88__faq-question:hover {
      background-color: rgba(255, 215, 0, 0.1);
      border-radius: 5px;
    }

    .page-cty88__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      font-weight: bold;
      pointer-events: none; /* Prevent h3 from blocking click event */
      flex-grow: 1;
    }

    .page-cty88__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle from blocking click event */
      transition: transform 0.3s ease;
    }

    .page-cty88__faq-item.active .page-cty88__faq-toggle {
      transform: rotate(45deg); /* Change + to X or - */
    }

    .page-cty88__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px; /* Initial padding */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      font-size: 1em;
      color: var(--cty88-text-light);
      padding-bottom: 15px; /* Ensure bottom padding when collapsed */
    }

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

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-cty88 {
        padding-left: 10px;
        padding-right: 10px; /* Adjust main padding for smaller screens */
      }
      
      .page-cty88__hero-section {
        height: 450px;
        padding-top: 10px;
      }

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

      .page-cty88__hero-description {
        font-size: 1.1em;
      }

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

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

      .page-cty88__games-grid,
      .page-cty88__promotions-list,
      .page-cty88__features-grid,
      .page-cty88__logos-grid {
        grid-template-columns: 1fr; /* Stack columns on mobile */
        gap: 20px;
      }

      .page-cty88__game-image,
      .page-cty88__feature-icon,
      .page-cty88__logo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        min-width: 200px; /* Still enforce minimum size for gallery images */
        min-height: 200px;
      }
      
      .page-cty88__section {
        padding: 30px 15px;
      }

      .page-cty88__faq-question {
        font-size: 1.1em;
        padding: 12px 0;
      }
      
      .page-cty88__faq-question h3 {
        font-size: 1.1em;
      }

      .page-cty88__faq-answer {
        padding: 0 10px;
        font-size: 0.95em;
      }

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

      /* List item mobile responsiveness */
      .page-cty88__games-grid > *,
      .page-cty88__promotions-list > *,
      .page-cty88__features-grid > *,
      .page-cty88__logos-grid > * {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px !important; /* Adjust padding to avoid too narrow content */
        padding-right: 15px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      
      .page-cty88__floating-buttons {
        right: 10px;
        bottom: 10px;
        gap: 8px;
      }

      .page-cty88__floating-button {
        width: 100px;
        padding: 8px 12px;
        font-size: 0.9em;
      }
    }

    @media (max-width: 480px) {
      .page-cty88__hero-title {
        font-size: 2em;
      }
      .page-cty88__hero-description {
        font-size: 1em;
      }
      .page-cty88__floating-buttons {
        flex-direction: row;
        width: calc(100% - 20px);
        bottom: 10px;
        left: 10px;
        right: 10px;
        justify-content: space-around;
      }
      .page-cty88__floating-button {
        flex: 1;
        width: auto;
        max-width: 48%;
      }
    }
  