
    /* Base styles for the page-yy777-cim */
    .page-yy777-cim {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
    }

    .page-yy777-cim__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    /* Hero Section */
    .page-yy777-cim__hero-section {
      position: relative;
      background-color: #1a1a2e; /* Dark background for contrast */
      color: #fff;
      padding: 80px 0; /* Content padding, assuming body handles header offset */
      text-align: center;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 400px;
    }

    .page-yy777-cim__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.4;
      z-index: 1;
    }

    .page-yy777-cim__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 20px;
    }

    .page-yy777-cim__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #e0b000; /* Gold color for branding */
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .page-yy777-cim__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #ddd;
    }

    .page-yy777-cim__cta-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .page-yy777-cim__button {
      background-color: #e0b000;
      color: #1a1a2e;
      padding: 15px 30px;
      border: none;
      border-radius: 5px;
      font-size: 1.1em;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      display: inline-block;
      font-weight: bold;
    }

    .page-yy777-cim__button:hover {
      background-color: #ffc107;
      transform: translateY(-2px);
    }

    .page-yy777-cim__button--secondary {
      background-color: #333;
      color: #e0b000;
      border: 2px solid #e0b000;
    }

    .page-yy777-cim__button--secondary:hover {
      background-color: #555;
      color: #fff;
    }

    /* Promotions Section */
    .page-yy777-cim__promotions-section {
      background-color: #f0f0f0;
      padding: 60px 0;
      text-align: center;
    }

    .page-yy777-cim__section-title {
      font-size: 2.2em;
      color: #1a1a2e;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-yy777-cim__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #e0b000;
      border-radius: 2px;
    }

    .page-yy777-cim__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      padding: 0 20px;
    }

    .page-yy777-cim__promo-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      overflow: hidden;
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* For mobile responsiveness */
    }

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

    .page-yy777-cim__promo-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-yy777-cim__promo-content {
      padding: 25px;
    }

    .page-yy777-cim__promo-title {
      font-size: 1.4em;
      color: #1a1a2e;
      margin-bottom: 10px;
    }

    .page-yy777-cim__promo-description {
      font-size: 0.95em;
      color: #555;
      margin-bottom: 20px;
    }

    /* Game Categories Section */
    .page-yy777-cim__game-categories-section {
      padding: 60px 0;
      text-align: center;
      background-color: #fff;
    }

    .page-yy777-cim__category-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      padding: 0 20px;
    }

    .page-yy777-cim__category-card {
      background-color: #1a1a2e;
      color: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

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

    .page-yy777-cim__category-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
    }

    .page-yy777-cim__category-title {
      font-size: 1.3em;
      padding: 15px;
      color: #e0b000;
    }

    /* Why Choose Section */
    .page-yy777-cim__features-section {
      background-color: #f0f0f0;
      padding: 60px 0;
      text-align: center;
    }

    .page-yy777-cim__feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      padding: 0 20px;
    }

    .page-yy777-cim__feature-item {
      background-color: #fff;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
      text-align: center;
      box-sizing: border-box; /* For mobile responsiveness */
    }

    .page-yy777-cim__feature-icon {
      width: 200px; /* Minimum size 200x200 */
      height: 200px; /* Minimum size 200x200 */
      margin-bottom: 20px;
      object-fit: contain;
    }

    .page-yy777-cim__feature-title {
      font-size: 1.5em;
      color: #1a1a2e;
      margin-bottom: 10px;
    }

    .page-yy777-cim__feature-description {
      color: #666;
      font-size: 0.95em;
    }

    /* Payment Methods Section */
    .page-yy777-cim__payments-section {
      background-color: #1a1a2e;
      color: #fff;
      padding: 60px 0;
      text-align: center;
    }

    .page-yy777-cim__payments-section .page-yy777-cim__section-title {
      color: #e0b000;
    }

    .page-yy777-cim__payment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      padding: 0 20px;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-yy777-cim__payment-item {
      background-color: #333;
      border-radius: 8px;
      padding: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 10px rgba(0,0,0,0.3);
      box-sizing: border-box; /* For mobile responsiveness */
    }

    .page-yy777-cim__payment-logo {
      max-width: 100%;
      height: auto;
      min-width: 100px; /* Ensure logos are not too small, but responsive */
      min-height: 50px;
      object-fit: contain;
      margin-bottom: 10px;
      filter: grayscale(0%); /* Ensure no color filters are applied */
    }

    .page-yy777-cim__payment-name {
      font-size: 1em;
      font-weight: bold;
      color: #fff;
    }

    /* Call to Action Section */
    .page-yy777-cim__cta-section {
      background-color: #e0b000;
      padding: 60px 0;
      text-align: center;
      color: #1a1a2e;
    }

    .page-yy777-cim__cta-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: #1a1a2e;
    }

    .page-yy777-cim__cta-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    /* FAQ Section */
    .page-yy777-cim__faq-section {
      padding: 60px 0;
      background-color: #f8f8f8;
      text-align: center;
    }

    .page-yy777-cim__faq-list {
      max-width: 800px;
      margin: 0 auto;
      text-align: left;
    }

    .page-yy777-cim__faq-item {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      transition: all 0.3s ease;
    }

    .page-yy777-cim__faq-item.active {
      border-color: #e0b000;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .page-yy777-cim__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #fff;
      color: #1a1a2e;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-yy777-cim__faq-question:hover {
      background-color: #f5f5f5;
    }

    .page-yy777-cim__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click */
      color: #1a1a2e;
    }

    .page-yy777-cim__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #e0b000;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
    }

    .page-yy777-cim__faq-item.active .page-yy777-cim__faq-toggle {
      transform: rotate(45deg); /* Changes + to x or a similar effect */
    }

    .page-yy777-cim__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding, vertical will be 0 */
      opacity: 0;
      background-color: #fdfdfd;
      color: #555;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

    .page-yy777-cim__faq-item.active .page-yy777-cim__faq-answer {
      max-height: 2000px !important; /* Sufficiently large height */
      padding: 20px 25px !important; /* Specific padding for active state */
      opacity: 1;
    }

    .page-yy777-cim__faq-answer p {
      margin: 0 0 10px 0;
      font-size: 0.95em;
    }
    .page-yy777-cim__faq-answer p:last-child {
      margin-bottom: 0;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-yy777-cim__container {
        padding: 10px;
      }

      .page-yy777-cim__hero-section {
        padding: 60px 0;
        min-height: 300px;
      }

      .page-yy777-cim__hero-title {
        font-size: 2em;
      }

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

      .page-yy777-cim__cta-buttons {
        flex-direction: column;
        gap: 15px;
      }

      .page-yy777-cim__button {
        width: 80%;
        margin: 0 auto;
        padding: 12px 25px;
      }

      .page-yy777-cim__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }

      .page-yy777-cim__promo-grid,
      .page-yy777-cim__category-grid,
      .page-yy777-cim__feature-grid,
      .page-yy777-cim__payment-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      /* List Item Responsive for all grid/list items */
      .page-yy777-cim__promo-card,
      .page-yy777-cim__category-card,
      .page-yy777-cim__feature-item,
      .page-yy777-cim__payment-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important; /* Adjust padding for mobile */
      }

      .page-yy777-cim__promo-image,
      .page-yy777-cim__category-image {
        height: 150px;
      }

      .page-yy777-cim__cta-title {
        font-size: 2em;
      }

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

      .page-yy777-cim__faq-question {
        padding: 15px 20px;
        font-size: 1em;
      }

      .page-yy777-cim__faq-answer {
        padding: 0 20px;
      }

      .page-yy777-cim__faq-item.active .page-yy777-cim__faq-answer {
        padding: 15px 20px !important;
      }

      /* Image responsiveness */
      .page-yy777-cim img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-yy777-cim__hero-background {
        max-width: 100% !important;
        height: 100% !important; /* Ensure background image covers height */
      }
    }

    /* Ensure text wrapping for long content, especially in lists/cards */
    .page-yy777-cim__promo-description,
    .page-yy777-cim__feature-description,
    .page-yy777-cim__faq-answer p {
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
      word-break: break-word !important;
    }
  