
    :root {
      --page-yy777-com-2-primary-color: #e0b300; /* Gold/Yellow */
      --page-yy777-com-2-secondary-color: #000000; /* Black */
      --page-yy777-com-2-accent-color: #ff4d4d; /* Reddish for alerts/promos */
      --page-yy777-com-2-text-color: #ffffff; /* White */
      --page-yy777-com-2-dark-text-color: #333333; /* Dark text for light backgrounds */
      --page-yy777-com-2-background-dark: #1a1a1a;
      --page-yy777-com-2-background-light: #2c2c2c;
      --page-yy777-com-2-border-color: #444444;
    }

    .page-yy777-com-2 {
      font-family: 'Arial', sans-serif;
      color: var(--page-yy777-com-2-text-color);
      background-color: var(--page-yy777-com-2-background-dark);
      line-height: 1.6;
      padding-bottom: 20px; /* Ensure space before footer */
      padding-top: var(--header-offset, 122px); /* Fallback for body padding */
    }

    .page-yy777-com-2__floating-buttons {
      position: fixed;
      top: 50%;
      right: 15px;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 1000;
    }

    .page-yy777-com-2__button {
      background-color: var(--page-yy777-com-2-primary-color);
      color: var(--page-yy777-com-2-secondary-color);
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      text-align: center;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      white-space: nowrap;
    }

    .page-yy777-com-2__button:hover {
      background-color: #f0c320;
      transform: translateY(-2px);
    }

    .page-yy777-com-2__hero-section {
      position: relative;
      width: 100%;
      height: 60vh;
      min-height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      padding-top: 10px; /* Small decorative top padding, header offset handled by body */
    }

    .page-yy777-com-2__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      filter: brightness(0.6);
    }

    .page-yy777-com-2__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding: 20px;
      background: rgba(0, 0, 0, 0.5);
      border-radius: 10px;
    }

    .page-yy777-com-2__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      color: var(--page-yy777-com-2-primary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-yy777-com-2__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: var(--page-yy777-com-2-text-color);
    }

    .page-yy777-com-2__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-yy777-com-2__section--dark {
      background-color: var(--page-yy777-com-2-background-light);
    }

    .page-yy777-com-2__section-title {
      font-size: 2.5em;
      margin-bottom: 30px;
      color: var(--page-yy777-com-2-primary-color);
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-yy777-com-2__text-content {
      font-size: 1.1em;
      max-width: 800px;
      margin: 0 auto 30px auto;
      color: var(--page-yy777-com-2-text-color);
    }

    .page-yy777-com-2__game-grid,
    .page-yy777-com-2__provider-grid,
    .page-yy777-com-2__payment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-yy777-com-2__game-card,
    .page-yy777-com-2__provider-card,
    .page-yy777-com-2__payment-card {
      background-color: var(--page-yy777-com-2-background-dark);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 20px;
      border: 1px solid var(--page-yy777-com-2-border-color);
    }

    .page-yy777-com-2__game-card:hover,
    .page-yy777-com-2__provider-card:hover,
    .page-yy777-com-2__payment-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
    }

    .page-yy777-com-2__card-image {
      width: 100%;
      max-width: 300px;
      height: 200px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 15px;
      border: 2px solid var(--page-yy777-com-2-primary-color);
      box-sizing: border-box; /* Important for responsive images */
    }

    .page-yy777-com-2__card-title {
      font-size: 1.5em;
      color: var(--page-yy777-com-2-primary-color);
      margin-bottom: 10px;
    }

    .page-yy777-com-2__card-description {
      font-size: 0.95em;
      color: var(--page-yy777-com-2-text-color);
    }

    .page-yy777-com-2__promo-item {
      background-color: var(--page-yy777-com-2-background-light);
      padding: 25px;
      border-radius: 10px;
      margin-bottom: 20px;
      text-align: left;
      border-left: 5px solid var(--page-yy777-com-2-accent-color);
    }

    .page-yy777-com-2__promo-title {
      color: var(--page-yy777-com-2-primary-color);
      font-size: 1.8em;
      margin-bottom: 10px;
    }

    .page-yy777-com-2__promo-text {
      color: var(--page-yy777-com-2-text-color);
      margin-bottom: 15px;
    }

    .page-yy777-com-2__promo-button {
      background-color: var(--page-yy777-com-2-accent-color);
      color: var(--page-yy777-com-2-text-color);
      padding: 10px 20px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-yy777-com-2__promo-button:hover {
      background-color: #ff6666;
    }

    .page-yy777-com-2__faq-container {
      max-width: 900px;
      margin: 40px auto;
      text-align: left;
    }

    .page-yy777-com-2__faq-item {
      background-color: var(--page-yy777-com-2-background-light);
      border: 1px solid var(--page-yy777-com-2-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
    }

    .page-yy777-com-2__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      background-color: var(--page-yy777-com-2-background-dark);
      cursor: pointer;
      user-select: none;
      font-size: 1.1em;
      color: var(--page-yy777-com-2-primary-color);
      transition: background-color 0.3s ease;
    }

    .page-yy777-com-2__faq-question:hover {
      background-color: #2a2a2a;
    }

    .page-yy777-com-2__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      flex-grow: 1;
      pointer-events: none; /* Prevents text selection interfering with click */
    }

    .page-yy777-com-2__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      margin-left: 15px;
      pointer-events: none; /* Prevents icon interfering with click */
      color: var(--page-yy777-com-2-accent-color);
      transition: transform 0.3s ease;
    }

    .page-yy777-com-2__faq-item.active .page-yy777-com-2__faq-toggle {
      transform: rotate(45deg); /* Visually change + to X or similar */
    }

    .page-yy777-com-2__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      color: var(--page-yy777-com-2-text-color);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

    .page-yy777-com-2__faq-item.active .page-yy777-com-2__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px !important;
      opacity: 1;
    }

    .page-yy777-com-2__social-media-links {
      display: flex;
      justify-content: center;
      gap: 25px;
      margin-top: 40px;
      flex-wrap: wrap;
    }

    .page-yy777-com-2__social-icon {
      width: 50px;
      height: 50px;
      object-fit: contain;
      transition: transform 0.3s ease;
      border-radius: 50%;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
      border: 1px solid var(--page-yy777-com-2-primary-color);
      box-sizing: border-box;
    }

    .page-yy777-com-2__social-icon:hover {
      transform: scale(1.1);
    }

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
      .page-yy777-com-2__hero-title {
        font-size: 2.5em;
      }
      .page-yy777-com-2__hero-subtitle {
        font-size: 1.3em;
      }
      .page-yy777-com-2__section-title {
        font-size: 2em;
      }
      .page-yy777-com-2__game-grid,
      .page-yy777-com-2__provider-grid,
      .page-yy777-com-2__payment-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }
    }

    @media (max-width: 768px) {
      .page-yy777-com-2__floating-buttons {
        right: 10px;
        top: auto;
        bottom: 20px;
        flex-direction: row;
        width: calc(100% - 20px);
        justify-content: center;
        transform: none;
        gap: 10px;
      }
      .page-yy777-com-2__button {
        padding: 10px 18px;
        font-size: 1em;
      }
      .page-yy777-com-2__hero-section {
        height: 50vh;
        min-height: 300px;
      }
      .page-yy777-com-2__hero-title {
        font-size: 2em;
      }
      .page-yy777-com-2__hero-subtitle {
        font-size: 1.1em;
      }
      .page-yy777-com-2__section {
        padding: 30px 15px;
      }
      .page-yy777-com-2__section-title {
        font-size: 1.8em;
      }
      .page-yy777-com-2__text-content {
        font-size: 1em;
      }
      .page-yy777-com-2__game-grid,
      .page-yy777-com-2__provider-grid,
      .page-yy777-com-2__payment-grid {
        grid-template-columns: 1fr; /* Single column layout */
        gap: 20px;
      }
      .page-yy777-com-2__game-card,
      .page-yy777-com-2__provider-card,
      .page-yy777-com-2__payment-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-yy777-com-2__card-image {
        max-width: 250px;
        height: 160px;
      }
      .page-yy777-com-2__promo-item {
        padding: 20px;
      }
      .page-yy777-com-2__promo-title {
        font-size: 1.5em;
      }
      .page-yy777-com-2__faq-container {
        margin: 30px 15px;
      }
      .page-yy777-com-2__faq-question {
        padding: 15px;
        font-size: 1em;
      }
      .page-yy777-com-2__faq-question h3 {
        font-size: 1em;
      }
      .page-yy777-com-2__faq-answer {
        padding: 0 15px;
      }
      .page-yy777-com-2__faq-item.active .page-yy777-com-2__faq-answer {
        padding: 15px !important;
      }
      .page-yy777-com-2__social-icon {
        width: 40px;
        height: 40px;
      }
    }

    @media (max-width: 480px) {
      .page-yy777-com-2__hero-title {
        font-size: 1.7em;
      }
      .page-yy777-com-2__hero-subtitle {
        font-size: 0.9em;
      }
      .page-yy777-com-2__button {
        padding: 8px 15px;
        font-size: 0.9em;
      }
      .page-yy777-com-2__floating-buttons {
        bottom: 15px;
        gap: 8px;
      }
      .page-yy777-com-2__card-image {
        max-width: 200px;
        height: 140px;
      }
    }
  