/* Base styles for the page-diwata-philippine-satellite scope */
    .page-diwata-philippine-satellite {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0; /* Light text for dark background */
      background-color: #1a1a2e; /* Dark background */
      line-height: 1.6;
      overflow-x: hidden; /* Prevent horizontal scroll */
    }

    /* Ensure images are responsive and within their containers */
    .page-diwata-philippine-satellite img {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    .page-diwata-philippine-satellite__cta-button {
      display: inline-block;
      background-color: #e63946; /* Red accent */
      color: #ffffff;
      padding: 12px 25px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1rem;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      text-align: center;
      border: none; /* Ensure no default button border */
      cursor: pointer;
    }

    .page-diwata-philippine-satellite__cta-button:hover {
      background-color: #c72c38;
      transform: translateY(-2px);
    }

    /* Section common styling */
    .page-diwata-philippine-satellite__hero-section,
    .page-diwata-philippine-satellite__promotions-section,
    .page-diwata-philippine-satellite__game-categories-section,
    .page-diwata-philippine-satellite__why-choose-us-section,
    .page-diwata-philippine-satellite__faq-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      box-sizing: border-box;
    }

    /* Hero Section */
    .page-diwata-philippine-satellite__hero-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      background: linear-gradient(135deg, #0f0c29, #302b63, #24243e); /* Dark gradient */
      padding-top: 10px; /* Decorative top spacing, assuming body has header offset */
      padding-bottom: 70px;
      position: relative;
      overflow: hidden;
    }

    .page-diwata-philippine-satellite__hero-content {
      z-index: 1;
      position: relative;
    }

    .page-diwata-philippine-satellite__hero-title {
      font-size: 3.2rem;
      color: #f0f8ff; /* Lighter white for title */
      margin-bottom: 20px;
      line-height: 1.2;
      text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    }

    .page-diwata-philippine-satellite__hero-description {
      font-size: 1.25rem;
      color: #c0c0c0;
      max-width: 800px;
      margin: 0 auto 30px auto;
    }

    .page-diwata-philippine-satellite__hero-buttons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
    }

    .page-diwata-philippine-satellite__hero-image-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      z-index: 0;
    }

    .page-diwata-philippine-satellite__hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.2; /* Subtler background image */
      filter: grayscale(100%); /* Make it less distracting */
    }

    /* Floating Buttons */
    .page-diwata-philippine-satellite__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-diwata-philippine-satellite__floating-button {
      background-color: #00bfff; /* Sky blue accent */
      color: #ffffff;
      padding: 12px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1rem;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      transition: background-color 0.3s ease, transform 0.3s ease;
      min-width: 120px;
      text-align: center;
    }

    .page-diwata-philippine-satellite__floating-button:hover {
      background-color: #009acd;
      transform: scale(1.05);
    }

    .page-diwata-philippine-satellite__floating-button--register {
      background-color: #28a745; /* Green for register */
    }
    .page-diwata-philippine-satellite__floating-button--register:hover {
      background-color: #218838;
    }

    /* Promotions Section */
    .page-diwata-philippine-satellite__promotions-section {
      background-color: #2a2a4e;
      text-align: center;
      border-radius: 10px;
      margin-top: 40px;
    }

    .page-diwata-philippine-satellite__promotions-title,
    .page-diwata-philippine-satellite__game-categories-title,
    .page-diwata-philippine-satellite__why-choose-us-title,
    .page-diwata-philippine-satellite__faq-main-title {
      font-size: 2.5rem;
      color: #f0f8ff;
      margin-bottom: 20px;
    }

    .page-diwata-philippine-satellite__promotions-intro,
    .page-diwata-philippine-satellite__game-categories-intro {
      font-size: 1.1rem;
      color: #c0c0c0;
      margin-bottom: 40px;
    }

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

    .page-diwata-philippine-satellite__promotion-card {
      background-color: #3b3b6b;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease;
      padding-bottom: 20px; /* Space for button */
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .page-diwata-philippine-satellite__promotion-card:hover {
      transform: translateY(-5px);
    }

    .page-diwata-philippine-satellite__promotion-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      margin-bottom: 20px;
    }

    .page-diwata-philippine-satellite__promotion-card-title {
      font-size: 1.8rem;
      color: #f0f8ff;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-diwata-philippine-satellite__promotion-card-description {
      font-size: 1rem;
      color: #c0c0c0;
      padding: 0 15px;
      margin-bottom: 20px;
      flex-grow: 1; /* Push button to bottom */
    }

    .page-diwata-philippine-satellite__promotion-button {
      margin-top: auto; /* Align button at bottom */
    }

    /* Game Categories Section */
    .page-diwata-philippine-satellite__game-categories-section {
      background-color: #1a1a2e;
      text-align: center;
      margin-top: 40px;
    }

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

    .page-diwata-philippine-satellite__game-card {
      background-color: #3b3b6b;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease;
      padding-bottom: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .page-diwata-philippine-satellite__game-card:hover {
      transform: translateY(-5px);
    }

    .page-diwata-philippine-satellite__game-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      margin-bottom: 15px;
    }

    .page-diwata-philippine-satellite__game-card-title {
      font-size: 1.6rem;
      color: #f0f8ff;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-diwata-philippine-satellite__game-card-description {
      font-size: 0.95rem;
      color: #c0c0c0;
      padding: 0 15px;
      margin-bottom: 20px;
      flex-grow: 1;
    }

    .page-diwata-philippine-satellite__game-button {
      margin-top: auto;
      font-size: 0.9rem;
      padding: 10px 20px;
    }

    /* Why Choose Us Section */
    .page-diwata-philippine-satellite__why-choose-us-section {
      background-color: #2a2a4e;
      text-align: center;
      margin-top: 40px;
      border-radius: 10px;
    }

    .page-diwata-philippine-satellite__why-choose-us-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-diwata-philippine-satellite__feature-item {
      background-color: #3b3b6b;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      text-align: center;
    }

    .page-diwata-philippine-satellite__feature-icon {
      width: 200px; /* Minimum allowed size */
      height: 200px; /* Minimum allowed size */
      margin: 0 auto 20px auto;
      object-fit: contain; /* Ensure the image fits without cropping */
    }


    .page-diwata-philippine-satellite__feature-title {
      font-size: 1.5rem;
      color: #f0f8ff;
      margin-bottom: 10px;
    }

    .page-diwata-philippine-satellite__feature-description {
      font-size: 1rem;
      color: #c0c0c0;
    }

    /* FAQ Section */
    .page-diwata-philippine-satellite__faq-section {
      background-color: #1a1a2e;
      margin-top: 40px;
    }

    .page-diwata-philippine-satellite__faq-main-title {
      text-align: center;
      margin-bottom: 40px;
    }

    .page-diwata-philippine-satellite__faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-diwata-philippine-satellite__faq-item {
      background-color: #3b3b6b;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      overflow: hidden; /* Important for max-height transition */
    }

    .page-diwata-philippine-satellite__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      cursor: pointer;
      background-color: #4a4a7d; /* Slightly lighter than item background */
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-diwata-philippine-satellite__faq-question:hover {
      background-color: #5a5a8d;
    }

    .page-diwata-philippine-satellite__faq-question-title {
      font-size: 1.2rem;
      color: #f0f8ff;
      margin: 0;
      pointer-events: none; /* Prevent title from blocking click */
    }

    .page-diwata-philippine-satellite__faq-toggle {
      font-size: 1.8rem;
      font-weight: bold;
      color: #00bfff; /* Accent color for toggle */
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
      line-height: 1; /* Ensure consistent height */
      width: 25px; /* Fixed width for consistent alignment */
      text-align: center;
    }

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

    .page-diwata-philippine-satellite__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding 0 */
      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: #3b3b6b;
      color: #c0c0c0;
    }

    .page-diwata-philippine-satellite__faq-item.active .page-diwata-philippine-satellite__faq-answer {
      max-height: 2000px !important; /* Sufficiently large value */
      padding: 20px !important; /* Full padding when active */
      opacity: 1;
    }

    .page-diwata-philippine-satellite__faq-answer p {
      margin: 0;
      font-size: 1rem;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-diwata-philippine-satellite__hero-title {
        font-size: 2.8rem;
      }
      .page-diwata-philippine-satellite__hero-description {
        font-size: 1.15rem;
      }
      .page-diwata-philippine-satellite__promotions-title,
      .page-diwata-philippine-satellite__game-categories-title,
      .page-diwata-philippine-satellite__why-choose-us-title,
      .page-diwata-philippine-satellite__faq-main-title {
        font-size: 2.2rem;
      }
    }

    @media (max-width: 768px) {
      /* General mobile padding */
      .page-diwata-philippine-satellite__hero-section,
      .page-diwata-philippine-satellite__promotions-section,
      .page-diwata-philippine-satellite__game-categories-section,
      .page-diwata-philippine-satellite__why-choose-us-section,
      .page-diwata-philippine-satellite__faq-section {
        padding: 40px 15px;
      }

      .page-diwata-philippine-satellite__hero-title {
        font-size: 2.2rem;
      }
      .page-diwata-philippine-satellite__hero-description {
        font-size: 1rem;
      }
      .page-diwata-philippine-satellite__hero-buttons {
        flex-direction: column;
        gap: 10px;
      }
      .page-diwata-philippine-satellite__cta-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 10px 20px;
        font-size: 0.95rem;
      }

      .page-diwata-philippine-satellite__floating-buttons {
        flex-direction: row;
        bottom: 10px;
        right: 10px;
        left: 10px;
        justify-content: space-around;
        gap: 5px;
      }
      .page-diwata-philippine-satellite__floating-button {
        flex: 1;
        min-width: unset;
        padding: 10px 15px;
        font-size: 1rem;
      }

      .page-diwata-philippine-satellite__promotions-title,
      .page-diwata-philippine-satellite__game-categories-title,
      .page-diwata-philippine-satellite__why-choose-us-title,
      .page-diwata-philippine-satellite__faq-main-title {
        font-size: 1.8rem;
      }
      .page-diwata-philippine-satellite__promotions-intro,
      .page-diwata-philippine-satellite__game-categories-intro {
        font-size: 1rem;
        margin-bottom: 20px;
      }

      .page-diwata-philippine-satellite__promotions-grid,
      .page-diwata-philippine-satellite__game-categories-grid,
      .page-diwata-philippine-satellite__why-choose-us-grid {
        grid-template-columns: 1fr; /* Single column for grids */
        gap: 20px;
      }

      /* List item mobile responsiveness */
      .page-diwata-philippine-satellite__promotion-card,
      .page-diwata-philippine-satellite__game-card,
      .page-diwata-philippine-satellite__feature-item,
      .page-diwata-philippine-satellite__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-diwata-philippine-satellite__promotion-card-description,
      .page-diwata-philippine-satellite__game-card-description,
      .page-diwata-philippine-satellite__feature-description,
      .page-diwata-philippine-satellite__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-diwata-philippine-satellite__faq-question {
        padding: 15px;
      }
      .page-diwata-philippine-satellite__faq-question-title {
        font-size: 1.1rem;
      }
      .page-diwata-philippine-satellite__faq-answer {
        padding: 0 15px;
      }
      .page-diwata-philippine-satellite__faq-item.active .page-diwata-philippine-satellite__faq-answer {
        padding: 15px !important;
      }
    }

    @media (max-width: 480px) {
      .page-diwata-philippine-satellite__hero-title {
        font-size: 1.8rem;
      }
      .page-diwata-philippine-satellite__promotions-title,
      .page-diwata-philippine-satellite__game-categories-title,
      .page-diwata-philippine-satellite__why-choose-us-title,
      .page-diwata-philippine-satellite__faq-main-title {
        font-size: 1.6rem;
      }
      .page-diwata-philippine-satellite__floating-button {
        padding: 8px 10px;
        font-size: 0.9rem;
      }
    }