
    .page-dacam67 {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0; /* Light text for dark background */
      background-color: #1a1a2e; /* Dark background */
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset if shared.css doesn't apply to body */
    }

    /* Hero Section */
    .page-dacam67__hero-section {
      position: relative;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 10px 20px 40px; /* Small top padding, assuming body handles header offset */
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-dacam67__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      filter: brightness(0.5); /* Darken image for text readability, allowed as it doesn't change color */
      max-width: 100%; /* Responsive image */
    }

    .page-dacam67__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background for text */
      border-radius: 10px;
    }

    .page-dacam67__hero-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: #e9c46a; /* Gold accent color */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-dacam67__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #f0f0f0;
    }

    .page-dacam67__primary-button {
      display: inline-block;
      background-color: #e76f51; /* Orange-red accent */
      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;
      border: none;
      cursor: pointer;
    }

    .page-dacam67__primary-button:hover {
      background-color: #f4a261; /* Lighter orange on hover */
      transform: translateY(-2px);
    }

    /* General Section Styling */
    .page-dacam67__section-title {
      font-size: 2.2em;
      color: #e9c46a;
      text-align: center;
      margin-bottom: 40px;
      padding-top: 60px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-dacam67__about-section,
    .page-dacam67__games-section,
    .page-dacam67__providers-section,
    .page-dacam67__how-to-join-section,
    .page-dacam67__faq-section,
    .page-dacam67__cta-section {
      padding: 20px;
      max-width: 1200px;
      margin: 0 auto;
      box-sizing: border-box;
    }

    .page-dacam67 p {
      margin-bottom: 15px;
      color: #f0f0f0;
    }

    .page-dacam67__keyword-highlight {
      color: #e76f51;
      font-weight: bold;
    }

    /* Feature List */
    .page-dacam67__feature-list {
      list-style: none;
      padding: 0;
      margin: 20px 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .page-dacam67__feature-item {
      background-color: #2a2a4a; /* Slightly lighter dark background */
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
    }

    /* Game Grid */
    .page-dacam67__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-dacam67__game-card {
      background-color: #2a2a4a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

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

    .page-dacam67__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100%; /* Responsive image */
    }

    .page-dacam67__game-title {
      font-size: 1.5em;
      color: #e9c46a;
      margin: 15px 0 10px;
      padding: 0 15px;
    }

    .page-dacam67__game-description {
      font-size: 0.95em;
      color: #ccc;
      padding: 0 15px 20px;
    }

    /* Provider Grid */
    .page-dacam67__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      text-align: center;
    }

    .page-dacam67__provider-item {
      background-color: #2a2a4a;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
    }

    .page-dacam67__provider-logo {
      width: 100px;
      height: 100px;
      object-fit: contain;
      margin-bottom: 10px;
      max-width: 100%; /* Responsive image */
    }

    /* How To Join Steps */
    .page-dacam67__step-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
      text-align: center;
    }

    .page-dacam67__step-item {
      background-color: #2a2a4a;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      position: relative;
      box-sizing: border-box;
    }

    .page-dacam67__step-number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      background-color: #e76f51;
      color: #fff;
      border-radius: 50%;
      font-size: 1.8em;
      font-weight: bold;
      margin-bottom: 20px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }

    .page-dacam67__step-title {
      font-size: 1.6em;
      color: #e9c46a;
      margin-bottom: 15px;
    }

    /* FAQ Section */
    .page-dacam67__faq-container {
      margin-top: 30px;
    }

    .page-dacam67__faq-item {
      background-color: #2a2a4a;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-dacam67__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 25px;
      background-color: #2a2a4a;
      color: #e9c46a;
      cursor: pointer;
      user-select: none;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-dacam67__faq-question:hover {
      background-color: #3a3a5a;
    }

    .page-dacam67__faq-question-title {
      margin: 0;
      flex-grow: 1;
      color: #e9c46a;
      pointer-events: none; /* Crucial for click event on parent div */
    }

    .page-dacam67__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Crucial for click event on parent div */
    }

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

    .page-dacam67__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;
      color: #ccc;
    }

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

    /* Call to Action */
    .page-dacam67__cta-section {
      text-align: center;
      padding-bottom: 80px;
    }

    .page-dacam67__cta-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #f0f0f0;
    }

    .page-dacam67__cta-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    /* Floating Buttons */
    .page-dacam67__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      background-color: rgba(0, 0, 0, 0.7);
      padding: 10px 20px;
      border-radius: 50px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    }

    .page-dacam67__floating-button {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 12px 25px;
      border-radius: 30px;
      font-weight: bold;
      font-size: 1em;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      box-sizing: border-box;
      color: #fff;
    }

    .page-dacam67__floating-register {
      background-color: #e76f51; /* Orange-red */
    }

    .page-dacam67__floating-register:hover {
      background-color: #f4a261;
      transform: translateY(-2px);
    }

    .page-dacam67__floating-login {
      background-color: #2a9d8f; /* Teal */
    }

    .page-dacam67__floating-login:hover {
      background-color: #48c7b8;
      transform: translateY(-2px);
    }


    /* Responsive Design */
    @media (max-width: 768px) {
      .page-dacam67 {
        padding-top: var(--header-offset, 122px); /* Ensure padding for smaller screens */
      }

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

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

      .page-dacam67__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
        padding-top: 40px;
      }

      .page-dacam67__feature-list,
      .page-dacam67__game-grid,
      .page-dacam67__provider-grid,
      .page-dacam67__step-list {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-dacam67__feature-item,
      .page-dacam67__game-card,
      .page-dacam67__provider-item,
      .page-dacam67__step-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important; /* Adjust padding for mobile */
      }

      .page-dacam67__feature-list,
      .page-dacam67__game-grid,
      .page-dacam67__provider-grid,
      .page-dacam67__step-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important; /* Adjust padding for mobile */
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-dacam67 p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-dacam67__game-image,
      .page-dacam67__provider-logo {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-dacam67__floating-buttons {
        width: calc(100% - 40px);
        bottom: 15px;
        padding: 8px 15px;
        gap: 10px;
      }

      .page-dacam67__floating-button {
        flex: 1;
        padding: 10px 15px;
        font-size: 0.9em;
      }

      .page-dacam67__faq-question {
        padding: 15px 20px;
        font-size: 1em;
      }

      .page-dacam67__faq-answer {
        padding: 15px 20px !important;
      }

      .page-dacam67__hero-content {
        padding: 15px;
      }
    }

    @media (max-width: 480px) {
      .page-dacam67__hero-title {
        font-size: 1.8em;
      }
      .page-dacam67__hero-description {
        font-size: 0.9em;
      }
      .page-dacam67__primary-button {
        padding: 12px 25px;
        font-size: 1em;
      }
    }
  