/* General styling for the page */
.page-what-is-diwata-running-for {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0; /* Light text for dark background */
  background-color: #1a1a2e; /* Dark background */
  line-height: 1.6;
  padding-top: 10px; /* Small top padding for visual separation from header */
}

.page-what-is-diwata-running-for__section-title {
  font-size: 2.5em;
  color: #e94560; /* Accent color */
  text-align: center;
  margin-bottom: 40px;
  padding: 0 15px;
}

.page-what-is-diwata-running-for__hero-section {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-bottom: 60px;
  padding: 20px 0; /* Ensures some padding even if body has padding-top */
}

.page-what-is-diwata-running-for__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-what-is-diwata-running-for__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

.page-what-is-diwata-running-for__hero-title {
  font-size: 3.5em;
  color: #00b894; /* Another accent color */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-what-is-diwata-running-for__hero-description {
  font-size: 1.2em;
  color: #ffffff;
  margin-bottom: 30px;
}

.page-what-is-diwata-running-for__hero-cta-button {
  display: inline-block;
  background-color: #e94560;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  min-width: 200px;
}

.page-what-is-diwata-running-for__hero-cta-button:hover {
  background-color: #c2314a;
  transform: translateY(-3px);
}

/* Partner Logos Section */
.page-what-is-diwata-running-for__payment-providers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 40px 15px;
  background-color: #0f3460; /* Slightly different dark background */
  margin-bottom: 60px;
}
.page-what-is-diwata-running-for__payment-logo-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 100%;
}
.page-what-is-diwata-running-for__payment-logo {
  flex: 0 0 auto;
  width: 80px;
  height: 80px;
  max-width: 80px;
  max-height: 80px;
  box-sizing: border-box;
  object-fit: contain; /* Ensure logos scale correctly */
}

/* Introduction Section */
.page-what-is-diwata-running-for__intro-section {
  max-width: 1200px;
  margin: 0 auto 60px auto;
  padding: 0 15px;
  text-align: center;
}

.page-what-is-diwata-running-for__intro-text {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-what-is-diwata-running-for__intro-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.page-what-is-diwata-running-for__feature-item {
  background-color: #0f3460;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 350px;
  text-align: center;
  box-sizing: border-box;
}

.page-what-is-diwata-running-for__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-what-is-diwata-running-for__feature-title {
  font-size: 1.5em;
  color: #e94560;
  margin-bottom: 15px;
}

.page-what-is-diwata-running-for__feature-description {
  color: #c0c0c0;
}

/* Quick Access Section */
.page-what-is-diwata-running-for__quick-access {
  max-width: 1200px;
  margin: 0 auto 60px auto;
  padding: 0 15px;
  text-align: center;
}

.page-what-is-diwata-running-for__access-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-what-is-diwata-running-for__access-button {
  background-color: #00b894;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  min-width: 180px;
  text-align: center;
  box-sizing: border-box;
}

.page-what-is-diwata-running-for__access-button:hover {
  background-color: #008f71;
}

/* Games Section */
.page-what-is-diwata-running-for__games-section {
  max-width: 1200px;
  margin: 0 auto 60px auto;
  padding: 0 15px;
  text-align: center;
}

.page-what-is-diwata-running-for__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
}

.page-what-is-diwata-running-for__game-card {
  background-color: #0f3460;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.page-what-is-diwata-running-for__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-what-is-diwata-running-for__game-title {
  font-size: 1.8em;
  color: #e94560;
  margin: 20px 15px 10px 15px;
}

.page-what-is-diwata-running-for__game-description {
  color: #c0c0c0;
  padding: 0 15px 20px 15px;
  flex-grow: 1;
}

.page-what-is-diwata-running-for__game-button {
  display: block;
  background-color: #00b894;
  color: #ffffff;
  padding: 10px 15px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin: 0 15px 15px 15px;
  border-radius: 5px;
}

.page-what-is-diwata-running-for__game-button:hover {
  background-color: #008f71;
}

/* Promotions Section */
.page-what-is-diwata-running-for__promotions-section {
  max-width: 1200px;
  margin: 0 auto 60px auto;
  padding: 0 15px;
  text-align: center;
}

