
    :root {
      --primary-color: hsl(30, 90%, 50%); /* Orange/Gold */
      --secondary-color: hsl(210, 10%, 20%); /* Dark blue-grey */
      --background-color: hsl(0, 0%, 98%); /* Very light grey */
      --text-color: hsl(210, 10%, 20%);
      --light-text-color: hsl(0, 0%, 100%);
      --border-color: hsl(210, 15%, 90%);
      --card-background: hsl(0, 0%, 100%);
      --shadow-light: 0 4px 12px rgba(0, 0, 0, 0.05);
      --header-offset: 122px; /* Default value, assumed to be set by shared.css */
    }

    .page-yy777-slot {
      font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
      color: var(--text-color);
      line-height: 1.6;
      background-color: var(--background-color);
      padding-top: var(--header-offset, 122px); /* Fallback if body padding is not set */
    }

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

    .page-yy777-slot__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-yy777-slot__section--light {
      background-color: var(--card-background);
    }

    .page-yy777-slot__section-title {
      font-size: 2.8em;
      color: var(--secondary-color);
      margin-bottom: 25px;
      font-weight: 700;
      line-height: 1.2;
    }

    .page-yy777-slot__section-subtitle {
      font-size: 1.2em;
      color: var(--text-color);
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Hero Section */
    .page-yy777-slot__hero-section {
      background-color: var(--secondary-color);
      color: var(--light-text-color);
      padding: 100px 0 80px;
      position: relative;
      overflow: hidden;
      padding-top: 10px; /* Decorative top padding, assuming body handles main offset */
    }

    .page-yy777-slot__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
      max-width: 100%; /* Ensure responsiveness */
      height: auto; /* Maintain aspect ratio */
    }

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

    .page-yy777-slot__hero-title {
      font-size: 3.8em;
      margin-bottom: 20px;
      font-weight: 800;
      line-height: 1.1;
      color: var(--primary-color);
    }

    .page-yy777-slot__hero-description {
      font-size: 1.4em;
      margin-bottom: 40px;
      font-weight: 300;
    }

    .page-yy777-slot__button {
      display: inline-block;
      padding: 15px 35px;
      background-color: var(--primary-color);
      color: var(--light-text-color);
      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-slot__button:hover {
      background-color: darken(var(--primary-color), 10%);
      transform: translateY(-2px);
    }

    /* Features Section */
    .page-yy777-slot__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }

    .page-yy777-slot__feature-item {
      background-color: var(--card-background);
      padding: 30px;
      border-radius: 12px;
      box-shadow: var(--shadow-light);
      text-align: left;
      transition: transform 0.3s ease;
      border: 1px solid var(--border-color);
    }

    .page-yy777-slot__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-yy777-slot__feature-icon {
      width: 60px; /* Min 200px for actual images, this is conceptual icon space */
      height: 60px;
      background-color: var(--primary-color);
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 20px;
      color: var(--light-text-color);
      font-size: 2em;
    }

    .page-yy777-slot__feature-heading {
      font-size: 1.6em;
      color: var(--secondary-color);
      margin-bottom: 15px;
      font-weight: 600;
    }

    .page-yy777-slot__feature-text {
      font-size: 1em;
      color: var(--text-color);
    }

    /* Game Showcase Section */
    .page-yy777-slot__games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }

    .page-yy777-slot__game-card {
      background-color: var(--card-background);
      border-radius: 12px;
      box-shadow: var(--shadow-light);
      overflow: hidden;
      text-align: center;
      border: 1px solid var(--border-color);
      transition: transform 0.3s ease;
    }

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

    .page-yy777-slot__game-image-wrapper {
      width: 100%;
      height: 200px;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: var(--background-color);
    }

    .page-yy777-slot__game-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
      max-width: 100%; /* Ensure responsiveness */
      height: auto; /* Maintain aspect ratio */
    }

    .page-yy777-slot__game-card:hover .page-yy777-slot__game-image {
      transform: scale(1.05);
    }

    .page-yy777-slot__game-info {
      padding: 20px;
    }

    .page-yy777-slot__game-title {
      font-size: 1.4em;
      color: var(--secondary-color);
      margin-bottom: 10px;
      font-weight: 600;
    }

    .page-yy777-slot__game-provider {
      font-size: 0.9em;
      color: var(--text-color);
    }

    /* Promotions Section */
    .page-yy777-slot__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }

    .page-yy777-slot__promo-card {
      background-color: var(--card-background);
      padding: 30px;
      border-radius: 12px;
      box-shadow: var(--shadow-light);
      text-align: left;
      border: 1px solid var(--border-color);
      transition: transform 0.3s ease;
    }

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

    .page-yy777-slot__promo-title {
      font-size: 1.8em;
      color: var(--primary-color);
      margin-bottom: 15px;
      font-weight: 700;
    }

    .page-yy777-slot__promo-description {
      font-size: 1em;
      color: var(--text-color);
      margin-bottom: 20px;
    }

    /* Payment Methods Section */
    .page-yy777-slot__payments-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 50px;
    }

    .page-yy777-slot__payment-item {
      background-color: var(--card-background);
      padding: 20px 30px;
      border-radius: 12px;
      box-shadow: var(--shadow-light);
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 150px;
      height: 80px;
      border: 1px solid var(--border-color);
      transition: transform 0.3s ease;
    }

    .page-yy777-slot__payment-item:hover {
      transform: translateY(-3px);
    }

    .page-yy777-slot__payment-logo {
      max-width: 120px;
      max-height: 60px;
      object-fit: contain;
      max-width: 100%; /* Ensure responsiveness */
      height: auto; /* Maintain aspect ratio */
    }

    /* FAQ Section */
    .page-yy777-slot__faq-list {
      max-width: 900px;
      margin: 50px auto 0;
      text-align: left;
    }

    .page-yy777-slot__faq-item {
      background-color: var(--card-background);
      border: 1px solid var(--border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: var(--shadow-light);
    }

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

    .page-yy777-slot__faq-question:hover {
      background-color: var(--background-color);
    }

    .page-yy777-slot__faq-question-text {
      font-size: 1.3em;
      color: var(--secondary-color);
      font-weight: 600;
      margin: 0;
      pointer-events: none; /* Prevents text from blocking click event */
    }

    .page-yy777-slot__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevents icon from blocking click event */
    }

    .page-yy777-slot__faq-item.active .page-yy777-slot__faq-toggle {
      transform: rotate(45deg); /* Changes '+' to 'x' visually */
    }

    .page-yy777-slot__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      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(--text-color);
    }

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

    .page-yy777-slot__faq-answer p {
      margin-bottom: 15px;
      font-size: 1em;
    }
    .page-yy777-slot__faq-answer p:last-child {
      margin-bottom: 0;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-yy777-slot__hero-title {
        font-size: 3em;
      }
      .page-yy777-slot__section-title {
        font-size: 2.2em;
      }
    }

    @media (max-width: 768px) {
      .page-yy777-slot__hero-section {
        padding: 80px 0 60px;
      }
      .page-yy777-slot__hero-title {
        font-size: 2.5em;
      }
      .page-yy777-slot__hero-description {
        font-size: 1.2em;
      }
      .page-yy777-slot__section {
        padding: 40px 0;
      }
      .page-yy777-slot__section-title {
        font-size: 2em;
      }
      .page-yy777-slot__section-subtitle {
        font-size: 1em;
      }
      .page-yy777-slot__features-grid,
      .page-yy777-slot__games-grid,
      .page-yy777-slot__promotions-grid {
        grid-template-columns: 1fr;
      }

      /* List item responsive requirements for FAQ */
      .page-yy777-slot__faq-list {
        padding: 0 10px;
      }
      .page-yy777-slot__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-yy777-slot__faq-question {
        padding: 15px 20px;
      }
      .page-yy777-slot__faq-question-text {
        font-size: 1.1em;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-yy777-slot__faq-answer {
        padding: 0 20px;
      }
      .page-yy777-slot__faq-item.active .page-yy777-slot__faq-answer {
        padding: 15px 20px !important;
      }

      /* Image responsiveness for all images */
      .page-yy777-slot img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-yy777-slot__game-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        height: 180px; /* Adjust height for smaller screens */
        overflow: hidden;
        box-sizing: border-box !important;
      }
      .page-yy777-slot__payment-item {
        min-width: 120px;
        height: 70px;
        padding: 15px 20px;
      }
      .page-yy777-slot__payment-logo {
        max-width: 100px;
        max-height: 50px;
      }
    }

    @media (max-width: 480px) {
      .page-yy777-slot__hero-title {
        font-size: 2em;
      }
      .page-yy777-slot__hero-description {
        font-size: 1em;
      }
      .page-yy777-slot__button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-yy777-slot__section-title {
        font-size: 1.8em;
      }
      .page-yy777-slot__container {
        padding: 15px;
      }
    }
  