
    :root {
      --dk68-primary: #FFD700; /* Gold */
      --dk68-secondary: #00BFFF; /* Deep Sky Blue */
      --dk68-dark-bg: #1a1a1a;
      --dk68-light-text: #f0f0f0;
      --dk68-accent-red: #FF4500; /* OrangeRed */
      --dk68-button-hover: #FFC400;
      --dk68-border-color: #333;
    }

    /* Base styles for the page content */
    .page-dk68-com {
      font-family: 'Arial', sans-serif;
      color: var(--dk68-light-text);
      background-color: var(--dk68-dark-bg);
      line-height: 1.6;
      overflow-x: hidden;
      padding-top: 10px; /* Small decorative padding, relying on body padding-top for header offset */
    }

    /* Hero Section */
    .page-dk68-com__hero-section {
      position: relative;
      width: 100%;
      height: 60vh; /* Adjust height for mobile focus */
      min-height: 300px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      background-color: #000;
      overflow: hidden;
    }

    .page-dk68-com__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      filter: brightness(0.5); /* Darken background for text readability */
    }

    .page-dk68-com__hero-content {
      position: relative;
      z-index: 2;
      padding: 20px;
      max-width: 90%;
      background-color: rgba(0, 0, 0, 0.4);
      border-radius: 10px;
    }

    .page-dk68-com__hero-title {
      font-size: 2.5em;
      color: var(--dk68-primary);
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: 2px;
      line-height: 1.2;
    }

    .page-dk68-com__hero-subtitle {
      font-size: 1.2em;
      color: var(--dk68-light-text);
      margin-bottom: 20px;
    }

    .page-dk68-com__hero-button-group {
      display: flex;
      gap: 15px;
      justify-content: center;
    }

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

    .page-dk68-com__floating-button {
      background-color: var(--dk68-accent-red);
      color: var(--dk68-light-text);
      border: none;
      padding: 12px 25px;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none; /* Ensure it looks like a button */
      text-align: center;
    }

    .page-dk68-com__floating-button:hover {
      background-color: #e63900;
      transform: translateY(-2px);
    }

    /* General Section Styling */
    .page-dk68-com__section {
      padding: 40px 20px;
      margin: 0 auto;
      max-width: 1200px;
      background-color: #222;
      border-bottom: 1px solid var(--dk68-border-color);
    }
    
    .page-dk68-com__section:nth-of-type(even) {
      background-color: #1a1a1a;
    }

    .page-dk68-com__section-title {
      font-size: 2em;
      color: var(--dk68-primary);
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-dk68-com__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: var(--dk68-secondary);
    }

    .page-dk68-com__text-content {
      font-size: 1.1em;
      text-align: center;
      max-width: 800px;
      margin: 0 auto 30px auto;
      color: #ccc;
    }

    /* Product Showcase */
    .page-dk68-com__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      justify-content: center;
    }

    .page-dk68-com__product-item {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-dk68-com__product-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-dk68-com__product-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      border-bottom: 2px solid var(--dk68-secondary);
    }

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

    .page-dk68-com__product-title {
      font-size: 1.5em;
      color: var(--dk68-primary);
      margin-bottom: 10px;
    }

    .page-dk68-com__product-description {
      font-size: 0.95em;
      color: #bbb;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-dk68-com__learn-more-button {
      display: inline-block;
      background-color: var(--dk68-secondary);
      color: var(--dk68-dark-bg);
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none; /* Ensure it's a button, not a link visually */
    }

    .page-dk68-com__learn-more-button:hover {
      background-color: #009ACD;
    }

    /* Promotions */
    .page-dk68-com__promo-card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .page-dk68-com__promo-card {
      background: linear-gradient(135deg, #333, #111);
      border: 1px solid var(--dk68-primary);
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 250px;
    }

    .page-dk68-com__promo-card:hover {
      transform: translateY(-5px);
    }

    .page-dk68-com__promo-icon {
      margin-bottom: 15px;
      width: 100px;
      height: 100px;
      object-fit: contain;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-dk68-com__promo-title {
      font-size: 1.8em;
      color: var(--dk68-primary);
      margin-bottom: 10px;
    }

    .page-dk68-com__promo-description {
      font-size: 1em;
      color: #bbb;
      margin-bottom: 20px;
      flex-grow: 1;
    }

    /* Why Choose Us */
    .page-dk68-com__feature-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .page-dk68-com__feature-item {
      background-color: #2a2a2a;
      border-radius: 8px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-dk68-com__feature-icon {
      margin-bottom: 15px;
      width: 80px;
      height: 80px;
      object-fit: contain;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-dk68-com__feature-title {
      font-size: 1.4em;
      color: var(--dk68-secondary);
      margin-bottom: 10px;
    }

    .page-dk68-com__feature-description {
      font-size: 0.95em;
      color: #ccc;
    }

    /* Payment Methods & Providers */
    .page-dk68-com__logo-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-dk68-com__logo-item {
      background-color: #333;
      padding: 15px 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease;
      box-sizing: border-box; /* Crucial for responsive lists */
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 120px;
      max-width: 180px;
    }

    .page-dk68-com__logo-item:hover {
      transform: translateY(-3px);
    }

    .page-dk68-com__logo-image {
      max-width: 100%;
      height: 60px; /* Consistent height for logos */
      object-fit: contain;
      display: block;
    }

    /* FAQ Section */
    .page-dk68-com__faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-dk68-com__faq-item {
      background-color: #2a2a2a;
      border: 1px solid var(--dk68-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-dk68-com__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #333;
      color: var(--dk68-light-text);
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-dk68-com__faq-question:hover {
      background-color: #444;
    }

    .page-dk68-com__faq-question h3 {
      margin: 0;
      color: var(--dk68-primary);
      pointer-events: none; /* Prevent h3 from blocking click */
      flex-grow: 1;
      text-align: left;
    }

    .page-dk68-com__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      color: var(--dk68-secondary);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
    }

    .page-dk68-com__faq-item.active .page-dk68-com__faq-toggle {
      transform: rotate(45deg); /* Plus to X (minus) */
    }

    .page-dk68-com__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      background-color: #222;
      color: #bbb;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      font-size: 0.95em;
    }

    .page-dk68-com__faq-item.active .page-dk68-com__faq-answer {
      max-height: 2000px !important; /* Use !important as required */
      padding: 20px 15px !important; /* Use !important as required */
      opacity: 1;
    }
    
    .page-dk68-com__faq-answer p {
      margin-top: 0;
      margin-bottom: 10px;
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word; /* Ensure text wraps */
    }
    .page-dk68-com__faq-answer p:last-child {
      margin-bottom: 0;
    }


    /* Call to Action */
    .page-dk68-com__cta-section {
      text-align: center;
      background-color: var(--dk68-accent-red);
      padding: 50px 20px;
    }

    .page-dk68-com__cta-title {
      font-size: 2.2em;
      color: var(--dk68-light-text);
      margin-bottom: 15px;
    }

    .page-dk68-com__cta-description {
      font-size: 1.1em;
      color: #f0f0f0;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-dk68-com__cta-button {
      background-color: var(--dk68-primary);
      color: var(--dk68-dark-bg);
      padding: 15px 35px;
      border-radius: 30px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-dk68-com__cta-button:hover {
      background-color: var(--dk68-button-hover);
      transform: translateY(-2px);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-dk68-com__hero-title {
        font-size: 2em;
      }
      .page-dk68-com__section-title {
        font-size: 1.8em;
      }
      .page-dk68-com__cta-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-dk68-com__hero-section {
        height: 50vh;
      }
      .page-dk68-com__hero-title {
        font-size: 1.8em;
      }
      .page-dk68-com__hero-subtitle {
        font-size: 1em;
      }
      .page-dk68-com__hero-button-group {
        flex-direction: column;
        gap: 10px;
      }
      .page-dk68-com__section {
        padding: 30px 15px;
      }
      .page-dk68-com__section-title {
        font-size: 1.6em;
        margin-bottom: 25px;
      }
      .page-dk68-com__text-content {
        font-size: 1em;
        margin-bottom: 25px;
      }

      /* Responsive List Items */
      .page-dk68-com__product-grid,
      .page-dk68-com__promo-card-grid,
      .page-dk68-com__feature-list,
      .page-dk68-com__logo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }
      .page-dk68-com__product-item,
      .page-dk68-com__promo-card,
      .page-dk68-com__feature-item,
      .page-dk68-com__logo-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-dk68-com__logo-item {
        min-width: unset; /* Allow it to shrink */
        padding: 10px 15px;
      }
      .page-dk68-com__logo-image {
        height: 50px;
      }

      .page-dk68-com__product-title {
        font-size: 1.3em;
      }
      .page-dk68-com__promo-title {
        font-size: 1.5em;
      }
      .page-dk68-com__feature-title {
        font-size: 1.2em;
      }

      .page-dk68-com__floating-buttons {
        flex-direction: row;
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
        justify-content: space-around;
        bottom: 15px;
      }
      .page-dk68-com__floating-button {
        flex: 1;
        padding: 10px 15px;
        font-size: 1em;
      }

      .page-dk68-com__cta-title {
        font-size: 1.8em;
      }
      .page-dk68-com__cta-description {
        font-size: 1em;
      }
      .page-dk68-com__cta-button {
        font-size: 1.1em;
        padding: 12px 25px;
      }
      
      .page-dk68-com__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }
      .page-dk68-com__faq-question h3 {
        font-size: 1em;
      }
      .page-dk68-com__faq-toggle {
        font-size: 1.5em;
      }
      .page-dk68-com__faq-answer {
        padding: 0 15px;
      }
      .page-dk68-com__faq-item.active .page-dk68-com__faq-answer {
        padding: 15px 15px !important;
      }
      .page-dk68-com__faq-answer p {
        font-size: 0.9em;
      }
    }

    @media (max-width: 480px) {
      .page-dk68-com__hero-title {
        font-size: 1.5em;
      }
      .page-dk68-com__hero-subtitle {
        font-size: 0.9em;
      }
      .page-dk68-com__floating-button {
        padding: 8px 12px;
        font-size: 0.9em;
      }
      .page-dk68-com__product-image {
        height: 150px;
      }
      .page-dk68-com__product-title {
        font-size: 1.2em;
      }
      .page-dk68-com__promo-title {
        font-size: 1.3em;
      }
      .page-dk68-com__feature-title {
        font-size: 1.1em;
      }
      .page-dk68-com__logo-image {
        height: 40px;
      }
    }
  