
    .page-dagaaz888 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f4f7f6;
    }

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

    /* Hero Section */
    .page-dagaaz888__hero-section {
      position: relative;
      width: 100%;
      min-height: 300px;
      background-color: #1a2a3a; /* Dark background for text visibility */
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      overflow: hidden;
      padding-top: 10px; /* To clear fixed header on desktop */
      box-sizing: border-box;
    }

    .page-dagaaz888__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.6;
      z-index: 1;
    }

    .page-dagaaz888__hero-content {
      position: relative;
      z-index: 2;
      padding: 20px;
      max-width: 90%;
    }

    .page-dagaaz888__hero-title {
      font-size: 2.5em;
      margin-bottom: 15px;
      color: #ffcc00; /* Gold/yellow for emphasis */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-dagaaz888__hero-description {
      font-size: 1.1em;
      margin-bottom: 30px;
      max-width: 800px;
    }

    .page-dagaaz888__cta-button {
      display: inline-block;
      background-color: #e44d26; /* Orange-red for CTA */
      color: #fff;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-dagaaz888__cta-button:hover {
      background-color: #f26522;
      transform: translateY(-3px);
    }

    /* Floating Button */
    .page-dagaaz888__floating-promo {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #e44d26; /* Orange-red */
      color: #fff;
      padding: 12px 20px;
      border-radius: 30px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      font-size: 1em;
      font-weight: bold;
      text-align: center;
      animation: page-dagaaz888__pulse 2s infinite;
      display: flex;
      align-items: center;
      justify-content: center;
      max-width: 90%;
      box-sizing: border-box;
    }

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

    .page-dagaaz888__floating-promo a {
      color: #fff;
      text-decoration: none;
      display: block;
    }

    /* General Section Styling */
    .page-dagaaz888__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .page-dagaaz888__section-title {
      font-size: 2em;
      color: #1a2a3a;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
    }

    .page-dagaaz888__section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background-color: #e44d26;
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .page-dagaaz888__text-content {
      font-size: 1.05em;
      margin-bottom: 20px;
      text-align: justify;
    }

    .page-dagaaz888__text-content strong {
      color: #e44d26;
    }

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

    .page-dagaaz888__grid-item {
      background-color: #f9f9f9;
      border: 1px solid #eee;
      border-radius: 8px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
    }

    .page-dagaaz888__grid-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .page-dagaaz888__grid-item-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 15px;
      object-fit: cover;
      min-width: 200px; /* Enforce minimum size */
      min-height: 200px; /* Enforce minimum size */
    }

    .page-dagaaz888__grid-item-title {
      font-size: 1.4em;
      color: #1a2a3a;
      margin-bottom: 10px;
    }

    .page-dagaaz888__grid-item-description {
      font-size: 0.95em;
      color: #555;
    }

    /* How-to steps */
    .page-dagaaz888__steps {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-top: 30px;
    }

    .page-dagaaz888__step-item {
      display: flex;
      align-items: flex-start;
      background-color: #f0f8ff; /* Light blue background */
      padding: 20px;
      border-left: 5px solid #e44d26;
      border-radius: 5px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
      box-sizing: border-box; /* Ensure padding is included in width */
    }

    .page-dagaaz888__step-number {
      font-size: 1.8em;
      font-weight: bold;
      color: #e44d26;
      margin-right: 15px;
      flex-shrink: 0;
    }

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

    .page-dagaaz888__step-title {
      font-size: 1.2em;
      color: #1a2a3a;
      margin-bottom: 5px;
    }

    .page-dagaaz888__step-description {
      font-size: 0.95em;
      color: #666;
    }

    /* FAQ Section */
    .page-dagaaz888__faq-section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .page-dagaaz888__faq-list {
      margin-top: 30px;
    }

    .page-dagaaz888__faq-item {
      border-bottom: 1px solid #eee;
      margin-bottom: 10px;
      padding-bottom: 10px;
    }

    .page-dagaaz888__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      cursor: pointer;
      font-size: 1.1em;
      color: #1a2a3a;
      font-weight: bold;
      user-select: none;
      transition: color 0.3s ease;
    }

    .page-dagaaz888__faq-question:hover {
      color: #e44d26;
    }

    .page-dagaaz888__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      pointer-events: none; /* Prevent h3 from blocking click */
      flex-grow: 1;
    }

    .page-dagaaz888__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #e44d26;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle icon from blocking click */
      width: 20px; /* Ensure consistent width */
      text-align: center;
    }

    .page-dagaaz888__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;
      font-size: 0.95em;
    }

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

    .page-dagaaz888__faq-item.active .page-dagaaz888__faq-toggle {
      content: '−'; /* Changed by JS */
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-dagaaz888__hero-section {
        min-height: 250px;
        padding-top: 10px !important; /* To clear fixed header on mobile */
      }

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

      .page-dagaaz888__hero-description {
        font-size: 0.95em;
      }

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

      .page-dagaaz888__section {
        padding: 30px 15px;
      }

      .page-dagaaz888__section-title {
        font-size: 1.6em;
      }

      .page-dagaaz888__text-content {
        font-size: 0.95em;
      }

      .page-dagaaz888__grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-dagaaz888__grid-item {
        padding: 20px;
      }

      .page-dagaaz888__grid-item-image {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-width: unset !important; /* Override desktop min-width */
        min-height: unset !important; /* Override desktop min-height */
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      
      /* List items response - specific for steps section */
      .page-dagaaz888__steps {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-dagaaz888__step-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-dagaaz888__step-number {
        font-size: 1.5em;
      }

      .page-dagaaz888__step-title {
        font-size: 1.1em;
      }

      .page-dagaaz888__step-description {
        font-size: 0.9em;
      }

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

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

      .page-dagaaz888__faq-answer {
        padding: 0 10px;
        font-size: 0.9em;
      }

      .page-dagaaz888__faq-item.active .page-dagaaz888__faq-answer {
        padding: 15px 10px !important;
      }
    }

    @media (max-width: 480px) {
      .page-dagaaz888__floating-promo {
        padding: 10px 15px;
        font-size: 0.9em;
      }
    }
  