
    :root {
      --primary-color: #e44d26; /* A vibrant orange for primary actions */
      --secondary-color: #2c3e50; /* Dark blue for text and backgrounds */
      --accent-color: #f39c12; /* A golden yellow for highlights */
      --text-color: #ecf0f1; /* Light gray for main text */
      --background-dark: #1c2833; /* Very dark background */
      --background-light: #2c3e50; /* Slightly lighter dark background */
      --border-color: #34495e; /* Border color */
      --button-hover-color: #c0392b; /* Darker red for button hover */
      --shadow-color: rgba(0, 0, 0, 0.4); /* Shadow color */
    }

    /* Base styles for the specific page */
    .page-yy777-link {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: var(--text-color);
      background-color: var(--background-dark);
      line-height: 1.6;
      padding-top: 10px; /* Small padding to avoid content touching fixed header, assuming body handles main offset */
    }

    /* General section styling */
    .page-yy777-link__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      box-sizing: border-box;
    }

    .page-yy777-link__section--dark {
      background-color: var(--background-light);
    }

    /* Headings */
    .page-yy777-link__heading {
      color: var(--primary-color);
      font-size: 2.8em;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .page-yy777-link__subheading {
      color: var(--accent-color);
      font-size: 1.8em;
      margin-top: 40px;
      margin-bottom: 20px;
    }

    /* Paragraphs */
    .page-yy777-link__paragraph {
      font-size: 1.1em;
      margin-bottom: 15px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Buttons */
    .page-yy777-link__button {
      display: inline-block;
      background-color: var(--primary-color);
      color: #fff;
      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;
      box-shadow: 0 4px 15px var(--shadow-color);
      margin-top: 30px;
    }

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

    /* Hero Section */
    .page-yy777-link__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:gaming,casino,lights]') no-repeat center center/cover;
      padding: 100px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 60vh;
      box-sizing: border-box;
    }

    .page-yy777-link__hero-title {
      font-size: 3.5em;
      color: #fff;
      margin-bottom: 20px;
      text-shadow: 2px 2px 8px var(--shadow-color);
      line-height: 1.2;
    }

    .page-yy777-link__hero-description {
      font-size: 1.4em;
      color: var(--text-color);
      max-width: 900px;
      margin-bottom: 40px;
    }

    /* Feature/Why Section */
    .page-yy777-link__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
      text-align: left;
    }

    .page-yy777-link__feature-item {
      background-color: var(--background-dark);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px var(--shadow-color);
      transition: transform 0.3s ease;
      border: 1px solid var(--border-color);
      box-sizing: border-box;
    }

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

    .page-yy777-link__feature-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 20px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid var(--primary-color);
      box-sizing: border-box;
    }

    .page-yy777-link__feature-title {
      color: var(--accent-color);
      font-size: 1.4em;
      margin-bottom: 15px;
      text-align: center;
    }

    .page-yy777-link__feature-description {
      font-size: 1em;
      color: var(--text-color);
      text-align: center;
    }

    /* Game Providers Section */
    .page-yy777-link__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-yy777-link__provider-card {
      background-color: var(--background-dark);
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px var(--shadow-color);
      transition: transform 0.3s ease;
      border: 1px solid var(--border-color);
      box-sizing: border-box;
    }

    .page-yy777-link__provider-card:hover {
      transform: translateY(-3px);
    }

    .page-yy777-link__provider-logo {
      width: 100%;
      height: 120px;
      object-fit: contain;
      margin-bottom: 15px;
      border-radius: 5px;
      box-sizing: border-box;
    }

    .page-yy777-link__provider-name {
      color: var(--text-color);
      font-weight: bold;
      font-size: 1.1em;
    }

    /* Payment Methods Section */
    .page-yy777-link__payments-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .page-yy777-link__payment-item {
      background-color: var(--background-dark);
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px var(--shadow-color);
      transition: transform 0.2s ease;
      border: 1px solid var(--border-color);
      box-sizing: border-box;
    }

    .page-yy777-link__payment-item:hover {
      transform: scale(1.03);
    }

    .page-yy777-link__payment-logo {
      width: 100%;
      height: 80px;
      object-fit: contain;
      margin-bottom: 10px;
      box-sizing: border-box;
    }

    .page-yy777-link__payment-name {
      color: var(--text-color);
      font-size: 1em;
      font-weight: 500;
    }

    /* FAQ Section */
    .page-yy777-link__faq-container {
      margin-top: 40px;
      text-align: left;
    }

    .page-yy777-link__faq-item {
      background-color: var(--background-dark);
      margin-bottom: 15px;
      border-radius: 8px;
      border: 1px solid var(--border-color);
      overflow: hidden;
      box-shadow: 0 2px 10px var(--shadow-color);
      box-sizing: border-box;
    }

    .page-yy777-link__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: var(--background-light);
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      font-weight: bold;
      color: var(--text-color);
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-yy777-link__faq-question h3 {
      margin: 0;
      color: var(--text-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-yy777-link__faq-question:hover {
      background-color: #3e5060;
    }

    .page-yy777-link__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      color: var(--primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-yy777-link__faq-item.active .page-yy777-link__faq-toggle {
      transform: rotate(45deg); /* Plus to X for active state */
    }

    .page-yy777-link__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);
      box-sizing: border-box;
    }

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

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

      .page-yy777-link__hero-description {
        font-size: 1.1em;
      }

      .page-yy777-link__heading {
        font-size: 2em;
      }

      .page-yy777-link__subheading {
        font-size: 1.5em;
      }

      .page-yy777-link__section {
        padding: 40px 15px;
      }

      /* List Item Responsive for features grid */
      .page-yy777-link__features-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        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-link__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 25px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      /* List Item Responsive for providers grid */
      .page-yy777-link__providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)) !important;
        gap: 15px !important;
        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-link__provider-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      /* List Item Responsive for payments grid */
      .page-yy777-link__payments-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)) !important;
        gap: 10px !important;
        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-link__payment-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      /* FAQ Responsive */
      .page-yy777-link__faq-question {
        font-size: 1em;
        padding: 15px 20px;
      }
      .page-yy777-link__faq-answer {
        padding: 0 20px;
      }
      .page-yy777-link__faq-item.active .page-yy777-link__faq-answer {
        padding: 15px 20px !important;
      }
      .page-yy777-link__faq-toggle {
        font-size: 1.5em;
      }

      /* Image responsiveness */
      .page-yy777-link__feature-icon,
      .page-yy777-link__provider-logo,
      .page-yy777-link__payment-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }
      .page-yy777-link__provider-logo,
      .page-yy777-link__payment-logo {
        height: 60px !important; /* Adjust height for smaller screens if needed */
      }
    }

    @media (max-width: 480px) {
      .page-yy777-link__hero-title {
        font-size: 2em;
      }
      .page-yy777-link__hero-description {
        font-size: 1em;
      }
      .page-yy777-link__button {
        padding: 12px 25px;
        font-size: 1em;
      }
    }
  