.page-what-is-diwata-running-for__promotions-intro {
  font-size: 1.1em;
  color: #e0e0e0;
  margin-bottom: 40px;
}

.page-what-is-diwata-running-for__promotion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-content: center;
}

.page-what-is-diwata-running-for__promotion-card {
  background-color: #0f3460;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.page-what-is-diwata-running-for__promotion-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.page-what-is-diwata-running-for__promotion-title {
  font-size: 1.6em;
  color: #00b894;
  margin: 20px 15px 10px 15px;
}

.page-what-is-diwata-running-for__promotion-description {
  color: #c0c0c0;
  padding: 0 15px 20px 15px;
  flex-grow: 1;
}

.page-what-is-diwata-running-for__promotion-button {
  display: block;
  background-color: #e94560;
  color: #ffffff;
  padding: 10px 15px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin: 0 15px 15px 15px;
  border-radius: 5px;
}

.page-what-is-diwata-running-for__promotion-button:hover {
  background-color: #c2314a;
}

/* Security and Support Section */
.page-what-is-diwata-running-for__security-support {
  max-width: 1200px;
  margin: 0 auto 60px auto;
  padding: 0 15px;
}

.page-what-is-diwata-running-for__security-intro {
  font-size: 1.1em;
  color: #e0e0e0;
  text-align: center;
  margin-bottom: 40px;
}

.page-what-is-diwata-running-for__security-features {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.page-what-is-diwata-running-for__security-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.page-what-is-diwata-running-for__security-list-item {
  background-color: #0f3460;
  border-left: 5px solid #00b894;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  color: #e0e0e0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
}

.page-what-is-diwata-running-for__security-list-item strong {
  color: #e94560;
}

.page-what-is-diwata-running-for__security-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

/* FAQ Section */
.page-what-is-diwata-running-for__faq-section {
  max-width: 900px;
  margin: 0 auto 60px auto;
  padding: 0 15px;
}

.page-what-is-diwata-running-for__faq-container {
  background-color: #0f3460;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.page-what-is-diwata-running-for__faq-item {
  border-bottom: 1px solid #2e3b55;
}

.page-what-is-diwata-running-for__faq-item:last-child {
  border-bottom: none;
}

.page-what-is-diwata-running-for__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #1a1a2e;
  transition: background-color 0.3s ease;
  user-select: none;
}

.page-what-is-diwata-running-for__faq-question:hover {
  background-color: #2e3b55;
}

.page-what-is-diwata-running-for__faq-q-text {
  font-size: 1.2em;
  color: #00b894;
  margin: 0;
  pointer-events: none; /* Prevent text from blocking click */
}

.page-what-is-diwata-running-for__faq-toggle {
  font-size: 1.8em;
  color: #e94560;
  font-weight: bold;
  transition: transform 0.3s ease;
  pointer-events: none; /* Prevent icon from blocking click */
}

.page-what-is-diwata-running-for__faq-item.active .page-what-is-diwata-running-for__faq-toggle {
  transform: rotate(45deg); /* Plus sign rotates to form an X or minus */
}

.page-what-is-diwata-running-for__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  background-color: #0f3460;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  color: #c0c0c0;
  opacity: 0;
}

.page-what-is-diwata-running-for__faq-item.active .page-what-is-diwata-running-for__faq-answer {
  max-height: 2000px !important; /* Sufficiently large to contain content */
  padding: 20px 25px !important;
  opacity: 1;
}

.page-what-is-diwata-running-for__faq-answer p {
  margin: 0;
}

/* Blog Section */
.page-what-is-diwata-running-for__blog-section {
  max-width: 1200px;
  margin: 0 auto 60px auto;
  padding: 0 15px;
  text-align: center;
}

.page-what-is-diwata-running-for__blog-intro {
  font-size: 1.1em;
  color: #e0e0e0;
  margin-bottom: 40px;
}

.page-what-is-diwata-running-for__blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-content: center;
}

.page-what-is-diwata-running-for__blog-post {
  background-color: #0f3460;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  text-align: left;
  box-sizing: border-box;
}

.page-what-is-diwata-running-for__blog-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.page-what-is-diwata-running-for__blog-post-title {
  font-size: 1.4em;
  color: #00b894;
  margin: 20px 15px 10px 15px;
}

