
    :root {
      --page-yy777-net-primary-color: #FFD700; /* Gold */
      --page-yy777-net-secondary-color: #000000; /* Black */
      --page-yy777-net-accent-color: #FF4500; /* OrangeRed */
      --page-yy777-net-text-light: #FFFFFF;
      --page-yy777-net-text-dark: #333333;
      --page-yy777-net-bg-dark: #1a1a1a;
      --page-yy777-net-bg-light: #f0f0f0;
    }

    .page-yy777-net {
      font-family: 'Arial', sans-serif;
      color: var(--page-yy777-net-text-light);
      background-color: var(--page-yy777-net-bg-dark);
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating buttons */
    }

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

    .page-yy777-net__section--light {
      background-color: var(--page-yy777-net-bg-dark);
      color: var(--page-yy777-net-text-light);
    }

    .page-yy777-net__section--dark {
      background-color: var(--page-yy777-net-bg-dark);
      color: var(--page-yy777-net-text-light);
    }

    .page-yy777-net__hero-section {
      position: relative;
      text-align: center;
      padding: 10px 0 60px 0; /* Small top padding, assuming body handles header offset */
      background-color: var(--page-yy777-net-bg-dark);
      overflow: hidden;
      color: var(--page-yy777-net-text-light);
    }

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

    .page-yy777-net__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-yy777-net__hero-title {
      font-size: 2.8em;
      color: var(--page-yy777-net-primary-color);
      margin-bottom: 15px;
      line-height: 1.2;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-yy777-net__hero-subtitle {
      font-size: 1.3em;
      color: var(--page-yy777-net-text-light);
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-yy777-net__button {
      display: inline-block;
      background-color: var(--page-yy777-net-accent-color);
      color: var(--page-yy777-net-text-light);
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-yy777-net__button:hover {
      background-color: #e03c00;
      transform: translateY(-2px);
    }

    .page-yy777-net__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: center;
      padding: 10px 0;
      background-color: rgba(0, 0, 0, 0.8);
      z-index: 1000;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    }

    .page-yy777-net__floating-button {
      flex: 1;
      margin: 0 5px;
      padding: 12px 10px;
      text-align: center;
      border-radius: 5px;
      font-weight: bold;
      font-size: 1em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      max-width: 150px;
    }

    .page-yy777-net__floating-button--register {
      background-color: var(--page-yy777-net-primary-color);
      color: var(--page-yy777-net-secondary-color);
    }

    .page-yy777-net__floating-button--register:hover {
      background-color: #e6c200;
    }

    .page-yy777-net__floating-button--login {
      background-color: var(--page-yy777-net-accent-color);
      color: var(--page-yy777-net-text-light);
    }

    .page-yy777-net__floating-button--login:hover {
      background-color: #e03c00;
    }

    .page-yy777-net__heading {
      font-size: 2.2em;
      color: var(--page-yy777-net-primary-color);
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-yy777-net__heading::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--page-yy777-net-accent-color);
      border-radius: 2px;
    }

    .page-yy777-net__sub-heading {
      font-size: 1.6em;
      color: var(--page-yy777-net-text-light);
      margin-bottom: 20px;
    }

    .page-yy777-net__paragraph {
      font-size: 1.1em;
      margin-bottom: 15px;
      color: var(--page-yy777-net-text-light);
    }

    .page-yy777-net__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-yy777-net__card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-yy777-net__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

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

    .page-yy777-net__card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

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

    .page-yy777-net__card-title {
      font-size: 1.4em;
      color: var(--page-yy777-net-primary-color);
      margin-bottom: 10px;
    }

    .page-yy777-net__card-description {
      font-size: 0.95em;
      color: var(--page-yy777-net-text-light);
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-yy777-net__list {
      list-style: none;
      padding: 0;
      margin-top: 20px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 15px;
    }

    .page-yy777-net__list-item {
      background-color: #2a2a2a;
      padding: 15px 20px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      color: var(--page-yy777-net-text-light);
      font-size: 1.05em;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-yy777-net__list-item::before {
      content: '✓';
      color: var(--page-yy777-net-primary-color);
      font-weight: bold;
      font-size: 1.2em;
    }

    /* FAQ Section Styles */
    .page-yy777-net__faq-section {
      background-color: var(--page-yy777-net-bg-dark);
      padding: 60px 20px;
      color: var(--page-yy777-net-text-light);
    }

    .page-yy777-net__faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-yy777-net__faq-item {
      background-color: #2a2a2a;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-yy777-net__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #333333;
      transition: background-color 0.3s ease;
    }

    .page-yy777-net__faq-question:hover {
      background-color: #444444;
    }

    .page-yy777-net__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-yy777-net-primary-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-yy777-net__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-yy777-net-accent-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent span from blocking click event */
    }

    .page-yy777-net__faq-item.active .page-yy777-net__faq-toggle {
      transform: rotate(45deg); /* Change + to X-like or - */
    }

    .page-yy777-net__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding */
      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(--page-yy777-net-text-light);
      font-size: 1em;
      background-color: #2a2a2a;
    }

    .page-yy777-net__faq-item.active .page-yy777-net__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to show all content */
      padding: 20px 25px !important; /* Expanded padding */
      opacity: 1;
    }

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

      .page-yy777-net__hero-subtitle {
        font-size: 1em;
      }

      .page-yy777-net__heading {
        font-size: 1.8em;
      }

      .page-yy777-net__sub-heading {
        font-size: 1.4em;
      }

      .page-yy777-net__paragraph {
        font-size: 0.95em;
      }

      .page-yy777-net__grid {
        grid-template-columns: 1fr;
      }

      .page-yy777-net__list {
        grid-template-columns: 1fr;
        padding: 0;
      }

      .page-yy777-net__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px 15px; /* Adjust padding for smaller screens */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-yy777-net__card-image-wrapper {
        height: 180px;
      }

      .page-yy777-net__faq-question {
        padding: 15px 20px;
      }

      .page-yy777-net__faq-question h3 {
        font-size: 1.1em;
      }

      .page-yy777-net__faq-answer {
        padding: 0 20px;
      }

      .page-yy777-net__faq-item.active .page-yy777-net__faq-answer {
        padding: 15px 20px !important;
      }

      /* Image responsive */
      .page-yy777-net__hero-image,
      .page-yy777-net__card-image {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-yy777-net__card-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }

      .page-yy777-net__floating-button {
        padding: 10px 8px;
        font-size: 0.9em;
      }
    }

    @media (max-width: 480px) {
      .page-yy777-net__hero-title {
        font-size: 1.8em;
      }
      .page-yy777-net__hero-subtitle {
        font-size: 0.9em;
      }
      .page-yy777-net__button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-yy777-net__heading {
        font-size: 1.6em;
      }
    }
  