
    :root {
      --primary-color: #e44d26; /* A vibrant orange-red, common in betting sites */
      --secondary-color: #2c3e50; /* Dark blue-grey for contrast */
      --accent-color: #f39c12; /* A bright yellow-orange */
      --text-color: #ecf0f1; /* Light grey for text on dark backgrounds */
      --dark-bg: #1a1a1a; /* Very dark background */
      --light-bg: #2a2a2a; /* Slightly lighter dark background */
      --border-color: #3e3e3e;
      --button-hover-color: #ff6f40;
    }

    body {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--text-color);
      background-color: var(--dark-bg);
      margin: 0;
      padding: 0;
    }

    .page-dt68 {
      max-width: 1200px;
      margin: 0 auto;
      padding: 10px 15px; /* Minimal padding-top for hero as body handles offset */
      overflow-x: hidden;
    }

    .page-dt68__section {
      padding: 40px 0;
      margin-bottom: 20px;
      background-color: var(--light-bg);
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-dt68__section--dark {
      background-color: var(--secondary-color);
    }

    .page-dt68__container {
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-dt68__heading {
      text-align: center;
      color: var(--primary-color);
      font-size: 2.5em;
      margin-bottom: 30px;
      position: relative;
    }

    .page-dt68__heading::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background-color: var(--accent-color);
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .page-dt68__subheading {
      color: var(--accent-color);
      font-size: 1.8em;
      margin-bottom: 20px;
      text-align: center;
    }

    .page-dt68__paragraph {
      margin-bottom: 15px;
      font-size: 1.1em;
      color: var(--text-color);
    }

    .page-dt68__button {
      display: inline-block;
      background-color: var(--primary-color);
      color: #fff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none;
      font-size: 1em;
      text-align: center;
    }

    .page-dt68__button:hover {
      background-color: var(--button-hover-color);
    }

    /* Hero Section */
    .page-dt68__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), var(--dark-bg);
      background-size: cover;
      background-position: center;
      text-align: center;
      padding: 80px 15px;
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      margin-bottom: 20px;
    }

    .page-dt68__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      opacity: 0.4;
    }

    .page-dt68__hero-content {
      position: relative;
      z-index: 1;
      color: #fff;
      padding: 20px;
    }

    .page-dt68__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: var(--primary-color);
      line-height: 1.2;
    }

    .page-dt68__hero-description {
      font-size: 1.4em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: var(--text-color);
    }

    .page-dt68__hero-cta-group {
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    /* Floating Buttons */
    .page-dt68__floating-buttons {
      position: fixed;
      top: 50%;
      right: 15px;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 1000;
      pointer-events: none; /* Allow clicks through for main content */
    }

    .page-dt68__floating-button {
      background-color: var(--accent-color);
      color: var(--secondary-color);
      padding: 10px 15px;
      border-radius: 25px;
      font-weight: bold;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      transition: background-color 0.3s ease;
      cursor: pointer;
      pointer-events: auto; /* Re-enable clicks for the buttons themselves */
      font-size: 0.9em;
      text-align: center;
      white-space: nowrap;
    }

    .page-dt68__floating-button:hover {
      background-color: var(--primary-color);
      color: #fff;
    }

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

    .page-dt68__product-card {
      background-color: var(--dark-bg);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

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

    .page-dt68__product-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
      background-color: var(--secondary-color);
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-dt68__product-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      width: 100%; /* Ensure image fills the wrapper */
      min-height: 200px; /* Ensure minimum height */
    }

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

    .page-dt68__product-title {
      font-size: 1.5em;
      color: var(--primary-color);
      margin-bottom: 10px;
      text-align: center;
    }

    .page-dt68__product-description {
      font-size: 0.95em;
      color: var(--text-color);
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-dt68__product-link {
      display: block;
      background-color: var(--accent-color);
      color: var(--secondary-color);
      padding: 10px 15px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      text-align: center;
      transition: background-color 0.3s ease;
      margin-top: auto; /* Pushes button to the bottom */
      cursor: pointer;
    }

    .page-dt68__product-link:hover {
      background-color: var(--primary-color);
      color: #fff;
    }

    /* Promotions */
    .page-dt68__promotion-card {
      background-color: var(--dark-bg);
      border-radius: 10px;
      padding: 25px;
      margin-bottom: 20px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .page-dt68__promotion-title {
      font-size: 1.8em;
      color: var(--accent-color);
      margin-bottom: 15px;
    }

    .page-dt68__promotion-description {
      font-size: 1.1em;
      color: var(--text-color);
      margin-bottom: 20px;
    }

    .page-dt68__promotion-link {
      display: inline-block;
      background-color: var(--primary-color);
      color: #fff;
      padding: 12px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      font-size: 1em;
    }

    .page-dt68__promotion-link:hover {
      background-color: var(--button-hover-color);
    }

    /* Payment and Providers */
    .page-dt68__info-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-dt68__info-card {
      background-color: var(--dark-bg);
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
      text-align: center;
    }

    .page-dt68__info-title {
      font-size: 1.6em;
      color: var(--primary-color);
      margin-bottom: 15px;
    }

    .page-dt68__info-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
    }

    .page-dt68__info-list-item {
      background-color: var(--light-bg);
      color: var(--text-color);
      padding: 8px 15px;
      border-radius: 20px;
      font-size: 0.95em;
      white-space: nowrap;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    /* FAQ Section */
    .page-dt68__faq-section {
      background-color: var(--light-bg);
      padding: 40px 0;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-dt68__faq-item {
      margin-bottom: 10px;
      border: 1px solid var(--border-color);
      border-radius: 5px;
      overflow: hidden;
      background-color: var(--dark-bg);
    }

    .page-dt68__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: var(--secondary-color);
      color: var(--text-color);
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-dt68__faq-question:hover {
      background-color: #3b506b; /* Slightly lighter secondary for hover */
    }

    .page-dt68__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--accent-color);
      pointer-events: none; /* Prevents text selection from interfering with click */
    }

    .page-dt68__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--primary-color);
      pointer-events: none; /* Prevents icon from interfering with click */
      transition: transform 0.3s ease;
    }

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

    .page-dt68__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      background-color: var(--dark-bg);
      color: var(--text-color);
      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: 1em;
    }

    .page-dt68__faq-item.active .page-dt68__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 15px !important;
      opacity: 1;
    }

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

      .page-dt68__hero-title {
        font-size: 2.5em;
      }

      .page-dt68__hero-description {
        font-size: 1.1em;
      }

      .page-dt68__hero-cta-group {
        flex-direction: column;
        gap: 15px;
      }

      .page-dt68__button {
        width: 100%;
        box-sizing: border-box;
      }

      .page-dt68__floating-buttons {
        flex-direction: row;
        width: 100%;
        bottom: 0;
        top: auto;
        left: 0;
        right: 0;
        transform: none;
        justify-content: space-around;
        padding: 10px 0;
        background-color: rgba(26, 26, 26, 0.95);
        border-top: 1px solid var(--border-color);
        box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.3);
      }

      .page-dt68__floating-button {
        flex: 1;
        margin: 0 5px;
        padding: 8px 10px;
        font-size: 0.85em;
        border-radius: 20px;
        box-shadow: none;
      }

      .page-dt68__heading {
        font-size: 2em;
      }

      .page-dt68__subheading {
        font-size: 1.5em;
      }

      .page-dt68__product-grid,
      .page-dt68__info-grid {
        grid-template-columns: 1fr;
      }

      .page-dt68__product-image-wrapper {
        height: 180px;
      }
      .page-dt68__product-image {
        min-height: 180px;
      }

      .page-dt68__info-list {
        flex-direction: column;
        align-items: center;
      }

      .page-dt68__info-list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 10px 15px !important; /* Adjust padding for better look */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-dt68__faq-question {
        padding: 12px 15px;
      }

      .page-dt68__faq-question h3 {
        font-size: 1.1em;
      }

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

      /* Image responsive rules */
      .page-dt68 img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-dt68__product-image-wrapper,
      .page-dt68__hero-section {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-dt68__hero-title {
        font-size: 2em;
      }
      .page-dt68__heading {
        font-size: 1.8em;
      }
      .page-dt68__floating-buttons {
        gap: 8px;
        padding: 8px 0;
      }
      .page-dt68__floating-button {
        font-size: 0.8em;
        padding: 6px 8px;
      }
      .page-dt68__promotion-title {
        font-size: 1.5em;
      }
    }
  