.page-what-is-diwata-running-for__blog-post-title a {
  color: #00b894;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-what-is-diwata-running-for__blog-post-title a:hover {
  color: #008f71;
}

.page-what-is-diwata-running-for__blog-post-meta {
  font-size: 0.9em;
  color: #888;
  margin: 0 15px 10px 15px;
}

.page-what-is-diwata-running-for__blog-post-excerpt {
  color: #c0c0c0;
  padding: 0 15px 20px 15px;
  flex-grow: 1;
}

.page-what-is-diwata-running-for__blog-read-more {
  display: block;
  background-color: #e94560;
  color: #ffffff;
  padding: 10px 15px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin: 0 15px 15px 15px;
  border-radius: 5px;
  text-align: center;
}

.page-what-is-diwata-running-for__blog-read-more:hover {
  background-color: #c2314a;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-what-is-diwata-running-for__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-what-is-diwata-running-for__hero-section {
    min-height: 400px;
    margin-bottom: 40px;
  }

  .page-what-is-diwata-running-for__hero-title {
    font-size: 2.5em;
  }

  .page-what-is-diwata-running-for__hero-description {
    font-size: 1em;
  }

  .page-what-is-diwata-running-for__hero-cta-button {
    font-size: 1.1em;
    padding: 12px 25px;
  }

  /* Partner Logos - Specific mobile CSS provided in prompt */
  .page-what-is-diwata-running-for__payment-providers {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding: 30px 10px;
    margin-bottom: 40px;
  }
  .page-what-is-diwata-running-for__payment-logo,
  .page-what-is-diwata-running-for__payment-logo img {
    width: 80px !important;
    height: 80px !important;
    max-width: 80px !important;
    max-height: 80px !important;
  }

  .page-what-is-diwata-running-for__intro-section,
  .page-what-is-diwata-running-for__quick-access,
  .page-what-is-diwata-running-for__games-section,
  .page-what-is-diwata-running-for__promotions-section,
  .page-what-is-diwata-running-for__security-support,
  .page-what-is-diwata-running-for__faq-section,
  .page-what-is-diwata-running-for__blog-section {
    margin-bottom: 40px;
    padding: 0 10px;
  }

  .page-what-is-diwata-running-for__feature-item {
    max-width: 100%;
    padding: 25px;
  }

  .page-what-is-diwata-running-for__access-links {
    flex-direction: column;
  }

  .page-what-is-diwata-running-for__access-button {
    width: 100%;
    max-width: 300px; /* Limit width for very narrow screens */
    margin: 0 auto;
    padding: 10px 15px;
    box-sizing: border-box; /* Ensure padding is included in width */
  }

  .page-what-is-diwata-running-for__game-categories,
  .page-what-is-diwata-running-for__promotion-grid,
  .page-what-is-diwata-running-for__blog-grid {
    grid-template-columns: 1fr; /* Single column for mobile */
  }

  .page-what-is-diwata-running-for__security-features {
    flex-direction: column;
  }

  .page-what-is-diwata-running-for__security-list {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }
  .page-what-is-diwata-running-for__security-list-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;
  }

  .page-what-is-diwata-running-for__security-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-top: 30px;
  }

  .page-what-is-diwata-running-for__faq-question {
    padding: 15px 20px;
  }

  .page-what-is-diwata-running-for__faq-q-text {
    font-size: 1.1em;
  }

  .page-what-is-diwata-running-for__faq-toggle {
    font-size: 1.5em;
  }

  .page-what-is-diwata-running-for__faq-answer {
    padding: 0 20px;
  }

  .page-what-is-diwata-running-for__faq-item.active .page-what-is-diwata-running-for__faq-answer {
    padding: 15px 20px !important;
  }

  /* Image responsive optimization */
  .page-what-is-diwata-running-for__hero-image,
  .page-what-is-diwata-running-for__feature-icon,
  .page-what-is-diwata-running-for__game-image,
  .page-what-is-diwata-running-for__promotion-image,
  .page-what-is-diwata-running-for__security-image,
  .page-what-is-diwata-running-for__blog-image {
    max-width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-what-is-diwata-running-for__game-card,
  .page-what-is-diwata-running-for__promotion-card,
  .page-what-is-diwata-running-for__blog-post {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
}