
    :root {
      --primary-color: #007bff;
      --secondary-color: #6c757d;
      --accent-color: #ffc107;
      --background-light: #f8f9fa;
      --background-dark: #343a40;
      --text-color-light: #212529;
      --text-color-dark: #f8f9fa;
      --border-color: #dee2e6;
      --header-offset: 122px; /* Default value, shared.css should define this */
    }

    /* Basic Reset & Typography for page content */
    .page-de-ve-69 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--text-color-light);
      background-color: var(--background-light);
      /* padding-top: var(--header-offset, 122px); */ /* This is handled by body { padding-top: var(--header-offset); } in shared.css */
    }

    .page-de-ve-69 h1, .page-de-ve-69 h2, .page-de-ve-69 h3, .page-de-ve-69 h4, .page-de-ve-69 h5, .page-de-ve-69 h6 {
      color: var(--background-dark);
      margin-bottom: 1rem;
      font-weight: 700;
    }

    .page-de-ve-69 h1 { font-size: 2.5rem; text-align: center; }
    .page-de-ve-69 h2 { font-size: 2rem; border-bottom: 2px solid var(--primary-color); padding-bottom: 0.5rem; margin-top: 2rem; }
    .page-de-ve-69 h3 { font-size: 1.75rem; margin-top: 1.5rem; }
    .page-de-ve-69 p { margin-bottom: 1rem; }

    .page-de-ve-69 strong {
      color: var(--primary-color);
    }

    /* Sections */
    .page-de-ve-69__section {
      padding: 40px 20px;
      margin: 0 auto;
      max-width: 1200px;
      box-sizing: border-box;
    }

    .page-de-ve-69__section--light {
      background-color: var(--background-light);
    }

    .page-de-ve-69__section--dark {
      background-color: var(--background-dark);
      color: var(--text-color-dark);
    }
    .page-de-ve-69__section--dark h1,
    .page-de-ve-69__section--dark h2,
    .page-de-ve-69__section--dark h3,
    .page-de-ve-69__section--dark strong {
      color: var(--accent-color);
    }

    /* Hero Section */
    .page-de-ve-69__hero-section {
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('[GALLERY:hero:1920x1080:lotto,betting,numbers,abstract]') center center / cover no-repeat;
      color: var(--text-color-dark);
      text-align: center;
      padding: 100px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 400px;
      position: relative;
      overflow: hidden;
      padding-top: 10px; /* Small top padding, assuming body already has offset */
    }

    .page-de-ve-69__hero-section-content {
      z-index: 1;
      max-width: 800px;
    }

    .page-de-ve-69__hero-section h1 {
      font-size: 3.5rem;
      margin-bottom: 1rem;
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    }

    .page-de-ve-69__hero-section p {
      font-size: 1.25rem;
      margin-bottom: 2rem;
      color: #eee;
    }

    .page-de-ve-69__cta-button {
      background-color: var(--accent-color);
      color: var(--background-dark);
      padding: 15px 30px;
      border-radius: 5px;
      font-size: 1.1rem;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
      display: inline-block;
      cursor: pointer;
      border: none;
    }

    .page-de-ve-69__cta-button:hover {
      background-color: #e0a800;
    }

    /* Content Grid */
    .page-de-ve-69__content-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-de-ve-69__grid-item {
      background-color: #fff;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .page-de-ve-69__grid-item:hover {
      transform: translateY(-5px);
    }

    .page-de-ve-69__grid-item img {
      max-width: 100%;
      height: auto;
      border-radius: 5px;
      margin-bottom: 15px;
      object-fit: cover;
      min-width: 200px; /* Minimum size */
      min-height: 200px; /* Minimum size */
      width: 400px; /* Example size */
      height: 300px; /* Example size */
    }
    .page-de-ve-69__grid-item h3 {
      color: var(--primary-color);
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-de-ve-69__grid-item p {
      font-size: 0.95rem;
    }

    /* Promotion Banner */
    .page-de-ve-69__promo-banner {
      background-color: var(--primary-color);
      color: var(--text-color-dark);
      text-align: center;
      padding: 30px 20px;
      margin-top: 40px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .page-de-ve-69__promo-banner h2 {
      color: #fff;
      font-size: 2.2rem;
      margin-bottom: 1rem;
      border-bottom: none;
      padding-bottom: 0;
    }

    .page-de-ve-69__promo-banner p {
      font-size: 1.1rem;
      margin-bottom: 1.5rem;
    }

    .page-de-ve-69__promo-link {
      background-color: var(--accent-color);
      color: var(--background-dark);
      padding: 12px 25px;
      border-radius: 5px;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
      display: inline-block;
    }

    .page-de-ve-69__promo-link:hover {
      background-color: #e0a800;
    }

    /* Feature List (for the ul/li section) */
    .page-de-ve-69__feature-list {
      list-style: none;
      padding: 0;
      margin-top: 20px;
    }

    .page-de-ve-69__list-item {
      background-color: #fff;
      padding: 15px 20px;
      margin-bottom: 10px;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.05);
      display: flex;
      align-items: center;
      font-size: 1.05rem;
      box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-de-ve-69__list-item img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      margin-right: 15px;
      object-fit: cover;
      min-width: 50px; /* Ensure images are not too small */
      min-height: 50px;
    }
    .page-de-ve-69__list-item strong {
      color: var(--background-dark);
    }

    /* FAQ Section */
    .page-de-ve-69__faq-section {
      padding: 40px 20px;
      max-width: 900px;
      margin: 40px auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      box-sizing: border-box;
    }

    .page-de-ve-69__faq-section h2 {
      text-align: center;
      color: var(--primary-color);
      margin-bottom: 30px;
      border-bottom: 2px solid var(--primary-color);
      padding-bottom: 10px;
    }

    .page-de-ve-69__faq-item {
      border-bottom: 1px solid var(--border-color);
      margin-bottom: 10px;
    }

    .page-de-ve-69__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .page-de-ve-69__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px;
      cursor: pointer;
      user-select: none;
      background-color: var(--background-light);
      border-radius: 5px;
      transition: background-color 0.3s ease;
    }

    .page-de-ve-69__faq-question:hover {
      background-color: #e9ecef;
    }

    .page-de-ve-69__faq-question h3 {
      margin: 0;
      font-size: 1.15rem;
      color: var(--text-color-light);
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-de-ve-69__faq-toggle {
      font-size: 1.5rem;
      font-weight: bold;
      color: var(--primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-de-ve-69__faq-item.active .page-de-ve-69__faq-toggle {
      transform: rotate(45deg); /* Change + to X or - */
    }

    .page-de-ve-69__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      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: #f1f1f1;
      border-radius: 0 0 5px 5px;
      color: var(--text-color-light);
      font-size: 0.95rem;
    }

    .page-de-ve-69__faq-item.active .page-de-ve-69__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 15px !important;
      opacity: 1;
    }

    /* Image Container for general images */
    .page-de-ve-69__image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      text-align: center; /* Center images within their container */
    }

    .page-de-ve-69__image-container img {
      max-width: 100%;
      height: auto;
      display: block; /* Remove extra space below image */
      margin: 0 auto; /* Center image if it's smaller than container */
      min-width: 200px; /* Enforce minimum size for all images */
      min-height: 200px;
    }


    /* Responsive Design */
    @media (max-width: 768px) {
      .page-de-ve-69 h1 { font-size: 2rem; }
      .page-de-ve-69 h2 { font-size: 1.75rem; }
      .page-de-ve-69 h3 { font-size: 1.4rem; }
      .page-de-ve-69__hero-section {
        padding: 80px 15px;
        min-height: 300px;
      }
      .page-de-ve-69__hero-section h1 { font-size: 2.5rem; }
      .page-de-ve-69__hero-section p { font-size: 1rem; }
      .page-de-ve-69__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
      }

      .page-de-ve-69__section {
        padding: 30px 15px;
      }

      .page-de-ve-69__grid-item {
        padding: 20px;
      }
      .page-de-ve-69__grid-item img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-de-ve-69__faq-section {
        padding: 20px 15px;
      }
      .page-de-ve-69__faq-question {
        padding: 10px;
      }
      .page-de-ve-69__faq-question h3 {
        font-size: 1rem;
      }
      .page-de-ve-69__faq-answer {
        padding: 15px 10px !important; /* Adjust padding for mobile */
      }
      .page-de-ve-69__faq-item.active .page-de-ve-69__faq-answer {
        padding: 15px 10px !important; /* Adjust padding for mobile */
      }
      /* List item mobile responsiveness */
      .page-de-ve-69__feature-list {
          width: 100% !important;
          max-width: 100% !important;
          box-sizing: border-box !important;
          padding: 0 !important;
          margin-left: 0 !important;
          margin-right: 0 !important;
      }
      .page-de-ve-69__list-item {
          width: 100% !important;
          max-width: 100% !important;
          box-sizing: border-box !important;
          padding: 10px 15px !important; /* Reduced padding for smaller screens */
          margin-left: 0 !important;
          margin-right: 0 !important;
          word-wrap: break-word !important;
          overflow-wrap: break-word !important;
          word-break: break-word !important;
          flex-direction: column; /* Stack image and text */
          text-align: center;
      }
      .page-de-ve-69__list-item img {
          margin-right: 0 !important;
          margin-bottom: 10px !important;
      }
      /* General image container responsive */
      .page-de-ve-69__image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
      .page-de-ve-69__image-container img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-de-ve-69__hero-section h1 { font-size: 2rem; }
      .page-de-ve-69__hero-section p { font-size: 0.9rem; }
    }
  