
    /* CSS for pinas77 code page */
    .page-pinas77-code {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    /* Hero Section */
    .page-pinas77-code__hero-section {
      position: relative;
      background: url('[GALLERY:hero:1920x1080:gaming,rewards,code]') no-repeat center center/cover;
      color: #fff;
      text-align: center;
      padding: 10px 20px 80px; /* Adjusted padding-top as per instruction */
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 450px; /* Minimum height for hero section */
      box-sizing: border-box;
    }

    .page-pinas77-code__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

    .page-pinas77-code__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-pinas77-code__main-title {
      font-size: 3.2em;
      margin-bottom: 20px;
      color: #ffe000; /* Gold-like color for emphasis */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-pinas77-code__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-pinas77-code__cta-button {
      background-color: #ff4500; /* Orange-red for CTA */
      color: #fff;
      padding: 15px 30px;
      border: none;
      border-radius: 5px;
      font-size: 1.1em;
      cursor: pointer;
      transition: background-color 0.3s ease;
      text-decoration: none;
      display: inline-block;
    }

    .page-pinas77-code__cta-button:hover {
      background-color: #e03d00;
    }

    /* General Section Styling */
    .page-pinas77-code__redemption-section,
    .page-pinas77-code__benefits-section,
    .page-pinas77-code__faq-section,
    .page-pinas77-code__promo-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      box-sizing: border-box;
    }

    .page-pinas77-code__section-title {
      font-size: 2.5em;
      color: #222;
      text-align: center;
      margin-bottom: 20px;
    }

    .page-pinas77-code__section-subtitle {
      font-size: 1.1em;
      color: #555;
      text-align: center;
      margin-bottom: 40px;
    }

    /* Redemption Steps */
    .page-pinas77-code__steps-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-pinas77-code__step-item {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      text-align: center;
      position: relative;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-pinas77-code__step-number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 60px;
      height: 60px;
      background-color: #ff4500;
      color: #fff;
      border-radius: 50%;
      font-size: 1.8em;
      font-weight: bold;
      margin-bottom: 20px;
      box-shadow: 0 4px 10px rgba(255, 69, 0, 0.4);
    }

    .page-pinas77-code__step-text {
      font-size: 1.5em;
      color: #333;
      margin-bottom: 15px;
    }

    .page-pinas77-code__step-item p {
      color: #666;
      font-size: 1em;
    }

    /* Benefits Grid */
    .page-pinas77-code__benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-pinas77-code__benefit-card {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      text-align: center;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-pinas77-code__card-icon {
      width: 100px;
      height: 100px;
      object-fit: contain;
      margin-bottom: 20px;
      max-width: 100%; /* Responsive image */
      height: auto; /* Responsive image */
    }

    .page-pinas77-code__card-title {
      font-size: 1.4em;
      color: #333;
      margin-bottom: 10px;
    }

    .page-pinas77-code__card-description {
      color: #666;
      font-size: 0.95em;
    }

    /* FAQ Section */
    .page-pinas77-code__faq-container {
      margin-top: 40px;
    }

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

    .page-pinas77-code__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #ff4500; /* Darker background for questions */
      color: #fff;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-pinas77-code__faq-question:hover {
      background-color: #e03d00; /* Slightly darker on hover */
    }

    .page-pinas77-code__faq-title {
      margin: 0;
      font-size: 1.2em;
      color: #fff; /* Ensure title color is white */
      pointer-events: none; /* Prevent h3 from blocking click on parent div */
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word; /* Ensure text wraps */
    }

    .page-pinas77-code__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click on parent div */
    }

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

    .page-pinas77-code__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding */
      background-color: #fefefe;
      color: #555;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      box-sizing: border-box;
    }

    .page-pinas77-code__faq-item.active .page-pinas77-code__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to show content */
      padding: 20px 25px !important; /* Expanded padding */
      opacity: 1;
    }

    .page-pinas77-code__faq-answer p {
      margin: 0;
      padding-bottom: 10px; /* Add some space below paragraphs in answer */
    }

    /* Promo Section */
    .page-pinas77-code__promo-section {
      text-align: center;
      background-color: #f0f0f0;
      border-radius: 10px;
      margin-bottom: 60px;
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto 60px; /* Centered with bottom margin */
      box-sizing: border-box;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-pinas77-code {
        padding-top: var(--header-offset, 80px) !important; /* Adjust for smaller header on mobile */
      }

      .page-pinas77-code__hero-section {
        min-height: 350px;
        padding: 10px 15px 60px;
      }

      .page-pinas77-code__main-title {
        font-size: 2.2em;
      }

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

      .page-pinas77-code__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-pinas77-code__redemption-section,
      .page-pinas77-code__benefits-section,
      .page-pinas77-code__faq-section,
      .page-pinas77-code__promo-section {
        padding: 40px 15px;
      }

      .page-pinas77-code__section-title {
        font-size: 2em;
      }

      .page-pinas77-code__section-subtitle {
        font-size: 1em;
        margin-bottom: 30px;
      }

      .page-pinas77-code__steps-container,
      .page-pinas77-code__benefits-grid {
        grid-template-columns: 1fr; /* Stack items on mobile */
        gap: 20px;
      }

      /* List Item Responsive Requirements for .page-pinas77-code__step-item */
      .page-pinas77-code__step-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 25px 20px; /* Adjusted padding */
      }

      /* List Container Responsive Requirements for .page-pinas77-code__steps-container */
      .page-pinas77-code__steps-container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important; /* Adjust if needed, considering parent padding */
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      /* List Item Responsive Requirements for .page-pinas77-code__benefit-card */
      .page-pinas77-code__benefit-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 25px 20px; /* Adjusted padding */
      }

      /* List Container Responsive Requirements for .page-pinas77-code__benefits-grid */
      .page-pinas77-code__benefits-grid {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important; /* Adjust if needed, considering parent padding */
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      /* Image Responsive Optimization */
      .page-pinas77-code__card-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-pinas77-code__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }

      .page-pinas77-code__faq-title {
        font-size: 1.1em;
      }

      .page-pinas77-code__faq-answer {
        padding: 0 20px;
      }

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

      /* Ensure text wraps for all list items and content */
      .page-pinas77-code__step-item p,
      .page-pinas77-code__benefit-card p,
      .page-pinas77-code__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important; /* For long keywords */
      }
    }
  