
    /* CSS for page-8ket */
    :root {
      --page-8ket-primary-color: #e44d26; /* A vibrant, appealing color */
      --page-8ket-secondary-color: #ff8c00;
      --page-8ket-text-color: #333;
      --page-8ket-light-text-color: #f8f8f8;
      --page-8ket-background-light: #f4f4f4;
      --page-8ket-background-dark: #2c3e50;
      --page-8ket-accent-color: #007bff;
      --page-8ket-border-radius: 8px;
      --page-8ket-shadow: rgba(0, 0, 0, 0.1);
    }

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

    .page-8ket-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 15px;
    }

    /* Hero Section */
    .page-8ket-hero {
      position: relative;
      background-color: var(--page-8ket-background-dark);
      color: var(--page-8ket-light-text-color);
      text-align: center;
      padding: 60px 15px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 300px; /* Ensure content is visible */
    }

    .page-8ket-hero-banner {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.6; /* Slightly dim the image to make text readable */
      z-index: 1;
    }

    .page-8ket-hero-content {
      position: relative;
      z-index: 2;
      max-width: 700px;
    }

    .page-8ket-hero h1 {
      font-size: 2.5em;
      margin-bottom: 15px;
      color: var(--page-8ket-light-text-color);
      text-shadow: 2px 2px 4px var(--page-8ket-shadow);
    }

    .page-8ket-hero p {
      font-size: 1.1em;
      margin-bottom: 30px;
      color: var(--page-8ket-light-text-color);
    }

    .page-8ket-btn {
      display: inline-block;
      background-color: var(--page-8ket-primary-color);
      color: var(--page-8ket-light-text-color);
      padding: 12px 25px;
      border-radius: var(--page-8ket-border-radius);
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      font-size: 1.1em;
      border: none;
      cursor: pointer;
    }

    .page-8ket-btn:hover {
      background-color: var(--page-8ket-secondary-color);
      transform: translateY(-2px);
    }

    /* Section Styling */
    .page-8ket-section {
      padding: 40px 15px;
      margin-bottom: 20px;
      background-color: #fff;
      border-radius: var(--page-8ket-border-radius);
      box-shadow: 0 2px 8px var(--page-8ket-shadow);
    }

    .page-8ket-section h2 {
      text-align: center;
      color: var(--page-8ket-primary-color);
      font-size: 2em;
      margin-bottom: 30px;
      position: relative;
    }

    .page-8ket-section h2::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background-color: var(--page-8ket-secondary-color);
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .page-8ket-section h3 {
      color: var(--page-8ket-accent-color);
      margin-top: 25px;
      margin-bottom: 15px;
    }

    /* Game Cards */
    .page-8ket-game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-8ket-game-card {
      background-color: #fff;
      border-radius: var(--page-8ket-border-radius);
      box-shadow: 0 4px 10px var(--page-8ket-shadow);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
    }

    .page-8ket-game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .page-8ket-game-card-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
    }

    .page-8ket-game-card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-8ket-game-card-content h3 {
      margin-top: 0;
      color: var(--page-8ket-primary-color);
      font-size: 1.3em;
      margin-bottom: 10px;
    }

    .page-8ket-game-card-content p {
      font-size: 0.95em;
      color: #555;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-8ket-game-card .page-8ket-btn {
      width: fit-content;
      margin: 0 auto;
      padding: 10px 20px;
      font-size: 0.9em;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-8ket-hero {
        padding: 40px 15px;
      }
      .page-8ket-hero h1 {
        font-size: 2em;
      }
      .page-8ket-hero p {
        font-size: 1em;
      }
      .page-8ket-section h2 {
        font-size: 1.8em;
      }
      .page-8ket-game-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 480px) {
      .page-8ket-hero h1 {
        font-size: 1.8em;
      }
      .page-8ket-hero p {
        font-size: 0.9em;
      }
      .page-8ket-btn {
        padding: 10px 20px;
        font-size: 1em;
      }
      .page-8ket-section {
        padding: 30px 10px;
      }
    }

    /* Floating Login Button */
    .page-8ket-floating-btn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background-color: var(--page-8ket-primary-color);
      color: var(--page-8ket-light-text-color);
      padding: 15px 25px;
      border-radius: 50px; /* Pill shape */
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
      animation: page-8ket-pulse 2s infinite;
      text-align: center;
      white-space: nowrap; /* Prevent text wrapping */
    }

    .page-8ket-floating-btn:hover {
      background-color: var(--page-8ket-secondary-color);
      transform: scale(1.05);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
      animation: none; /* Stop pulsing on hover */
    }

    .page-8ket-floating-btn span {
      display: none; /* Hide text by default for mobile */
    }

    @media (min-width: 768px) {
      .page-8ket-floating-btn {
        right: 30px;
        bottom: 30px;
        padding: 18px 30px;
        font-size: 1.2em;
      }
      .page-8ket-floating-btn span {
        display: inline; /* Show text on larger screens */
      }
      .page-8ket-floating-btn::before {
        content: '🎁'; /* Emoji for visual appeal */
        margin-right: 8px;
        font-size: 1.2em;
      }
    }

    @keyframes page-8ket-pulse {
      0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(228, 77, 38, 0.7);
      }
      70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(228, 77, 38, 0);
      }
      100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(228, 77, 38, 0);
      }
    }

    .page-8ket-list {
        list-style: none;
        padding: 0;
        margin: 20px 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 15px;
    }

    .page-8ket-list li {
        background-color: var(--page-8ket-background-light);
        padding: 15px;
        border-left: 5px solid var(--page-8ket-primary-color);
        border-radius: var(--page-8ket-border-radius);
        box-shadow: 0 2px 5px var(--page-8ket-shadow);
        font-size: 1em;
        color: var(--page-8ket-text-color);
    }

    .page-8ket-list li strong {
        color: var(--page-8ket-accent-color);
    }
  