
    :root {
      --primary-color: #ffcc00; /* Gold/Yellow for vibrant gaming */
      --secondary-color: #333333; /* Dark grey for text */
      --background-color: #1a1a1a; /* Dark background */
      --card-background: #2a2a2a; /* Slightly lighter dark for cards */
      --text-light: #ffffff;
      --text-dark: #333333;
      --button-hover: #e6b800;
      --border-radius-small: 8px;
      --border-radius-large: 15px;
      --spacing-unit: 1rem;
    }

    .page-yy777-index-login-register {
      font-family: 'Arial', sans-serif;
      background-color: var(--background-color);
      color: var(--text-light);
      line-height: 1.6;
      overflow-x: hidden;
      padding-top: 10px; /* Small top padding, body handles header offset */
    }

    .page-yy777-index-login-register__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: var(--spacing-unit);
    }

    /* Hero Section */
    .page-yy777-index-login-register__hero-section {
      position: relative;
      text-align: center;
      padding: 60px 20px;
      background-size: cover;
      background-position: center;
      border-radius: var(--border-radius-large);
      margin-bottom: 2rem;
      overflow: hidden;
    }

    .page-yy777-index-login-register__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      border-radius: var(--border-radius-large);
    }

    .page-yy777-index-login-register__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
      background: rgba(0, 0, 0, 0.6);
      padding: 30px;
      border-radius: var(--border-radius-large);
    }

    .page-yy777-index-login-register__hero-title {
      font-size: 2.8rem;
      color: var(--primary-color);
      margin-bottom: 1rem;
      line-height: 1.2;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-yy777-index-login-register__hero-subtitle {
      font-size: 1.5rem;
      color: var(--text-light);
      margin-bottom: 2rem;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    .page-yy777-index-login-register__cta-button {
      display: inline-block;
      background-color: var(--primary-color);
      color: var(--background-color);
      padding: 15px 30px;
      border-radius: var(--border-radius-small);
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1rem;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-yy777-index-login-register__cta-button:hover {
      background-color: var(--button-hover);
      transform: translateY(-2px);
    }

    /* Floating Buttons */
    .page-yy777-index-login-register__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
    }

    .page-yy777-index-login-register__floating-button {
      background-color: var(--primary-color);
      color: var(--background-color);
      padding: 12px 25px;
      border-radius: 50px;
      font-weight: bold;
      font-size: 1rem;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-yy777-index-login-register__floating-button:hover {
      background-color: var(--button-hover);
      transform: translateY(-2px);
    }

    /* Section Styling */
    .page-yy777-index-login-register__section {
      padding: 40px 20px;
      margin-bottom: 2rem;
      background-color: var(--card-background);
      border-radius: var(--border-radius-large);
    }

    .page-yy777-index-login-register__section-title {
      text-align: center;
      font-size: 2.2rem;
      color: var(--primary-color);
      margin-bottom: 2rem;
      position: relative;
    }

    .page-yy777-index-login-register__section-title::after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background-color: var(--primary-color);
      margin: 10px auto 0;
      border-radius: 2px;
    }

    /* Game Categories / Product Display */
    .page-yy777-index-login-register__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 2rem;
    }

    .page-yy777-index-login-register__game-card {
      background-color: var(--background-color);
      border-radius: var(--border-radius-large);
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .page-yy777-index-login-register__game-card:hover {
      transform: translateY(-5px);
    }

    .page-yy777-index-login-register__game-image-wrapper {
      width: 100%;
      height: 200px;
      overflow: hidden;
    }

    .page-yy777-index-login-register__game-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .page-yy777-index-login-register__game-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-yy777-index-login-register__game-title {
      font-size: 1.4rem;
      color: var(--primary-color);
      margin-bottom: 10px;
      word-wrap: break-word;
    }

    .page-yy777-index-login-register__game-description {
      font-size: 0.95rem;
      color: var(--text-light);
      margin-bottom: 15px;
      flex-grow: 1;
    }

    /* Promotions Section */
    .page-yy777-index-login-register__promo-card {
      background-color: var(--background-color);
      border-radius: var(--border-radius-large);
      padding: 30px;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-yy777-index-login-register__promo-title {
      font-size: 1.8rem;
      color: var(--primary-color);
      margin-bottom: 15px;
    }

    .page-yy777-index-login-register__promo-description {
      font-size: 1.1rem;
      color: var(--text-light);
      margin-bottom: 25px;
    }

    .page-yy777-index-login-register__promo-link {
      display: inline-block;
      background-color: #007bff; /* A distinct blue for external link */
      color: var(--text-light);
      padding: 12px 25px;
      border-radius: var(--border-radius-small);
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-yy777-index-login-register__promo-link:hover {
      background-color: #0056b3;
    }

    /* Payment Methods & Game Providers */
    .page-yy777-index-login-register__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 2rem;
      justify-items: center;
      align-items: center;
    }

    .page-yy777-index-login-register__logo-item {
      background-color: var(--background-color);
      padding: 15px;
      border-radius: var(--border-radius-small);
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      width: 100%;
      height: 100px; /* Fixed height for logos */
      display: flex;
      justify-content: center;
      align-items: center;
      box-sizing: border-box;
    }

    .page-yy777-index-login-register__logo-image {
      max-width: 100%;
      max-height: 70px; /* Adjust max-height to fit within item */
      height: auto;
      object-fit: contain;
    }

    /* FAQ Section */
    .page-yy777-index-login-register__faq-list {
      margin-top: 2rem;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-yy777-index-login-register__faq-item {
      background-color: var(--background-color);
      border-radius: var(--border-radius-small);
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-yy777-index-login-register__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: var(--card-background);
      cursor: pointer;
      user-select: none;
      border-bottom: 1px solid var(--background-color);
    }

    .page-yy777-index-login-register__faq-question:hover {
      background-color: #3a3a3a;
    }

    .page-yy777-index-login-register__faq-question h3 {
      margin: 0;
      font-size: 1.1rem;
      color: var(--primary-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-yy777-index-login-register__faq-toggle {
      font-size: 1.5rem;
      font-weight: bold;
      color: var(--primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-yy777-index-login-register__faq-item.active .page-yy777-index-login-register__faq-toggle {
      transform: rotate(45deg);
    }

    .page-yy777-index-login-register__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: var(--text-light);
      font-size: 0.95rem;
    }

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

    /* General text styling */
    .page-yy777-index-login-register p {
      margin-bottom: 1rem;
    }

    .page-yy777-index-login-register strong {
      color: var(--primary-color);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-yy777-index-login-register__hero-title {
        font-size: 2rem;
      }

      .page-yy777-index-login-register__hero-subtitle {
        font-size: 1.2rem;
      }

      .page-yy777-index-login-register__section-title {
        font-size: 1.8rem;
      }

      .page-yy777-index-login-register__game-grid {
        grid-template-columns: 1fr;
      }

      .page-yy777-index-login-register__logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }

      .page-yy777-index-login-register__floating-buttons {
        bottom: 15px;
        gap: 10px;
      }

      .page-yy777-index-login-register__floating-button {
        padding: 10px 20px;
        font-size: 0.9rem;
      }

      /* List Item Responsive for Logos */
      .page-yy777-index-login-register__logo-grid .page-yy777-index-login-register__logo-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 10px !important; /* Adjusted padding */
      }

      .page-yy777-index-login-register__logo-grid {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-yy777-index-login-register__faq-answer {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
        padding: 15px !important;
      }

      .page-yy777-index-login-register__faq-item.active .page-yy777-index-login-register__faq-answer {
        padding: 15px !important;
      }

      .page-yy777-index-login-register__faq-question {
        padding: 15px !important;
      }

      .page-yy777-index-login-register__faq-question h3 {
        font-size: 1rem;
      }
    }

    @media (max-width: 480px) {
      .page-yy777-index-login-register__hero-title {
        font-size: 1.8rem;
      }

      .page-yy777-index-login-register__hero-subtitle {
        font-size: 1rem;
      }

      .page-yy777-index-login-register__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
      }

      .page-yy777-index-login-register__section-title {
        font-size: 1.6rem;
      }

      .page-yy777-index-login-register__logo-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
  