
    /* Global styles for the page-dagabj88login scope */
    .page-dagabj88login {
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f9fa;
      overflow-x: hidden; /* Prevent horizontal scroll */
    }

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

    .page-dagabj88login__section {
      background-color: #fff;
      margin-bottom: 30px;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .page-dagabj88login__title {
      font-size: 2.5em;
      color: #0056b3; /* A strong blue for titles */
      text-align: center;
      margin-bottom: 20px;
      font-weight: 700;
    }

    .page-dagabj88login__subtitle {
      font-size: 1.8em;
      color: #0056b3;
      margin-bottom: 15px;
      text-align: center;
      font-weight: 600;
    }

    .page-dagabj88login__text {
      font-size: 1.1em;
      margin-bottom: 15px;
      color: #555;
    }

    .page-dagabj88login__button {
      display: inline-block;
      background-color: #ff4500; /* Orange-red for action buttons */
      color: #fff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      text-align: center;
    }

    .page-dagabj88login__button:hover {
      background-color: #e03e00;
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-dagabj88login__hero-section {
      position: relative;
      width: 100%;
      min-height: 450px; /* Adjusted min-height for better visibility */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #fff;
      padding-top: 10px; /* For fixed header */
      box-sizing: border-box;
      overflow: hidden;
    }

    .page-dagabj88login__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      filter: brightness(0.6); /* Darken background image for text readability */
      max-width: 100%;
      height: auto;
      box-sizing: border-box;
    }

    .page-dagabj88login__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text */
      border-radius: 10px;
    }

    .page-dagabj88login__hero-title {
      font-size: 3.2em;
      margin-bottom: 15px;
      line-height: 1.2;
      font-weight: 900;
      color: #ffd700; /* Gold color for main title */
    }

    .page-dagabj88login__hero-description {
      font-size: 1.4em;
      margin-bottom: 30px;
      font-weight: 500;
      color: #f0f0f0;
    }

    .page-dagabj88login__hero-button {
      background-color: #ff4500;
      padding: 15px 40px;
      font-size: 1.3em;
      border-radius: 8px;
    }

    .page-dagabj88login__hero-button:hover {
      background-color: #e03e00;
      transform: scale(1.05);
    }

    /* Floating Login Button */
    .page-dagabj88login__floating-login-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #28a745; /* Green for promotions */
      color: #fff;
      padding: 15px 25px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      animation: page-dagabj88login__pulse 2s infinite;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      text-decoration: none;
      text-align: center;
    }

    .page-dagabj88login__floating-login-button:hover {
      background-color: #218838;
      animation: none;
    }

    @keyframes page-dagabj88login__pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

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

    .page-dagabj88login__game-card {
      background-color: #f0f8ff; /* Light blue background */
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      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-dagabj88login__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    .page-dagabj88login__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100%;
      box-sizing: border-box;
    }

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

    .page-dagabj88login__game-card-title {
      font-size: 1.4em;
      color: #0056b3;
      margin-bottom: 10px;
      font-weight: 700;
    }

    .page-dagabj88login__game-card-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-dagabj88login__game-card-button {
      background-color: #007bff; /* Blue for game buttons */
      padding: 10px 20px;
      font-size: 1em;
      border-radius: 5px;
      margin-top: auto;
    }

    .page-dagabj88login__game-card-button:hover {
      background-color: #0056b3;
    }

    /* Login Guide Section */
    .page-dagabj88login__steps-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-dagabj88login__step-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 25px;
      background-color: #f9f9f9;
      padding: 20px;
      border-left: 5px solid #ff4500;
      border-radius: 5px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .page-dagabj88login__step-number {
      font-size: 2em;
      font-weight: bold;
      color: #ff4500;
      margin-right: 15px;
      flex-shrink: 0;
    }

    .page-dagabj88login__step-content {
      flex-grow: 1;
    }

    .page-dagabj88login__step-title {
      font-size: 1.4em;
      color: #0056b3;
      margin-bottom: 5px;
    }

    .page-dagabj88login__step-description {
      font-size: 1em;
      color: #444;
    }

    /* Promotions Section */
    .page-dagabj88login__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
    }

    .page-dagabj88login__promo-card {
      background: linear-gradient(135deg, #007bff, #00c6ff); /* Gradient background */
      color: #fff;
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-dagabj88login__promo-card:nth-child(even) {
      background: linear-gradient(135deg, #28a745, #2edc6a);
    }

    .page-dagabj88login__promo-card:hover {
      transform: translateY(-10px);
    }

    .page-dagabj88login__promo-title {
      font-size: 1.8em;
      margin-bottom: 10px;
      font-weight: bold;
      color: #ffd700;
    }

    .page-dagabj88login__promo-description {
      font-size: 1.1em;
      margin-bottom: 20px;
    }

    .page-dagabj88login__promo-button {
      background-color: #ff4500;
      padding: 12px 25px;
      font-size: 1.1em;
      border-radius: 5px;
    }

    .page-dagabj88login__promo-button:hover {
      background-color: #e03e00;
    }

    /* FAQ Section */
    .page-dagabj88login__faq-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-dagabj88login__faq-item {
      background-color: #f0f8ff;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
      box-sizing: border-box;
    }

    .page-dagabj88login__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #e6f7ff;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      color: #0056b3;
      font-size: 1.1em;
      border-bottom: 1px solid #e0e0e0;
    }

    .page-dagabj88login__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #0056b3;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-dagabj88login__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #ff4500;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
    }

    .page-dagabj88login__faq-item.active .page-dagabj88login__faq-toggle {
      transform: rotate(45deg);
    }

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

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

    /* CTA Section */
    .page-dagabj88login__cta-section {
      text-align: center;
      background: linear-gradient(45deg, #0056b3, #007bff);
      color: #fff;
      padding: 40px 20px;
      border-radius: 8px;
    }

    .page-dagabj88login__cta-title {
      font-size: 2.2em;
      margin-bottom: 15px;
      font-weight: bold;
      color: #ffd700;
    }

    .page-dagabj88login__cta-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-dagabj88login__cta-button {
      background-color: #ff4500;
      padding: 15px 40px;
      font-size: 1.3em;
      border-radius: 8px;
    }

    .page-dagabj88login__cta-button:hover {
      background-color: #e03e00;
    }

    /* General Image Styles */
    .page-dagabj88login img {
      max-width: 100%;
      height: auto;
      display: block; /* Remove extra space below images */
      box-sizing: border-box;
      object-fit: cover; /* Ensure images fill their space */
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-dagabj88login__container {
        padding: 15px;
      }

      .page-dagabj88login__title {
        font-size: 2em;
      }

      .page-dagabj88login__subtitle {
        font-size: 1.5em;
      }

      .page-dagabj88login__hero-section {
        min-height: 350px;
        padding-top: 10px; /* For fixed header on mobile */
      }

      .page-dagabj88login__hero-title {
        font-size: 2.5em;
      }

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

      .page-dagabj88login__hero-button {
        padding: 12px 30px;
        font-size: 1.1em;
      }

      .page-dagabj88login__floating-login-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }

      .page-dagabj88login__game-grid {
        grid-template-columns: 1fr; /* Single column for mobile */
      }

      .page-dagabj88login__game-card-image {
        height: 180px;
      }

      .page-dagabj88login__step-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
      }

      .page-dagabj88login__step-number {
        margin-bottom: 10px;
        margin-right: 0;
      }

      .page-dagabj88login__promo-grid {
        grid-template-columns: 1fr;
      }

      .page-dagabj88login__promo-title {
        font-size: 1.5em;
      }

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

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

      .page-dagabj88login__faq-question h3 {
        font-size: 1em;
      }

      .page-dagabj88login__faq-answer {
        padding: 15px 15px !important; /* Ensure mobile padding is consistent */
      }

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

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

      .page-dagabj88login__cta-button {
        padding: 12px 30px;
        font-size: 1.1em;
      }

      /* List item specific responsive styles */
      .page-dagabj88login__steps-list,
      .page-dagabj88login__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-dagabj88login__step-item,
      .page-dagabj88login__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

    /* Ensure all images are responsive and within bounds */
    .page-dagabj88login__section img,
    .page-dagabj88login__game-card-image,
    .page-dagabj88login__hero-image {
      max-width: 100% !important;
      height: auto !important;
      box-sizing: border-box !important;
      overflow: hidden !important;
    }

    /* Force text wrapping for long words in general */
    .page-dagabj88login__text,
    .page-dagabj88login__hero-description,
    .page-dagabj88login__game-card-description,
    .page-dagabj88login__step-description,
    .page-dagabj88login__promo-description,
    .page-dagabj88login__faq-answer p {
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
      word-break: break-word !important;
    }

  