.page-diwata-satellite-dost {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0;
  background-color: #1a1a2e; /* Dark background for gaming theme */
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 10px; /* Small padding for hero section, body padding-top handles header offset */
}

.page-diwata-satellite-dost__section-title {
  font-size: 2.2rem;
  color: #e94560; /* Accent color */
  text-align: center;
  margin-bottom: 40px;
  padding: 0 15px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .page-diwata-satellite-dost__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
}

/* Hero Section */
.page-diwata-satellite-dost__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 80vh;
  padding: 60px 20px;
  overflow: hidden;
}

.page-diwata-satellite-dost__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-diwata-satellite-dost__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
  max-width: 100% !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}

.page-diwata-satellite-dost__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  color: #ffffff;
}

.page-diwata-satellite-dost__hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
  font-weight: bold;
}

.page-diwata-satellite-dost__hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 40px;
  color: #cccccc;
}

.page-diwata-satellite-dost__hero-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-diwata-satellite-dost__hero-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
  width: 100%; /* Default to full width on mobile */
  max-width: 250px; /* Max width for buttons */
}

.page-diwata-satellite-dost__hero-button--primary {
  background-color: #e94560; /* Accent color */
  color: #ffffff;
  border: 2px solid #e94560;
}

.page-diwata-satellite-dost__hero-button--primary:hover {
  background-color: #ff6b82;
  transform: translateY(-3px);
}

.page-diwata-satellite-dost__hero-button--secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-diwata-satellite-dost__hero-button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .page-diwata-satellite-dost__hero-section {
    min-height: 60vh;
    padding: 40px 15px;
  }
  .page-diwata-satellite-dost__hero-title {
    font-size: 2.2rem;
  }
  .page-diwata-satellite-dost__hero-subtitle {
    font-size: 1.1rem;
  }
  .page-diwata-satellite-dost__hero-cta-group {
    flex-direction: column;
    align-items: center;
  }
  .page-diwata-satellite-dost__hero-button {
    width: 100%;
    max-width: 280px;
  }
}

@media (min-width: 769px) {
  .page-diwata-satellite-dost__hero-button {
    width: auto;
  }
}

/* Introduction Section */
.page-diwata-satellite-dost__introduction-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #0f3460; /* Slightly lighter dark blue */
  border-radius: 12px;
  margin-top: 40px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-diwata-satellite-dost__intro-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-diwata-satellite-dost__intro-paragraph {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #c5c5c5;
}

.page-diwata-satellite-dost__intro-paragraph strong {
  color: #e94560;
}

@media (max-width: 768px) {
  .page-diwata-satellite-dost__introduction-section {
    padding: 50px 15px;
    margin-top: 20px;
  }
  .page-diwata-satellite-dost__intro-paragraph {
    font-size: 1rem;
  }
}

/* Quick Access Section */
.page-diwata-satellite-dost__quick-access-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-diwata-satellite-dost__access-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-diwata-satellite-dost__access-button {
  display: block; /* Ensures full width on small screens */
  background-color: #533483; /* Another accent color */
  color: #ffffff;
  padding: 15px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
  width: 100%;
  max-width: 280px;
}

.page-diwata-satellite-dost__access-button:hover {
  background-color: #6a4f9f;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .page-diwata-satellite-dost__quick-access-section {
    padding: 50px 15px;
  }
  .page-diwata-satellite-dost__access-button {
    font-size: 0.95rem;
    max-width: 100%;
  }
}

/* Games Section */
.page-diwata-satellite-dost__games-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-diwata-satellite-dost__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-diwata-satellite-dost__game-card {
  background-color: #0f3460;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
}

.page-diwata-satellite-dost__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.page-diwata-satellite-dost__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  max-width: 100% !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}

.page-diwata-satellite-dost__game-title {
  font-size: 1.5rem;
  color: #e94560;
  margin: 20px 15px 10px;
  font-weight: bold;
}

.page-diwata-satellite-dost__game-description {
  font-size: 0.95rem;
  color: #c5c5c5;
  padding: 0 15px 20px;
  flex-grow: 1; /* Ensures cards with less text align buttons */
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
  word-break: break-word !important;
}

.page-diwata-satellite-dost__game-button {
  display: block;
  background-color: #e94560;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 0 0 12px 12px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.page-diwata-satellite-dost__game-button:hover {
  background-color: #ff6b82;
}

@media (max-width: 768px) {
  .page-diwata-satellite-dost__games-section {
    padding: 50px 15px;
  }
  .page-diwata-satellite-dost__game-categories {
    grid-template-columns: 1fr;
  }
  .page-diwata-satellite-dost__game-description {
    font-size: 0.9rem;
  }
}

/* Promotions Section */
.page-diwata-satellite-dost__promotions-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-diwata-satellite-dost__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-diwata-satellite-dost__promo-card {
  background-color: #0f3460;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
}

.page-diwata-satellite-dost__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.page-diwata-satellite-dost__promo-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  max-width: 100% !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}

.page-diwata-satellite-dost__promo-title {
  font-size: 1.6rem;
  color: #e94560;
  margin: 20px 15px 10px;
  font-weight: bold;
}

.page-diwata-satellite-dost__promo-description {
  font-size: 0.95rem;
  color: #c5c5c5;
  padding: 0 15px 20px;
  flex-grow: 1;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
  word-break: break-word !important;
}

.page-diwata-satellite-dost__promo-button {
  display: block;
  background-color: #533483;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 0 0 12px 12px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.page-diwata-satellite-dost__promo-button:hover {
  background-color: #6a4f9f;
}

@media (max-width: 768px) {
  .page-diwata-satellite-dost__promotions-section {
    padding: 50px 15px;
  }
  .page-diwata-satellite-dost__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-diwata-satellite-dost__promo-description {
    font-size: 0.9rem;
  }
}

