
    /* Base styles for the page */
    .page-dagagacam67 {
      font-family: 'Arial', sans-serif;
      background-color: #000000;
      color: #FFFFFF;
      line-height: 1.6;
      padding-bottom: 80px; /* Space for potential fixed footer/ad */
    }

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

    .page-dagagacam67__section {
      padding: 40px 20px;
      margin-bottom: 30px;
      border-radius: 8px;
      background-color: #1a1a1a;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-dagagacam67__hero-section {
      text-align: center;
      padding-top: 160px; /* Space for fixed header */
      padding-bottom: 40px;
      background-color: #000000;
      margin-bottom: 0;
      border-radius: 0;
      box-shadow: none;
    }

    .page-dagagacam67__hero-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-bottom: 30px;
    }

    .page-dagagacam67__hero-image {
      display: block;
      max-width: 100%;
      height: auto;
      margin: 0 auto;
      border-radius: 8px;
      object-fit: cover; /* Ensures image covers the area without distortion */
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    }

    .page-dagagacam67__hero-title {
      font-size: 2.8em;
      color: #FFD700;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

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

    .page-dagagacam67__button {
      display: inline-block;
      background-color: #FFD700;
      color: #000000;
      padding: 15px 30px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-dagagacam67__button:hover {
      background-color: #FFA500;
      transform: translateY(-2px);
    }
    
    .page-dagagacam67__button--floating {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        box-shadow: 0 4px 10px rgba(0,0,0,0.4);
        animation: page-dagagacam67__pulse 2s infinite;
    }

    @keyframes page-dagagacam67__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);
        }
    }

    .page-dagagacam67__heading {
      font-size: 2.2em;
      color: #FFD700;
      text-align: center;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-dagagacam67__sub-heading {
      font-size: 1.6em;
      color: #FFFFFF;
      margin-bottom: 20px;
      border-left: 5px solid #FFD700;
      padding-left: 15px;
    }

    .page-dagagacam67__text-content {
      font-size: 1.1em;
      color: #E0E0E0;
      margin-bottom: 20px;
    }

    .page-dagagacam67__list {
      list-style: none;
      padding: 0;
      margin-bottom: 20px;
    }

    .page-dagagacam67__list-item {
      background-color: #2a2a2a;
      margin-bottom: 10px;
      padding: 15px 20px;
      border-radius: 5px;
      display: flex;
      align-items: center;
      font-size: 1.05em;
      color: #FFFFFF;
      border-left: 3px solid #FFD700;
    }

    .page-dagagacam67__list-item::before {
      content: "✓";
      color: #FFD700;
      font-weight: bold;
      margin-right: 10px;
    }

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

    .page-dagagacam67__game-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
    }

    .page-dagagacam67__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    .page-dagagacam67__game-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        height: 200px; /* Fixed height for image consistency */
    }

    .page-dagagacam67__game-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .page-dagagacam67__game-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-dagagacam67__game-title {
      font-size: 1.4em;
      color: #FFD700;
      margin-bottom: 10px;
    }

    .page-dagagacam67__game-description {
      font-size: 0.95em;
      color: #E0E0E0;
      margin-bottom: 15px;
    }

    .page-dagagacam67__game-link {
        display: block;
        background-color: #FFD700;
        color: #000000;
        padding: 10px 15px;
        border-radius: 20px;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.9em;
        transition: background-color 0.3s ease;
        margin-top: auto; /* Pushes button to the bottom */
    }

    .page-dagagacam67__game-link:hover {
        background-color: #FFA500;
    }

    /* FAQ Section Styles */
    .page-dagagacam67__faq-section {
      background-color: #1a1a1a;
      padding: 40px 20px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-dagagacam67__faq-heading {
      font-size: 2.2em;
      color: #FFD700;
      text-align: center;
      margin-bottom: 30px;
    }

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

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

    .page-dagagacam67__faq-question:hover {
      background-color: #444444;
    }

    .page-dagagacam67__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #FFFFFF;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-dagagacam67__faq-toggle {
      font-size: 1.8em;
      color: #FFD700;
      font-weight: bold;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-dagagacam67__faq-item.active .page-dagagacam67__faq-toggle {
      transform: rotate(45deg); /* Changes + to x or - */
    }

    .page-dagagacam67__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: #E0E0E0;
      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-dagagacam67__faq-item.active .page-dagagacam67__faq-answer {
      max-height: 2000px !important; /* Sufficiently large value */
      padding: 20px 25px !important;
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-dagagacam67__container {
        padding: 15px;
      }

      .page-dagagacam67__hero-section {
        padding-top: 140px; /* Adjust for mobile fixed header */
        padding-bottom: 30px;
      }

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

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

      .page-dagagacam67__heading {
        font-size: 1.8em;
      }

      .page-dagagacam67__sub-heading {
        font-size: 1.4em;
      }

      .page-dagagacam67__text-content,
      .page-dagagacam67__list-item,
      .page-dagagacam67__game-description,
      .page-dagagacam67__game-link,
      .page-dagagacam67__faq-question h3,
      .page-dagagacam67__faq-answer {
        font-size: 0.95em;
      }
      
      .page-dagagacam67__button--floating {
        bottom: 15px;
        right: 15px;
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-dagagacam67__game-grid {
        grid-template-columns: 1fr;
      }
      
      /* Image responsiveness for mobile */
      .page-dagagacam67__hero-image,
      .page-dagagacam67__game-image {
          max-width: 100% !important;
          height: auto !important;
      }
      .page-dagagacam67__hero-image-wrapper,
      .page-dagagacam67__game-image-wrapper {
          width: 100% !important;
          max-width: 100% !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
        .page-dagagacam67__hero-title {
            font-size: 1.8em;
        }
        .page-dagagacam67__heading {
            font-size: 1.6em;
        }
        .page-dagagacam67__button {
            padding: 12px 25px;
            font-size: 1em;
        }
        .page-dagagacam67__faq-question {
            padding: 15px 20px;
        }
        .page-dagagacam67__faq-answer {
            padding: 15px 20px;
        }
    }
  