
    :root {
      --page-888blink-primary-color: #e44d26; /* A vibrant, energetic color */
      --page-888blink-secondary-color: #333;
      --page-888blink-accent-color: #f7b731; /* Gold/yellow for highlights */
      --page-888blink-text-color: #333;
      --page-888blink-light-text-color: #fff;
      --page-888blink-bg-light: #f9f9f9;
      --page-888blink-bg-dark: #222;
      --page-888blink-border-color: #eee;
    }

    .page-888blink {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-888blink-text-color);
      background-color: var(--page-888blink-bg-light);
      overflow-x: hidden; /* Prevent horizontal scroll */
    }

    .page-888blink__hero-section {
      background: linear-gradient(135deg, var(--page-888blink-primary-color), #ff6f61);
      color: var(--page-888blink-light-text-color);
      padding: 80px 20px 60px; /* Added padding-top for fixed header */
      text-align: center;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 350px; /* Ensure hero section has a decent height */
    }

    .page-888blink__hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('[GALLERY:banner:abstract,gaming,hero,888b]');
        background-size: cover;
        background-position: center;
        opacity: 0.2; /* Subtle background pattern */
        z-index: 0;
    }

    .page-888blink__hero-content {
        position: relative;
        z-index: 1;
        max-width: 900px;
        margin: 0 auto;
    }

    .page-888blink__main-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      line-height: 1.2;
      color: var(--page-888blink-light-text-color);
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .page-888blink__hero-description {
      font-size: 1.1em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-888blink__cta-button {
      display: inline-block;
      background-color: var(--page-888blink-accent-color);
      color: var(--page-888blink-secondary-color);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    .page-888blink__cta-button:hover {
      background-color: #fdd835;
      transform: translateY(-3px);
    }

    .page-888blink__section-title {
      font-size: 2em;
      color: var(--page-888blink-primary-color);
      text-align: center;
      margin: 60px 0 40px;
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-888blink__about-section,
    .page-888blink__games-section,
    .page-888blink__benefits-section,
    .page-888blink__faq-section,
    .page-888blink__cta-final-section {
      padding: 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-888blink__about-section p,
    .page-888blink__benefits-section p,
    .page-888blink__faq-answer p,
    .page-888blink__cta-final-section p {
      text-align: center;
      margin-bottom: 20px;
      font-size: 1.05em;
    }

    .page-888blink__image-wrapper {
        text-align: center;
        margin: 30px 0;
    }

    .page-888blink__image-full {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        display: block; /* Remove extra space below image */
        margin: 0 auto; /* Center image */
    }

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

    .page-888blink__game-card {
      background-color: #fff;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      text-align: center;
      padding: 25px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      height: 100%; /* Ensure cards have equal height */
    }

    .page-888blink__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    .page-888blink__game-image {
      max-width: 100%; /* Ensure images don't overflow */
      height: 200px; /* Fixed height for consistency */
      object-fit: cover; /* Cover the area, crop if necessary */
      border-radius: 10px;
      margin-bottom: 20px;
      width: 100%; /* Ensure image takes full width of card */
    }

    .page-888blink__game-title {
      font-size: 1.4em;
      color: var(--page-888blink-primary-color);
      margin-bottom: 15px;
    }

    .page-888blink__game-description {
      font-size: 0.95em;
      color: var(--page-888blink-secondary-color);
      flex-grow: 1; /* Allow description to take available space */
    }

    .page-888blink__game-cta {
        text-align: center;
        margin-top: 40px;
    }

    .page-888blink__cta-button-small {
        display: inline-block;
        background-color: var(--page-888blink-primary-color);
        color: var(--page-888blink-light-text-color);
        padding: 10px 20px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.9em;
        transition: background-color 0.3s ease;
    }

    .page-888blink__cta-button-small:hover {
        background-color: #c73e1f;
    }

    .page-888blink__benefits-section {
        background-color: var(--page-888blink-bg-dark);
        color: var(--page-888blink-light-text-color);
        padding: 60px 20px;
        border-radius: 10px;
        margin-top: 60px;
    }

    .page-888blink__benefits-section .page-888blink__section-title {
        color: var(--page-888blink-light-text-color);
    }

    .page-888blink__benefits-section .page-888blink__section-title::after {
        background-color: var(--page-888blink-accent-color);
    }

    .page-888blink__benefit-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-888blink__benefit-item {
      text-align: center;
      padding: 20px;
      background-color: #333;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    }

    .page-888blink__benefit-icon {
      width: 200px; /* Minimum 200px requirement */
      height: 200px; /* Minimum 200px requirement */
      object-fit: contain; /* Ensure the image fits within the bounds without cropping */
      margin-bottom: 15px;
      max-width: 100%; /* Ensure it's responsive */
    }

    .page-888blink__benefit-title {
      font-size: 1.3em;
      color: var(--page-888blink-accent-color);
      margin-bottom: 10px;
    }

    .page-888blink__benefit-item p {
      font-size: 0.9em;
      color: #ccc;
    }

    .page-888blink__faq-section {
      padding-bottom: 100px; /* Extra padding to prevent floating button overlap */
    }

    .page-888blink__faq-container {
      margin-top: 40px;
      border: 1px solid var(--page-888blink-border-color);
      border-radius: 10px;
      overflow: hidden;
      background-color: #fff;
    }

    .page-888blink__faq-item {
      border-bottom: 1px solid var(--page-888blink-border-color);
    }

    .page-888blink__faq-item:last-child {
      border-bottom: none;
    }

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

    .page-888blink__faq-question:hover {
      background-color: var(--page-888blink-bg-light);
    }

    .page-888blink__faq-title {
      font-size: 1.15em;
      color: var(--page-888blink-primary-color);
      margin: 0;
      pointer-events: none; /* Prevent blocking click event on parent */
    }

    .page-888blink__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--page-888blink-accent-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent blocking click event on parent */
    }

    .page-888blink__faq-item.active .page-888blink__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' visually */
    }

    .page-888blink__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;
      background-color: var(--page-888blink-bg-light);
    }

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

    .page-888blink__faq-answer p {
      text-align: left;
      margin-bottom: 0;
      color: var(--page-888blink-secondary-color);
    }

    .page-888blink__cta-final-section {
      text-align: center;
      padding: 60px 20px;
      background-color: var(--page-888blink-primary-color);
      color: var(--page-888blink-light-text-color);
      border-radius: 10px;
      margin-top: 60px;
      margin-bottom: 60px;
    }

    .page-888blink__cta-final-section .page-888blink__section-title {
        color: var(--page-888blink-light-text-color);
    }

    .page-888blink__cta-final-section .page-888blink__section-title::after {
        background-color: var(--page-888blink-accent-color);
    }

    .page-888blink__cta-final-section p {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 30px;
    }

    .page-888blink__cta-button--large {
        padding: 18px 35px;
        font-size: 1.2em;
    }

    .page-888blink__highlight {
        color: var(--page-888blink-accent-color);
        font-weight: bold;
    }

    /* Floating Login Button */
    .page-888blink__floating-button-wrapper {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
        width: 90%;
        max-width: 400px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.3);
        border-radius: 50px;
        overflow: hidden;
    }

    .page-888blink__floating-button {
        display: block;
        width: 100%;
        background: linear-gradient(90deg, #ff7e5f, #feb47b); /* Eye-catching gradient */
        color: #fff;
        text-align: center;
        padding: 15px 20px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        border-radius: 50px;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .page-888blink__floating-button:hover {
        transform: scale(1.03);
        box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    }


    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-888blink__hero-section {
        padding-top: 60px; /* Adjust for mobile fixed header */
        min-height: 300px;
      }

      .page-888blink__main-title {
        font-size: 1.8em;
      }

      .page-888blink__hero-description {
        font-size: 1em;
      }

      .page-888blink__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-888blink__section-title {
        font-size: 1.6em;
        margin: 40px 0 30px;
      }

      .page-888blink__game-grid,
      .page-888blink__benefit-grid {
        grid-template-columns: 1fr;
      }

      .page-888blink__game-image {
        height: 180px; /* Slightly smaller for mobile */
      }

      .page-888blink__faq-question {
        padding: 15px 20px;
      }

      .page-888blink__faq-title {
        font-size: 1em;
      }

      .page-888blink__faq-answer {
        padding: 0 20px;
      }

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

      .page-888blink__floating-button {
        font-size: 0.95em;
        padding: 12px 15px;
      }

      /* FORCED RESPONSIVE STYLES FOR IMAGES ON MOBILE */
      .page-888blink img {
          max-width: 100% !important;
          height: auto !important;
          box-sizing: border-box !important;
      }
      .page-888blink__image-wrapper,
      .page-888blink__game-card,
      .page-888blink__benefit-item {
          width: 100% !important;
          max-width: 100% !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
      }
    }
  