/* Security Section */
.page-diwata-satellite-dost__security-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-diwata-satellite-dost__security-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.page-diwata-satellite-dost__feature-item {
  background-color: #0f3460;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  flex: 1 1 calc(33% - 40px); /* Approx 3 items per row */
  min-width: 280px; /* Minimum width for item */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  width: 100%; /* For mobile */
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
  word-break: break-word !important;
}

.page-diwata-satellite-dost__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  max-width: 100% !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}

.page-diwata-satellite-dost__feature-title {
  font-size: 1.4rem;
  color: #e94560;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-diwata-satellite-dost__feature-description {
  font-size: 0.95rem;
  color: #c5c5c5;
}

@media (max-width: 768px) {
  .page-diwata-satellite-dost__security-section {
    padding: 50px 15px;
  }
  .page-diwata-satellite-dost__security-features {
    flex-direction: column;
    align-items: center;
  }
  .page-diwata-satellite-dost__feature-item {
    flex: 1 1 100%;
    max-width: 100%;
    width: 100% !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 25px 15px !important;
  }
  .page-diwata-satellite-dost__feature-title {
    font-size: 1.2rem;
  }
  .page-diwata-satellite-dost__feature-description {
    font-size: 0.9rem;
  }
}

/* FAQ Section */
.page-diwata-satellite-dost__faq-section {
  padding: 80px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-diwata-satellite-dost__faq-list {
  background-color: #0f3460;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
}

.page-diwata-satellite-dost__faq-item {
  border-bottom: 1px solid #2a2a4a;
}

.page-diwata-satellite-dost__faq-item:last-child {
  border-bottom: none;
}

.page-diwata-satellite-dost__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  user-select: none;
  background-color: #1a1a2e;
  transition: background-color 0.3s ease;
  box-sizing: border-box;
  width: 100%;
}

.page-diwata-satellite-dost__faq-question:hover {
  background-color: #2a2a4a;
}

.page-diwata-satellite-dost__faq-question-text {
  font-size: 1.15rem;
  color: #ffffff;
  margin: 0;
  pointer-events: none; /* Prevents text from blocking click event */
  flex-grow: 1;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
  word-break: break-word !important;
}

.page-diwata-satellite-dost__faq-toggle {
  font-size: 1.8rem;
  color: #e94560;
  margin-left: 15px;
  transition: transform 0.3s ease;
  pointer-events: none; /* Prevents icon from blocking click event */
  font-weight: bold;
}

.page-diwata-satellite-dost__faq-item.active .page-diwata-satellite-dost__faq-toggle {
  transform: rotate(45deg); /* Change + to X (or similar) */
}

.page-diwata-satellite-dost__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  background-color: #0f3460;
  box-sizing: border-box;
  width: 100%;
}

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

.page-diwata-satellite-dost__faq-answer-text {
  font-size: 1rem;
  color: #c5c5c5;
  margin: 0;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
  word-break: break-word !important;
}

@media (max-width: 768px) {
  .page-diwata-satellite-dost__faq-section {
    padding: 50px 15px;
  }
  .page-diwata-satellite-dost__faq-question {
    padding: 15px 15px;
  }
  .page-diwata-satellite-dost__faq-question-text {
    font-size: 1rem;
  }
  .page-diwata-satellite-dost__faq-toggle {
    font-size: 1.5rem;
  }
  .page-diwata-satellite-dost__faq-answer {
    padding: 0 15px;
  }
  .page-diwata-satellite-dost__faq-item.active .page-diwata-satellite-dost__faq-answer {
    padding: 15px 15px !important;
  }
  .page-diwata-satellite-dost__faq-answer-text {
    font-size: 0.95rem;
  }
}

/* Blog Section */
.page-diwata-satellite-dost__blog-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-diwata-satellite-dost__blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-diwata-satellite-dost__blog-card {
  background-color: #0f3460;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
}

.page-diwata-satellite-dost__blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.page-diwata-satellite-dost__blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  max-width: 100% !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}

.page-diwata-satellite-dost__blog-title {
  font-size: 1.4rem;
  margin: 20px 15px 10px;
  font-weight: bold;
}

.page-diwata-satellite-dost__blog-title a {
  color: #e94560;
  text-decoration: none;
  transition: color 0.3s ease;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
  word-break: break-word !important;
}

.page-diwata-satellite-dost__blog-title a:hover {
  color: #ff6b82;
}

.page-diwata-satellite-dost__blog-excerpt {
  font-size: 0.95rem;
  color: #c5c5c5;
  padding: 0 15px 20px;
  flex-grow: 1;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
  word-break: break-word !important;
}

.page-diwata-satellite-dost__blog-read-more {
  display: block;
  background-color: #533483;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 0 0 12px 12px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.page-diwata-satellite-dost__blog-read-more:hover {
  background-color: #6a4f9f;
}

@media (max-width: 768px) {
  .page-diwata-satellite-dost__blog-section {
    padding: 50px 15px;
  }
  .page-diwata-satellite-dost__blog-grid {
    grid-template-columns: 1fr;
  }
  .page-diwata-satellite-dost__blog-title {
    font-size: 1.2rem;
  }
  .page-diwata-satellite-dost__blog-excerpt {
    font-size: 0.9rem;
  }
}

/* General responsive rules for list-like items */
.page-diwata-satellite-dost__game-categories,
.page-diwata-satellite-dost__promo-grid,
.page-diwata-satellite-dost__security-features,
.page-diwata-satellite-dost__blog-grid {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  padding: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.page-diwata-satellite-dost__game-card,
.page-diwata-satellite-dost__promo-card,
.page-diwata-satellite-dost__blog-card {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}