
    :root {
      --primary-color: #e63946; /* A vibrant red, common in gaming/casino */
      --secondary-color: #f1faee; /* Light background */
      --accent-color: #a8dadc; /* A calming blue */
      --dark-color: #1d3557; /* Dark blue for text */
      --light-text-color: #f1faee;
      --shadow-color: rgba(0, 0, 0, 0.1);
      --border-radius: 8px;
    }

    .page-yy777-com-ph-login-register-online {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--dark-color);
      background-color: var(--secondary-color);
      padding-bottom: 50px; /* Space for floating buttons */
    }

    /* Fixed navigation bar spacing: assuming body padding-top is handled by shared.css */
    .page-yy777-com-ph-login-register-online__hero-section {
        padding-top: 10px; /* Small decorative top padding */
    }

    .page-yy777-com-ph-login-register-online__section {
      padding: 40px 20px;
      margin: 0 auto;
      max-width: 1200px;
      text-align: center;
    }

    .page-yy777-com-ph-login-register-online__section--dark {
      background-color: var(--dark-color);
      color: var(--light-text-color);
    }

    .page-yy777-com-ph-login-register-online__section--dark .page-yy777-com-ph-login-register-online__heading {
      color: var(--primary-color);
    }

    .page-yy777-com-ph-login-register-online__heading {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: var(--dark-color);
      font-weight: bold;
    }

    .page-yy777-com-ph-login-register-online__subheading {
      font-size: 1.8em;
      margin-bottom: 15px;
      color: var(--primary-color);
    }

    .page-yy777-com-ph-login-register-online__paragraph {
      font-size: 1.1em;
      margin-bottom: 20px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-yy777-com-ph-login-register-online__button-group {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-yy777-com-ph-login-register-online__button {
      background-color: var(--primary-color);
      color: var(--light-text-color);
      padding: 15px 30px;
      border: none;
      border-radius: var(--border-radius);
      font-size: 1.2em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none; /* Ensure no underline for button-like elements */
      display: inline-block;
    }

    .page-yy777-com-ph-login-register-online__button:hover {
      background-color: #cc2b37; /* Slightly darker red */
      transform: translateY(-2px);
    }

    .page-yy777-com-ph-login-register-online__button--secondary {
      background-color: var(--dark-color);
      color: var(--light-text-color);
    }

    .page-yy777-com-ph-login-register-online__button--secondary:hover {
      background-color: #0e1b2d;
    }

    .page-yy777-com-ph-login-register-online__image-container {
      margin-top: 30px;
      border-radius: var(--border-radius);
      overflow: hidden;
      box-shadow: 0 10px 20px var(--shadow-color);
      width: 100%;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-yy777-com-ph-login-register-online__image {
      max-width: 100%;
      height: auto;
      display: block;
      transition: transform 0.3s ease;
    }

    .page-yy777-com-ph-login-register-online__image:hover {
      transform: scale(1.03);
    }

    .page-yy777-com-ph-login-register-online__steps-list {
      list-style: none;
      padding: 0;
      margin: 30px auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      max-width: 1000px;
    }

    .page-yy777-com-ph-login-register-online__step-item {
      background-color: var(--light-text-color);
      padding: 25px;
      border-radius: var(--border-radius);
      box-shadow: 0 5px 15px var(--shadow-color);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive list items */
    }

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

    .page-yy777-com-ph-login-register-online__step-number {
      font-size: 2em;
      color: var(--primary-color);
      font-weight: bold;
      margin-bottom: 10px;
    }

    .page-yy777-com-ph-login-register-online__step-title {
      font-size: 1.4em;
      color: var(--dark-color);
      margin-bottom: 10px;
    }

    .page-yy777-com-ph-login-register-online__game-gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-yy777-com-ph-login-register-online__game-card {
      background-color: var(--light-text-color);
      border-radius: var(--border-radius);
      overflow: hidden;
      box-shadow: 0 5px 15px var(--shadow-color);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      box-sizing: border-box; /* Crucial for responsive list items */
    }

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

    .page-yy777-com-ph-login-register-online__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-yy777-com-ph-login-register-online__game-card-content {
      padding: 15px;
    }

    .page-yy777-com-ph-login-register-online__game-card-title {
      font-size: 1.2em;
      color: var(--dark-color);
      margin-bottom: 10px;
    }

    .page-yy777-com-ph-login-register-online__payment-methods-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
      list-style: none;
      padding: 0;
    }

    .page-yy777-com-ph-login-register-online__payment-method-item {
      background-color: var(--dark-color);
      color: var(--light-text-color);
      padding: 10px 20px;
      border-radius: var(--border-radius);
      font-size: 1.1em;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-yy777-com-ph-login-register-online__promo-banner {
      background-color: var(--primary-color);
      color: var(--light-text-color);
      padding: 30px 20px;
      border-radius: var(--border-radius);
      margin-top: 40px;
      text-align: center;
      box-shadow: 0 5px 15px var(--shadow-color);
    }

    .page-yy777-com-ph-login-register-online__promo-title {
      font-size: 2em;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-yy777-com-ph-login-register-online__promo-text {
      font-size: 1.2em;
      margin-bottom: 20px;
    }

    .page-yy777-com-ph-login-register-online__faq-section {
      text-align: left;
    }

    .page-yy777-com-ph-login-register-online__faq-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-yy777-com-ph-login-register-online__faq-item {
      background-color: var(--light-text-color);
      border-radius: var(--border-radius);
      margin-bottom: 15px;
      box-shadow: 0 2px 8px var(--shadow-color);
      overflow: hidden;
      box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-yy777-com-ph-login-register-online__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: var(--dark-color);
      color: var(--light-text-color);
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

    .page-yy777-com-ph-login-register-online__faq-question:hover {
      background-color: #2a496d;
    }

    .page-yy777-com-ph-login-register-online__faq-question h3 {
      margin: 0;
      font-size: 1.1em; /* Adjusted for FAQ question */
      color: var(--light-text-color);
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-yy777-com-ph-login-register-online__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 10px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
    }

    .page-yy777-com-ph-login-register-online__faq-item.active .page-yy777-com-ph-login-register-online__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
    }

    .page-yy777-com-ph-login-register-online__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: var(--dark-color);
      background-color: var(--secondary-color);
    }

    .page-yy777-com-ph-login-register-online__faq-item.active .page-yy777-com-ph-login-register-online__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 15px !important;
      opacity: 1;
    }

    /* Floating Login/Register Buttons */
    .page-yy777-com-ph-login-register-online__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      width: 90%;
      max-width: 400px;
      justify-content: center;
    }

    .page-yy777-com-ph-login-register-online__floating-button {
      background-color: var(--primary-color);
      color: var(--light-text-color);
      padding: 12px 25px;
      border: none;
      border-radius: 50px; /* Pill shape */
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.2s ease;
      flex-grow: 1;
      text-align: center;
    }

    .page-yy777-com-ph-login-register-online__floating-button:hover {
      background-color: #cc2b37;
      transform: translateY(-2px);
    }

    .page-yy777-com-ph-login-register-online__floating-button--login {
      background-color: var(--dark-color);
    }

    .page-yy777-com-ph-login-register-online__floating-button--login:hover {
      background-color: #0e1b2d;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-yy777-com-ph-login-register-online__heading {
        font-size: 2em;
      }

      .page-yy777-com-ph-login-register-online__subheading {
        font-size: 1.5em;
      }

      .page-yy777-com-ph-login-register-online__paragraph {
        font-size: 1em;
      }

      .page-yy777-com-ph-login-register-online__button-group {
        flex-direction: column;
        gap: 15px;
      }

      .page-yy777-com-ph-login-register-online__button {
        width: 100%;
        padding: 12px 20px;
        font-size: 1.1em;
      }

      .page-yy777-com-ph-login-register-online__steps-list {
        grid-template-columns: 1fr;
        padding: 0 10px;
      }
      .page-yy777-com-ph-login-register-online__step-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px; /* Adjust padding for smaller screens */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-yy777-com-ph-login-register-online__game-gallery {
        grid-template-columns: 1fr;
        padding: 0 10px;
      }
      .page-yy777-com-ph-login-register-online__game-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-yy777-com-ph-login-register-online__payment-methods-list {
        padding: 0 10px;
      }
      .page-yy777-com-ph-login-register-online__payment-method-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-yy777-com-ph-login-register-online__promo-title {
        font-size: 1.5em;
      }

      .page-yy777-com-ph-login-register-online__promo-text {
        font-size: 1em;
      }

      .page-yy777-com-ph-login-register-online__faq-question {
        font-size: 1em;
        padding: 12px 15px;
      }
      .page-yy777-com-ph-login-register-online__faq-question h3 {
        font-size: 1em;
      }
      .page-yy777-com-ph-login-register-online__faq-answer {
        padding: 15px 15px !important; /* Adjust padding for mobile */
      }
      .page-yy777-com-ph-login-register-online__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-yy777-com-ph-login-register-online__floating-buttons {
        width: 95%;
        gap: 10px;
      }
      .page-yy777-com-ph-login-register-online__floating-button {
        font-size: 1em;
        padding: 10px 20px;
      }
    }
  