
    /* Page-specific CSS styles for www.777pub */
    .page-www-777pub {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      padding-top: 10px; /* Small padding to avoid double header offset if body already has it */
    }

    .page-www-777pub__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-www-777pub__section--dark {
      background-color: #2c3e50;
      color: #ecf0f1;
    }

    .page-www-777pub__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-www-777pub__title {
      text-align: center;
      color: #2c3e50;
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-www-777pub__title--light {
      color: #ecf0f1;
    }

    .page-www-777pub__subtitle {
      text-align: center;
      color: #555;
      margin-bottom: 40px;
      font-size: 1.2em;
    }

    .page-www-777pub__hero-section {
      text-align: center;
      padding: 80px 20px;
      background-color: #004d40; /* Darker green for a premium feel */
      color: #fff;
      position: relative;
      overflow: hidden;
      border-radius: 0 0 15px 15px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

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

    .page-www-777pub__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-www-777pub__hero-title {
      font-size: 3em;
      margin-bottom: 20px;
      color: #ffeb3b; /* Yellow accent */
      line-height: 1.2;
    }

    .page-www-777pub__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-www-777pub__button {
      display: inline-block;
      padding: 15px 30px;
      background-color: #ffeb3b; /* Yellow accent */
      color: #004d40; /* Dark green text */
      text-decoration: none;
      border-radius: 30px;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    .page-www-777pub__button:hover {
      background-color: #ffee58;
      transform: translateY(-2px);
    }

    .page-www-777pub__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
    }

    .page-www-777pub__floating-button {
      padding: 12px 25px;
      background-color: #00796b; /* Green for action */
      color: #fff;
      border-radius: 25px;
      font-weight: bold;
      font-size: 1em;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-www-777pub__floating-button:hover {
      background-color: #00897b;
      transform: translateY(-2px);
    }

    .page-www-777pub__floating-button--login {
      background-color: #d32f2f; /* Red for login */
    }

    .page-www-777pub__floating-button--login:hover {
      background-color: #e53935;
    }

    .page-www-777pub__game-showcase {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      justify-content: center;
      padding: 20px 0;
    }

    .page-www-777pub__game-card {
      background-color: #f0f0f0;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
      box-sizing: border-box;
    }

    .page-www-777pub__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    }

    .page-www-777pub__game-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for image consistency */
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #eee;
    }

    .page-www-777pub__game-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      max-width: 100%;
    }

    .page-www-777pub__game-content {
      padding: 15px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-www-777pub__game-title {
      font-size: 1.3em;
      margin-bottom: 10px;
      color: #004d40;
      font-weight: bold;
    }

    .page-www-777pub__game-description {
      font-size: 0.9em;
      color: #666;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-www-777pub__promo-banner {
      background-color: #ffeb3b;
      color: #333;
      padding: 30px 20px;
      text-align: center;
      border-radius: 10px;
      margin-top: 40px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .page-www-777pub__promo-title {
      font-size: 2em;
      color: #d32f2f;
      margin-bottom: 15px;
    }

    .page-www-777pub__promo-text {
      font-size: 1.1em;
      margin-bottom: 25px;
    }

    .page-www-777pub__features-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-www-777pub__feature-item {
      background-color: #e8f5e9; /* Light green */
      border-left: 5px solid #004d40;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.08);
      box-sizing: border-box;
    }

    .page-www-777pub__feature-item h3 {
      color: #004d40;
      margin-top: 0;
      margin-bottom: 10px;
      font-size: 1.4em;
    }

    .page-www-777pub__feature-item p {
      color: #444;
      font-size: 0.95em;
    }

    .page-www-777pub__faq-section {
      padding: 40px 20px;
      background-color: #f0f4f8; /* Light blue-grey for FAQ */
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 20px;
    }

    .page-www-777pub__faq-title {
      text-align: center;
      color: #2c3e50;
      margin-bottom: 30px;
      font-size: 2.2em;
      font-weight: bold;
    }

    .page-www-777pub__faq-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-www-777pub__faq-item {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 1px 3px rgba(0,0,0,0.05);
      transition: all 0.3s ease;
    }

    .page-www-777pub__faq-item.active {
      border-color: #00796b;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .page-www-777pub__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #e0f2f1; /* Lighter green for question background */
      color: #004d40;
      font-weight: bold;
      font-size: 1.1em;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-www-777pub__faq-question:hover {
      background-color: #b2dfdb;
    }

    .page-www-777pub__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #004d40;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-www-777pub__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle from blocking click event */
      transition: transform 0.3s ease;
    }

    .page-www-777pub__faq-item.active .page-www-777pub__faq-toggle {
      transform: rotate(45deg); /* Rotate '+' to 'x' or '-' */
    }

    .page-www-777pub__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555;
      background-color: #fff;
      font-size: 0.95em;
    }

    .page-www-777pub__faq-item.active .page-www-777pub__faq-answer {
      max-height: 2000px !important; /* Sufficiently large value */
      padding: 20px 15px !important;
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-www-777pub__hero-title {
        font-size: 2.2em;
      }

      .page-www-777pub__hero-description {
        font-size: 1em;
      }

      .page-www-777pub__floating-buttons {
        flex-direction: column;
        bottom: 10px;
        width: calc(100% - 30px);
        transform: translateX(-50%);
        left: 50%;
      }

      .page-www-777pub__floating-button {
        width: 100%;
        padding: 10px 15px;
      }

      .page-www-777pub__game-showcase {
        grid-template-columns: 1fr;
      }

      .page-www-777pub__game-card {
        margin: 0 auto;
        max-width: 350px; /* Constrain width for smaller screens */
      }

      .page-www-777pub__features-list {
        grid-template-columns: 1fr;
      }

      .page-www-777pub__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px;
      }

      .page-www-777pub__section {
        padding: 30px 15px;
      }

      .page-www-777pub__title {
        font-size: 2em;
      }

      .page-www-777pub__promo-title {
        font-size: 1.6em;
      }

      .page-www-777pub__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }

      .page-www-777pub__faq-question h3 {
        font-size: 1em;
      }

      .page-www-777pub__faq-answer {
        padding: 15px 15px !important;
      }
    }

    /* Ensure all list items and containers are responsive */
    .page-www-777pub__features-list,
    .page-www-777pub__faq-list {
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
      padding: 0;
      margin-left: 0;
      margin-right: 0;
    }

    .page-www-777pub__features-list li,
    .page-www-777pub__faq-item {
      box-sizing: border-box;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    @media (max-width: 768px) {
      .page-www-777pub__features-list,
      .page-www-777pub__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-www-777pub__features-list li,
      .page-www-777pub__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px !important; /* Adjust padding for mobile to prevent content being too narrow */
        padding-right: 15px !important;
      }
    }

    /* Image responsive styles */
    .page-www-777pub img {
      max-width: 100%;
      height: auto;
      display: block; /* Remove extra space below images */
    }

    .page-www-777pub__game-image-wrapper img {
      max-width: 100% !important;
      height: 100% !important; /* Ensure image fills the wrapper height */
      object-fit: cover !important; /* Cover the area without distortion */
    }

    @media (max-width: 768px) {
      .page-www-777pub img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-www-777pub__game-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

  