.page-uujl-promo-code {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0;
      background-color: #1a1a2e; /* Dark background for a gaming site */
      line-height: 1.6;
      overflow-x: hidden;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    .page-uujl-promo-code__hero-section {
      position: relative;
      width: 100%;
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 20px;
      box-sizing: border-box;
      overflow: hidden;
    }

    .page-uujl-promo-code__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)); /* Overlay for text readability */
    }

    .page-uujl-promo-code__hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.4;
    }

    .page-uujl-promo-code__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.5);
      border-radius: 10px;
    }

    .page-uujl-promo-code__main-heading {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #ffffff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      line-height: 1.2;
    }

    .page-uujl-promo-code__highlight {
      color: #ffcc00; /* Gold-like color for emphasis */
    }

    .page-uujl-promo-code__sub-heading {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-uujl-promo-code__button {
      display: inline-block;
      background-color: #007bff; /* Blue for primary action */
      color: #ffffff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-uujl-promo-code__button:hover {
      background-color: #0056b3;
      transform: translateY(-3px);
    }

    .page-uujl-promo-code__section-title {
      font-size: 2.2em;
      color: #ffcc00;
      text-align: center;
      margin: 60px 0 40px;
      padding: 0 15px;
    }

    /* How-To Section */
    .page-uujl-promo-code__how-to-section {
      padding: 40px 20px;
      background-color: #16213e;
      text-align: center;
    }

    .page-uujl-promo-code__steps-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 25px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-uujl-promo-code__step-card {
      background-color: #0f3460;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      flex: 1;
      min-width: 280px;
      max-width: 300px;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: transform 0.3s ease;
    }

    .page-uujl-promo-code__step-card:hover {
      transform: translateY(-5px);
    }

    .page-uujl-promo-code__step-icon {
      width: 100px;
      height: auto;
      margin-bottom: 20px;
      max-width: 100%;
      border-radius: 5px; /* Ensure images are not tiny icons */
    }

    .page-uujl-promo-code__step-title {
      font-size: 1.5em;
      color: #ffffff;
      margin-bottom: 15px;
    }

    .page-uujl-promo-code__step-description {
      color: #e0e0e0;
      margin-bottom: 20px;
      flex-grow: 1;
    }

    .page-uujl-promo-code__step-button {
      display: inline-block;
      background-color: #ffcc00;
      color: #1a1a2e;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      margin-top: auto; /* Pushes button to the bottom */
    }

    .page-uujl-promo-code__step-button:hover {
      background-color: #e6b800;
    }

    /* Features Section */
    .page-uujl-promo-code__features-section {
      padding: 40px 20px;
      background-color: #1a1a2e;
      text-align: center;
    }

    .page-uujl-promo-code__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-uujl-promo-code__feature-item {
      background-color: #0f3460;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-uujl-promo-code__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-uujl-promo-code__feature-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 20px;
      max-width: 100%;
    }

    .page-uujl-promo-code__feature-title {
      font-size: 1.4em;
      color: #ffffff;
      margin-bottom: 10px;
    }

    .page-uujl-promo-code__feature-description {
      color: #e0e0e0;
    }

    /* FAQ Section */
    .page-uujl-promo-code__faq-section {
      padding: 40px 20px;
      background-color: #16213e;
    }

    .page-uujl-promo-code__faq-list {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-uujl-promo-code__faq-item {
      background-color: #0f3460;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-uujl-promo-code__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      cursor: pointer;
      background-color: #1a1a2e;
      border-bottom: 1px solid #0f3460;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-uujl-promo-code__faq-question:hover {
      background-color: #2a2a4a;
    }

    .page-uujl-promo-code__faq-question-text {
      font-size: 1.1em;
      color: #ffffff;
      margin: 0;
      pointer-events: none; /* Prevent text from blocking click event */
      flex-grow: 1;
    }

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

    .page-uujl-promo-code__faq-item.active .page-uujl-promo-code__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' or similar visual cue */
    }

    .page-uujl-promo-code__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #e0e0e0;
    }

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

    .page-uujl-promo-code__faq-answer p {
      margin: 0;
    }

    /* CTA Section */
    .page-uujl-promo-code__cta-section {
      padding: 60px 20px;
      background-color: #0f3460;
      text-align: center;
    }

    .page-uujl-promo-code__cta-description {
      font-size: 1.3em;
      color: #e0e0e0;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-uujl-promo-code__button--large {
      padding: 18px 40px;
      font-size: 1.2em;
      background-color: #ffcc00;
      color: #1a1a2e;
    }

    .page-uujl-promo-code__button--large:hover {
      background-color: #e6b800;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-uujl-promo-code__main-heading {
        font-size: 2em;
      }

      .page-uujl-promo-code__sub-heading {
        font-size: 1em;
      }

      .page-uujl-promo-code__button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-uujl-promo-code__section-title {
        font-size: 1.8em;
        margin: 40px 0 30px;
      }

      .page-uujl-promo-code__steps-container,
      .page-uujl-promo-code__features-grid {
        flex-direction: column;
        gap: 20px;
      }

      .page-uujl-promo-code__step-card,
      .page-uujl-promo-code__feature-item {
        max-width: 100%;
        width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px;
      }

      .page-uujl-promo-code__feature-image {
        height: 180px; /* Adjust height for smaller screens */
      }

      .page-uujl-promo-code__faq-question {
        padding: 15px;
      }

      .page-uujl-promo-code__faq-question-text {
        font-size: 1em;
      }

      .page-uujl-promo-code__faq-toggle {
        font-size: 1.2em;
      }

      .page-uujl-promo-code__faq-answer {
        padding: 0 15px;
      }

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

      .page-uujl-promo-code__cta-description {
        font-size: 1.1em;
      }

      .page-uujl-promo-code__button--large {
        padding: 15px 30px;
        font-size: 1.1em;
      }
      
      /* Ensure all list-like items (steps, features) are 100% width and handle text wrapping */
      .page-uujl-promo-code__steps-container,
      .page-uujl-promo-code__features-grid,
      .page-uujl-promo-code__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-uujl-promo-code__step-description,
      .page-uujl-promo-code__feature-description,
      .page-uujl-promo-code__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-uujl-promo-code__hero-content {
        padding: 15px;
      }
      .page-uujl-promo-code__main-heading {
        font-size: 1.8em;
      }
      .page-uujl-promo-code__sub-heading {
        font-size: 0.9em;
      }
      .page-uujl-promo-code__button {
        padding: 10px 20px;
        font-size: 0.9em;
      }
      .page-uujl-promo-code__section-title {
        font-size: 1.6em;
      }
      .page-uujl-promo-code__step-card {
        padding: 20px;
      }
      .page-uujl-promo-code__feature-item {
        padding: 20px;
      }
      .page-uujl-promo-code__faq-question {
        padding: 12px;
      }
      .page-uujl-promo-code__faq-question-text {
        font-size: 0.9em;
      }
      .page-uujl-promo-code__faq-toggle {
        font-size: 1em;
      }
      .page-uujl-promo-code__faq-answer {
        padding: 0 12px;
      }
      .page-uujl-promo-code__faq-item.active .page-uujl-promo-code__faq-answer {
        padding: 12px !important;
      }
      .page-uujl-promo-code__cta-description {
        font-size: 1em;
      }
      .page-uujl-promo-code__button--large {
        padding: 12px 25px;
        font-size: 1em;
      }
    }