.page-the-story-of-diwata {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
    }

    /* HERO Section */
    .page-the-story-of-diwata__hero-section {
      position: relative;
      width: 100%;
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      overflow: hidden;
      padding-top: 10px; /* Small padding for visual separation from fixed header */
      box-sizing: border-box;
    }

    .page-the-story-of-diwata__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      filter: brightness(0.5); /* Allowed for background images, not product/content images */
    }

    .page-the-story-of-diwata__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.4);
      border-radius: 10px;
    }

    .page-the-story-of-diwata__hero-title {
      font-size: 2.5em;
      margin-bottom: 15px;
      color: #ffcc00; /* Gold-like color for emphasis */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-the-story-of-diwata__hero-description {
      font-size: 1.1em;
      margin-bottom: 30px;
      color: #fff;
    }

    .page-the-story-of-diwata__hero-cta {
      display: inline-block;
      background-color: #ffcc00;
      color: #333;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-the-story-of-diwata__hero-cta:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    /* General Section Styling */
    .page-the-story-of-diwata__intro-section,
    .page-the-story-of-diwata__quick-access-section,
    .page-the-story-of-diwata__games-section,
    .page-the-story-of-diwata__promotions-section,
    .page-the-story-of-diwata__security-section,
    .page-the-story-of-diwata__faq-section,
    .page-the-story-of-diwata__blog-section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-the-story-of-diwata__intro-title,
    .page-the-story-of-diwata__quick-access-title,
    .page-the-story-of-diwata__games-title,
    .page-the-story-of-diwata__promotions-title,
    .page-the-story-of-diwata__security-title,
    .page-the-story-of-diwata__faq-main-title,
    .page-the-story-of-diwata__blog-title {
      text-align: center;
      font-size: 2em;
      margin-bottom: 30px;
      color: #0056b3; /* A strong blue for headings */
    }

    /* Introduction Section */
    .page-the-story-of-diwata__intro-text {
      text-align: center;
      margin-bottom: 30px;
      font-size: 1.1em;
    }

    .page-the-story-of-diwata__intro-features {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .page-the-story-of-diwata__feature-item {
      flex: 1 1 calc(33% - 40px); /* For desktop, 3 items per row */
      max-width: calc(33% - 40px);
      text-align: center;
      padding: 20px;
      background-color: #f0f8ff;
      border-radius: 8px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
      box-sizing: border-box;
    }

    .page-the-story-of-diwata__feature-icon {
      width: 200px; /* Min size */
      height: auto;
      margin-bottom: 15px;
      max-width: 100%;
      height: auto;
      object-fit: contain;
    }

    .page-the-story-of-diwata__feature-heading {
      font-size: 1.3em;
      color: #0056b3;
      margin-bottom: 10px;
    }

    /* Quick Access Buttons */
    .page-the-story-of-diwata__quick-access-description {
      text-align: center;
      margin-bottom: 25px;
    }

    .page-the-story-of-diwata__quick-access-buttons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
    }

    .page-the-story-of-diwata__quick-access-btn {
      display: inline-block;
      background-color: #007bff;
      color: #fff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      flex-grow: 1;
      text-align: center;
      max-width: 280px; /* Limit button width on larger screens */
      box-sizing: border-box;
    }

    .page-the-story-of-diwata__quick-access-btn:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    /* Core Games Section */
    .page-the-story-of-diwata__games-description {
      text-align: center;
      margin-bottom: 30px;
    }

    .page-the-story-of-diwata__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      justify-content: center;
    }

    .page-the-story-of-diwata__game-card {
      background-color: #f9f9f9;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease;
    }

    .page-the-story-of-diwata__game-card:hover {
      transform: translateY(-5px);
    }

    .page-the-story-of-diwata__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      margin-bottom: 15px;
      max-width: 100%;
    }

    .page-the-story-of-diwata__game-heading {
      font-size: 1.2em;
      color: #0056b3;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-the-story-of-diwata__game-text {
      font-size: 0.95em;
      color: #555;
      margin-bottom: 20px;
      padding: 0 15px;
    }

    .page-the-story-of-diwata__game-cta {
      display: inline-block;
      background-color: #28a745;
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      margin-bottom: 15px;
      transition: background-color 0.3s ease;
    }

    .page-the-story-of-diwata__game-cta:hover {
      background-color: #218838;
    }

    /* Promotions Section */
    .page-the-story-of-diwata__promotions-description {
      text-align: center;
      margin-bottom: 30px;
    }

    .page-the-story-of-diwata__promo-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      justify-content: center;
    }

    .page-the-story-of-diwata__promo-item {
      background-color: #f0f8ff;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      padding-bottom: 20px;
    }

    .page-the-story-of-diwata__promo-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      margin-bottom: 15px;
      max-width: 100%;
    }

    .page-the-story-of-diwata__promo-heading {
      font-size: 1.3em;
      color: #0056b3;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-the-story-of-diwata__promo-text {
      font-size: 0.95em;
      color: #555;
      margin-bottom: 20px;
      padding: 0 15px;
    }

    .page-the-story-of-diwata__promo-cta {
      display: inline-block;
      background-color: #ffc107;
      color: #333;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-the-story-of-diwata__promo-cta:hover {
      background-color: #e0a800;
    }

    /* Security Section */
    .page-the-story-of-diwata__security-description {
      text-align: center;
      margin-bottom: 30px;
    }

    .page-the-story-of-diwata__security-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-bottom: 30px;
    }

    .page-the-story-of-diwata__security-item {
      background-color: #f8f9fa;
      padding: 20px;
      border-left: 5px solid #007bff;
      border-radius: 5px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    }

    .page-the-story-of-diwata__security-heading {
      font-size: 1.2em;
      color: #007bff;
      margin-bottom: 10px;
    }

    .page-the-story-of-diwata__security-text {
      font-size: 0.95em;
      color: #555;
    }

    .page-the-story-of-diwata__security-cta {
      display: block;
      width: fit-content;
      margin: 0 auto;
      background-color: #17a2b8;
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-the-story-of-diwata__security-cta:hover {
      background-color: #138496;
      transform: translateY(-2px);
    }

    /* FAQ Section */
    .page-the-story-of-diwata__faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-the-story-of-diwata__faq-item {
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      background-color: #fefefe;
    }

    .page-the-story-of-diwata__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #e9ecef;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-the-story-of-diwata__faq-question:hover {
      background-color: #dee2e6;
    }

    .page-the-story-of-diwata__faq-heading {
      font-size: 1.1em;
      color: #333;
      margin: 0;
      pointer-events: none; /* Prevent h3 from interfering with click event */
    }

    .page-the-story-of-diwata__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #007bff;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent span from interfering with click event */
    }

    .page-the-story-of-diwata__faq-item.active .page-the-story-of-diwata__faq-toggle {
      transform: rotate(45deg); /* Change + to X (or -) */
    }

    .page-the-story-of-diwata__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      box-sizing: border-box;
    }

    .page-the-story-of-diwata__faq-item.active .page-the-story-of-diwata__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px !important;
      opacity: 1;
    }

    .page-the-story-of-diwata__faq-answer p {
      margin: 0;
      color: #555;
      font-size: 0.95em;
    }

    /* Blog Section */
    .page-the-story-of-diwata__blog-description {
      text-align: center;
      margin-bottom: 30px;
    }

    .page-the-story-of-diwata__blog-articles {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      justify-content: center;
    }

    .page-the-story-of-diwata__blog-card {
      background-color: #f9f9f9;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s ease;
    }

    .page-the-story-of-diwata__blog-card:hover {
      transform: translateY(-5px);
    }

    .page-the-story-of-diwata__blog-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100%;
    }

    .page-the-story-of-diwata__blog-content-wrapper {
      padding: 15px;
    }

    .page-the-story-of-diwata__blog-card-title {
      font-size: 1.2em;
      margin-bottom: 10px;
    }

    .page-the-story-of-diwata__blog-card-title a {
      color: #0056b3;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-the-story-of-diwata__blog-card-title a:hover {
      color: #007bff;
      text-decoration: underline;
    }

    .page-the-story-of-diwata__blog-card-excerpt {
      font-size: 0.9em;
      color: #666;
      margin-bottom: 10px;
    }

    /* Responsive Adjustments */
    @media (max-width: 992px) {
      .page-the-story-of-diwata__hero-title {
        font-size: 2em;
      }
      .page-the-story-of-diwata__hero-description {
        font-size: 1em;
      }
      .page-the-story-of-diwata__intro-title,
      .page-the-story-of-diwata__quick-access-title,
      .page-the-story-of-diwata__games-title,
      .page-the-story-of-diwata__promotions-title,
      .page-the-story-of-diwata__security-title,
      .page-the-story-of-diwata__faq-main-title,
      .page-the-story-of-diwata__blog-title {
        font-size: 1.8em;
      }
    }

    @media (max-width: 768px) {
      .page-the-story-of-diwata__hero-section {
        min-height: 400px;
      }
      .page-the-story-of-diwata__hero-title {
        font-size: 1.8em;
      }
      .page-the-story-of-diwata__hero-description {
        font-size: 0.95em;
      }
      .page-the-story-of-diwata__hero-cta {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-the-story-of-diwata__intro-section,
      .page-the-story-of-diwata__quick-access-section,
      .page-the-story-of-diwata__games-section,
      .page-the-story-of-diwata__promotions-section,
      .page-the-story-of-diwata__security-section,
      .page-the-story-of-diwata__faq-section,
      .page-the-story-of-diwata__blog-section {
        padding: 30px 15px;
      }

      .page-the-story-of-diwata__intro-title,
      .page-the-story-of-diwata__quick-access-title,
      .page-the-story-of-diwata__games-title,
      .page-the-story-of-diwata__promotions-title,
      .page-the-story-of-diwata__security-title,
      .page-the-story-of-diwata__faq-main-title,
      .page-the-story-of-diwata__blog-title {
        font-size: 1.5em;
      }

      .page-the-story-of-diwata__intro-features {
        flex-direction: column;
        align-items: center;
      }
      .page-the-story-of-diwata__feature-item {
        flex: 1 1 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-the-story-of-diwata__quick-access-buttons {
        flex-direction: column;
      }
      .page-the-story-of-diwata__quick-access-btn {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-the-story-of-diwata__game-categories,
      .page-the-story-of-diwata__promo-list,
      .page-the-story-of-diwata__security-grid,
      .page-the-story-of-diwata__blog-articles {
        grid-template-columns: 1fr;
      }

      .page-the-story-of-diwata__game-card,
      .page-the-story-of-diwata__promo-item,
      .page-the-story-of-diwata__security-item,
      .page-the-story-of-diwata__blog-card {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-the-story-of-diwata__faq-question {
        padding: 12px 15px;
      }
      .page-the-story-of-diwata__faq-heading {
        font-size: 1em;
      }
      .page-the-story-of-diwata__faq-answer {
        padding: 0 15px;
      }
      .page-the-story-of-diwata__faq-item.active .page-the-story-of-diwata__faq-answer {
        padding: 15px !important;
      }
    }