
    /* Base styles for the page */
    .page-daga88 {
      font-family: 'Arial', sans-serif;
      background-color: #000000; /* Main template background */
      color: #FFFFFF; /* Default text color */
      line-height: 1.6;
      padding: 20px;
      max-width: 100%;
      overflow-x: hidden;
      box-sizing: border-box;
    }

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

    .page-daga88__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-daga88__section-title {
      color: #FFD700; /* Yellow for titles */
      font-size: 2.5em;
      margin-bottom: 20px;
      text-transform: uppercase;
      font-weight: bold;
    }

    .page-daga88__section-subtitle {
      color: #FFFFFF;
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-daga88__text--highlight {
      color: #FFD700;
      font-weight: bold;
    }

    /* Hero Section */
    .page-daga88__hero-section {
      padding-top: 120px; /* Desktop safe zone for fixed header */
      position: relative;
      overflow: hidden;
      margin-bottom: 40px;
      text-align: center;
    }

    .page-daga88__hero-image {
      width: 100%;
      max-width: 1200px; /* Ensure it fits container */
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    }

    .page-daga88__hero-content {
      position: relative;
      z-index: 1;
      padding: 20px;
      margin-top: 20px;
    }

    .page-daga88__hero-title {
      font-size: 3.5em;
      color: #FFD700;
      margin-bottom: 15px;
      line-height: 1.2;
      font-weight: 900;
      text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    }

    .page-daga88__hero-description {
      font-size: 1.3em;
      color: #FFFFFF;
      max-width: 900px;
      margin: 0 auto 30px auto;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-daga88__cta-button {
      display: inline-block;
      background-color: #FFD700;
      color: #000000;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    }

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

    /* Floating CTA Button (page-specific, not shared) */
    .page-daga88__floating-cta {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
      70% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(255, 215, 0, 0); }
      100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
    }

    /* Content Sections */
    .page-daga88__intro-section,
    .page-daga88__game-types-section,
    .page-daga88__tips-section,
    .page-daga88__providers-section,
    .page-daga88__faq-section {
      margin-bottom: 40px;
    }

    .page-daga88__intro-text {
      font-size: 1.1em;
      color: #FFFFFF;
      text-align: left;
      margin-bottom: 20px;
    }

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

    .page-daga88__card {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid #333;
    }

    .page-daga88__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
    }

    .page-daga88__card-title {
      color: #FFD700;
      font-size: 1.5em;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-daga88__card-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .page-daga88__card-text {
      color: #FFFFFF;
      font-size: 1em;
    }

    .page-daga88__list {
      list-style: none;
      padding: 0;
      margin-top: 20px;
      text-align: left;
    }

    .page-daga88__list-item {
      background-color: #1a1a1a;
      border-left: 5px solid #FFD700;
      padding: 15px 20px;
      margin-bottom: 10px;
      border-radius: 5px;
      color: #FFFFFF;
      font-size: 1.1em;
      display: flex;
      align-items: center;
    }

    .page-daga88__list-item strong {
      color: #FFD700;
      margin-right: 10px;
    }

    /* Game Providers Section */
    .page-daga88__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-daga88__provider-logo {
      background-color: #1a1a1a;
      border-radius: 8px;
      padding: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .page-daga88__provider-logo:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
    }

    .page-daga88__provider-logo img {
      max-width: 100%;
      max-height: 70px; /* Ensure logos fit */
      height: auto;
      object-fit: contain;
    }

    /* FAQ Section */
    .page-daga88__faq-section {
      text-align: left;
    }

    .page-daga88__faq-item {
      background-color: #1a1a1a;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .page-daga88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #222222;
      border-bottom: 1px solid #333;
      transition: background-color 0.3s ease;
    }

    .page-daga88__faq-question:hover {
      background-color: #333333;
    }

    .page-daga88__faq-question h3 {
      color: #FFD700;
      font-size: 1.2em;
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-daga88__faq-toggle {
      font-size: 1.8em;
      color: #FFD700;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
    }

    .page-daga88__faq-item.active .page-daga88__faq-toggle {
      transform: rotate(45deg); /* Plus to X */
    }

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

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-daga88__hero-section {
        padding-top: 100px; /* Mobile safe zone */
      }

      .page-daga88__section-title {
        font-size: 2em;
      }

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

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

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

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

      .page-daga88__card-image {
        height: 180px;
      }

      .page-daga88__provider-logo {
        height: 80px;
      }

      .page-daga88__provider-logo img {
        max-height: 50px;
      }

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

      .page-daga88__faq-question h3 {
        font-size: 1.1em;
      }

      .page-daga88__faq-toggle {
        font-size: 1.5em;
      }

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

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

      /* Images responsive optimization for mobile */
      .page-daga88 img {
        max-width: 100% !important;
        height: auto !important;
        display: block; /* Ensure block level for margin auto */
        margin-left: auto;
        margin-right: auto;
      }
      .page-daga88__container,
      .page-daga88__hero-section,
      .page-daga88__intro-section,
      .page-daga88__game-types-section,
      .page-daga88__tips-section,
      .page-daga88__providers-section,
      .page-daga88__faq-section {
          width: 100% !important;
          max-width: 100% !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-daga88__hero-title {
        font-size: 2em;
      }
      .page-daga88__floating-cta {
        bottom: 15px;
        right: 15px;
      }
      .page-daga88__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
      }
    }
  