
    /* Page-specific CSS styles for yy777 com login register */
    .page-yy777-com-login-register {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f4f7f6;
      padding-bottom: 40px; /* Ensure space above footer */
    }

    .page-yy777-com-login-register__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Hero Section */
    .page-yy777-com-login-register__hero-section {
      position: relative;
      background-color: #0d1a26; /* Dark background for casino feel */
      color: #fff;
      padding: 10px 0 60px 0; /* 10px top padding, assuming body padding handles header offset */
      text-align: center;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 450px; /* Minimum height for hero */
    }

    .page-yy777-com-login-register__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3; /* Subtle background */
      z-index: 1;
    }

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

    .page-yy777-com-login-register__hero-title {
      font-size: 3.2em;
      margin-bottom: 20px;
      color: #ffcc00; /* Gold accent */
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .page-yy777-com-login-register__hero-subtitle {
      font-size: 1.4em;
      margin-bottom: 30px;
      color: #eee;
    }

    .page-yy777-com-login-register__hero-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
    }

    .page-yy777-com-login-register__button {
      display: inline-block;
      padding: 15px 30px;
      background-color: #ffcc00;
      color: #0d1a26;
      text-decoration: none;
      border-radius: 8px;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }

    .page-yy777-com-login-register__button:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    .page-yy777-com-login-register__button--secondary {
      background-color: #007bff; /* A contrasting color */
      color: #fff;
    }

    .page-yy777-com-login-register__button--secondary:hover {
      background-color: #0056b3;
    }

    /* Section Styling */
    .page-yy777-com-login-register__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-yy777-com-login-register__section--dark {
      background-color: #222;
      color: #fff;
    }

    .page-yy777-com-login-register__section-title {
      font-size: 2.5em;
      margin-bottom: 40px;
      color: #0d1a26;
    }

    .page-yy777-com-login-register__section--dark .page-yy777-com-login-register__section-title {
      color: #ffcc00;
    }

    .page-yy777-com-login-register__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-yy777-com-login-register__card {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      color: #333;
    }

    .page-yy777-com-login-register__section--dark .page-yy777-com-login-register__card {
      background-color: #333;
      color: #eee;
    }

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

    .page-yy777-com-login-register__card-icon {
      width: 200px; /* Minimum size 200x200px */
      height: 200px; /* Minimum size 200x200px */
      object-fit: contain;
      margin-bottom: 20px;
      max-width: 100%;
      height: auto;
    }
    
    .page-yy777-com-login-register__card-title {
      font-size: 1.6em;
      margin-bottom: 15px;
      color: #0d1a26;
    }

    .page-yy777-com-login-register__section--dark .page-yy777-com-login-register__card-title {
      color: #ffcc00;
    }

    .page-yy777-com-login-register__step-list {
      list-style: none;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-top: 40px;
      text-align: left;
    }

    .page-yy777-com-login-register__step-item {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      background-color: #fff;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.08);
      box-sizing: border-box; /* Required for list items */
    }

    .page-yy777-com-login-register__step-number {
      font-size: 2em;
      font-weight: bold;
      color: #ffcc00;
      background-color: #0d1a26;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .page-yy777-com-login-register__step-content h3 {
      font-size: 1.4em;
      margin-top: 0;
      margin-bottom: 10px;
      color: #0d1a26;
    }

    .page-yy777-com-login-register__step-content p {
      margin-bottom: 0;
    }

    /* Payment and Provider Logos */
    .page-yy777-com-login-register__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
      align-items: center;
      justify-items: center;
    }

    .page-yy777-com-login-register__logo-item img {
      width: 200px; /* Ensure min 200px width */
      height: 100px; /* Adjust height for aspect ratio, but maintain min width */
      object-fit: contain;
      filter: grayscale(80%);
      transition: filter 0.3s ease;
      max-width: 100%;
      height: auto;
    }

    .page-yy777-com-login-register__logo-item img:hover {
      filter: grayscale(0%);
    }

    /* FAQ Section */
    .page-yy777-com-login-register__faq-section {
      padding: 60px 0;
      background-color: #eef3f2;
    }

    .page-yy777-com-login-register__faq-list {
      max-width: 800px;
      margin: 40px auto 0 auto;
      text-align: left;
      list-style: none; /* Remove default list styling */
      padding: 0; /* Remove default padding */
    }

    .page-yy777-com-login-register__faq-item {
      background-color: #fff;
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      overflow: hidden;
      box-sizing: border-box; /* Required for list items */
    }

    .page-yy777-com-login-register__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      font-size: 1.2em;
      font-weight: bold;
      color: #0d1a26;
      cursor: pointer;
      background-color: #fcfcfc;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-yy777-com-login-register__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-yy777-com-login-register__faq-question h3 {
      margin: 0;
      font-size: 1.2em; /* Ensure consistent font size */
      color: #0d1a26;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-yy777-com-login-register__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      color: #ffcc00;
      pointer-events: none; /* Prevent toggle from blocking click */
      transition: transform 0.3s ease;
    }

    .page-yy777-com-login-register__faq-item.active .page-yy777-com-login-register__faq-toggle {
      transform: rotate(45deg); /* Rotate '+' to 'x' or '-' */
    }

    .page-yy777-com-login-register__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* 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;
      color: #555;
    }

    .page-yy777-com-login-register__faq-item.active .page-yy777-com-login-register__faq-answer {
      max-height: 2000px !important; /* Sufficiently large value */
      padding: 20px 25px !important; /* Expanded padding */
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .page-yy777-com-login-register__hero-title {
        font-size: 2.8em;
      }
      .page-yy777-com-login-register__hero-subtitle {
        font-size: 1.2em;
      }
      .page-yy777-com-login-register__section-title {
        font-size: 2em;
      }
      .page-yy777-com-login-register__card-title {
        font-size: 1.4em;
      }
    }

    @media (max-width: 768px) {
      .page-yy777-com-login-register__hero-title {
        font-size: 2.2em;
      }
      .page-yy777-com-login-register__hero-subtitle {
        font-size: 1em;
      }
      .page-yy777-com-login-register__hero-buttons {
        flex-direction: column;
        gap: 15px;
      }
      .page-yy777-com-login-register__button {
        width: 80%;
        margin: 0 auto;
      }
      .page-yy777-com-login-register__section {
        padding: 40px 0;
      }
      .page-yy777-com-login-register__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }
      .page-yy777-com-login-register__grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-yy777-com-login-register__card {
        padding: 20px;
      }
      .page-yy777-com-login-register__card-icon {
        width: 200px !important; /* Ensure min 200x200px on mobile */
        height: auto !important;
      }
      .page-yy777-com-login-register__step-list {
        gap: 15px;
      }
      .page-yy777-com-login-register__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px;
        box-sizing: border-box !important; /* List item responsive */
        width: 100% !important; /* List item responsive */
        max-width: 100% !important; /* List item responsive */
        margin-left: 0 !important; /* List item responsive */
        margin-right: 0 !important; /* List item responsive */
        word-wrap: break-word !important; /* Text wrapping */
        overflow-wrap: break-word !important; /* Text wrapping */
        word-break: break-word !important; /* Text wrapping for long keywords */
      }
      .page-yy777-com-login-register__step-number {
        margin-bottom: 10px;
      }
      .page-yy777-com-login-register__step-content h3 {
        font-size: 1.2em;
      }
      .page-yy777-com-login-register__logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
      }
      .page-yy777-com-login-register__logo-item img {
        width: 200px !important; /* Ensure min 200px width on mobile */
        height: auto !important;
        max-width: 100% !important; /* Image responsive */
      }
      .page-yy777-com-login-register__faq-list {
        padding: 0 10px; /* Adjust padding for mobile list container */
        width: 100% !important; /* List container responsive */
        max-width: 100% !important; /* List container responsive */
        margin-left: 0 !important; /* List container responsive */
        margin-right: 0 !important; /* List container responsive */
        box-sizing: border-box !important; /* List container responsive */
      }
      .page-yy777-com-login-register__faq-item {
        padding: 0; /* Adjust padding for mobile list item, content has its own padding */
        box-sizing: border-box !important; /* List item responsive */
        width: 100% !important; /* List item responsive */
        max-width: 100% !important; /* List item responsive */
        margin-left: 0 !important; /* List item responsive */
        margin-right: 0 !important; /* List item responsive */
        word-wrap: break-word !important; /* Text wrapping */
        overflow-wrap: break-word !important; /* Text wrapping */
        word-break: break-word !important; /* Text wrapping for long keywords */
      }
      .page-yy777-com-login-register__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }
      .page-yy777-com-login-register__faq-question h3 {
        font-size: 1.1em;
      }
      .page-yy777-com-login-register__faq-answer {
        padding: 15px 20px !important; /* Ensure mobile padding is also adjusted for active state */
      }
      .page-yy777-com-login-register__container {
        padding: 0 15px;
      }
    }

    @media (max-width: 480px) {
      .page-yy777-com-login-register__hero-title {
        font-size: 1.8em;
      }
      .page-yy777-com-login-register__hero-subtitle {
        font-size: 0.9em;
      }
      .page-yy777-com-login-register__button {
        padding: 12px 25px;
        font-size: 1em;
        width: 90%;
      }
      .page-yy777-com-login-register__section-title {
        font-size: 1.5em;
      }
      .page-yy777-com-login-register__card-icon {
        width: 200px !important; /* Ensure min 200x200px */
        height: auto !important;
      }
      .page-yy777-com-login-register__logo-item img {
        width: 200px !important; /* Min 200px as per requirement */
        height: auto !important;
      }
    }

    /* General image sizing for min 200x200px and responsiveness */
    .page-yy777-com-login-register img {
      max-width: 100% !important;
      height: auto !important;
      object-fit: cover; /* Use cover for general images to fill space */
    }

    /* Override for specific sections where object-fit: contain might be better */
    .page-yy777-com-login-register__card-icon,
    .page-yy777-com-login-register__logo-item img {
        object-fit: contain; /* For icons/logos, contain is usually better */
    }
  