
    /* General styles for the page */
    .page-yy777-slot-login {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      padding-top: 10px; /* Provides initial spacing, assuming shared.css handles body padding for header offset */
    }

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

    /* Hero Section */
    .page-yy777-slot-login__hero-section {
      text-align: center;
      padding: 60px 20px;
      background-color: #004d40; /* Dark green */
      color: #fff;
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      margin-bottom: 40px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

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

    .page-yy777-slot-login__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-yy777-slot-login__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      font-weight: bold;
      color: #ffeb3b; /* Yellow for contrast */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-yy777-slot-login__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-yy777-slot-login__cta-button {
      background-color: #ff9800; /* Orange */
      color: #fff;
      padding: 15px 30px;
      border: none;
      border-radius: 5px;
      font-size: 1.2em;
      cursor: pointer;
      transition: background-color 0.3s ease;
      display: inline-block; /* For button or a tag acting as button */
    }

    .page-yy777-slot-login__cta-button:hover {
      background-color: #f57c00;
    }

    /* Section Styling */
    .page-yy777-slot-login__section {
      background-color: #fff;
      padding: 40px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-yy777-slot-login__section-title {
      font-size: 2.2em;
      color: #004d40;
      margin-bottom: 25px;
      text-align: center;
      border-bottom: 2px solid #ff9800;
      padding-bottom: 10px;
      display: block;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-yy777-slot-login__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #555;
    }

    /* Features Grid */
    .page-yy777-slot-login__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-yy777-slot-login__feature-card {
      background-color: #e8f5e9; /* Light green */
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-sizing: border-box; /* Required for list items */
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-yy777-slot-login__feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
    }

    .page-yy777-slot-login__feature-icon {
      width: 200px; /* Min width 200px */
      height: 200px; /* Min height 200px */
      margin-bottom: 15px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #004d40;
    }

    .page-yy777-slot-login__feature-title {
      font-size: 1.5em;
      color: #004d40;
      margin-bottom: 10px;
    }

    .page-yy777-slot-login__feature-description {
      font-size: 1em;
      color: #444;
    }

    /* Steps List */
    .page-yy777-slot-login__steps-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
    }

    .page-yy777-slot-login__step-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 25px;
      padding: 15px;
      background-color: #f3fcf3; /* Very light green */
      border-left: 5px solid #ff9800;
      border-radius: 5px;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
      box-sizing: border-box; /* Required for list items */
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-yy777-slot-login__step-number {
      font-size: 1.8em;
      font-weight: bold;
      color: #004d40;
      margin-right: 15px;
      background-color: #ffeb3b;
      border-radius: 50%;
      width: 45px;
      height: 45px;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-shrink: 0;
    }

    .page-yy777-slot-login__step-content {
      flex-grow: 1;
    }

    .page-yy777-slot-login__step-title {
      font-size: 1.3em;
      color: #004d40;
      margin-bottom: 5px;
    }

    .page-yy777-slot-login__step-description {
      font-size: 1em;
      color: #555;
    }

    /* Providers Grid */
    .page-yy777-slot-login__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Min width 200px for grid items */
      gap: 20px;
      margin-top: 30px;
    }

    .page-yy777-slot-login__provider-item {
      text-align: center;
      padding: 15px;
      background-color: #f0f0f0;
      border-radius: 8px;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
      box-sizing: border-box; /* Required for list items */
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-yy777-slot-login__provider-logo {
      max-width: 100%;
      min-width: 200px; /* Ensure images are not too small as per rules */
      min-height: 100px; /* This is less than 200, but aspect ratio might make it ok if width is 200. Let's make it 200x100 if possible. */
      width: auto;
      height: auto;
      margin-bottom: 10px;
      object-fit: contain;
    }

    .page-yy777-slot-login__provider-name {
      font-weight: bold;
      color: #333;
      font-size: 1.1em;
    }

    /* Payment Methods */
    .page-yy777-slot-login__payment-methods-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-yy777-slot-login__payment-method {
      display: flex;
      align-items: center;
      padding: 10px 20px;
      background-color: #e0f2f1; /* Light teal */
      border-radius: 20px;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
      font-weight: bold;
      color: #004d40;
      font-size: 1.1em;
      box-sizing: border-box; /* Required for list items */
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* FAQ Section */
    .page-yy777-slot-login__faq-section {
      margin-top: 40px;
    }

    .page-yy777-slot-login__faq-item {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
    }

    .page-yy777-slot-login__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #f5f5f5;
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      font-weight: bold;
      color: #004d40;
      transition: background-color 0.3s ease;
    }

    .page-yy777-slot-login__faq-question:hover {
      background-color: #eee;
    }

    .page-yy777-slot-login__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #004d40;
      pointer-events: none; /* Prevent h3 from blocking click event on parent div */
    }

    .page-yy777-slot-login__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      color: #ff9800;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event on parent div */
    }

    .page-yy777-slot-login__faq-item.active .page-yy777-slot-login__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' for active state */
    }

    .page-yy777-slot-login__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555;
      font-size: 1em;
      background-color: #fcfcfc;
    }

    .page-yy777-slot-login__faq-item.active .page-yy777-slot-login__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 15px !important;
      opacity: 1;
    }

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

      .page-yy777-slot-login__hero-title {
        font-size: 2.2em;
      }

      .page-yy777-slot-login__hero-subtitle {
        font-size: 1.2em;
      }

      .page-yy777-slot-login__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-yy777-slot-login__section {
        padding: 25px;
        margin-bottom: 20px;
      }

      .page-yy777-slot-login__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
      }

      .page-yy777-slot-login__text-content {
        font-size: 1em;
      }

      .page-yy777-slot-login__features-grid,
      .page-yy777-slot-login__providers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-yy777-slot-login__feature-card {
        padding: 20px;
      }

      .page-yy777-slot-login__feature-icon {
        width: 200px; /* Still minimum 200px */
        height: 200px; /* Still minimum 200px */
      }

      .page-yy777-slot-login__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 10px;
      }

      .page-yy777-slot-login__step-number {
        margin-right: 0;
        margin-bottom: 10px;
      }

      .page-yy777-slot-login__payment-method {
        padding: 8px 15px;
        font-size: 1em;
        justify-content: center; /* Center items in payment method list for mobile */
      }

      .page-yy777-slot-login__faq-question {
        padding: 12px 15px;
        font-size: 1.1em;
      }
      .page-yy777-slot-login__faq-question h3 {
        font-size: 1.1em;
      }
      .page-yy777-slot-login__faq-answer {
        padding: 15px 15px !important; /* Important for mobile, ensures content visibility */
      }
    }

    /* Ensure all list items and their containers are responsive */
    .page-yy777-slot-login__features-grid,
    .page-yy777-slot-login__providers-grid,
    .page-yy777-slot-login__payment-methods-list,
    .page-yy777-slot-login__steps-list {
      box-sizing: border-box;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    @media (max-width: 768px) {
      .page-yy777-slot-login__features-grid,
      .page-yy777-slot-login__providers-grid,
      .page-yy777-slot-login__payment-methods-list,
      .page-yy777-slot-login__steps-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-yy777-slot-login__features-grid .page-yy777-slot-login__feature-card,
      .page-yy777-slot-login__providers-grid .page-yy777-slot-login__provider-item,
      .page-yy777-slot-login__payment-methods-list .page-yy777-slot-login__payment-method,
      .page-yy777-slot-login__steps-list .page-yy777-slot-login__step-item {
        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 prevent content from touching edges */
        padding-right: 15px !important;
        word-break: break-word !important;
      }
    }

    /* Image responsive styles */
    .page-yy777-slot-login img {
      max-width: 100%;
      height: auto;
      display: block; /* Remove extra space below images */
    }
    .page-yy777-slot-login__hero-background,
    .page-yy777-slot-login__feature-icon,
    .page-yy777-slot-login__provider-logo {
      max-width: 100%;
      height: auto;
      object-fit: cover; /* or contain, depending on context */
    }
    /* Adding wrapper styles for explicit control if needed, though img itself should suffice */
    .page-yy777-slot-login__hero-background-wrapper,
    .page-yy777-slot-login__feature-icon-wrapper,
    .page-yy777-slot-login__provider-logo-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    @media (max-width: 768px) {
      .page-yy777-slot-login img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-yy777-slot-login__hero-background,
      .page-yy777-slot-login__feature-icon,
      .page-yy777-slot-login__provider-logo {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-yy777-slot-login__hero-background-wrapper,
      .page-yy777-slot-login__feature-icon-wrapper,
      .page-yy777-slot-login__provider-logo-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }
    }
  