
    .page-28-dt {
      font-family: 'Arial', sans-serif;
      color: #333;
      background-color: #f0f2f5;
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-28-dt__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 10px 15px;
      box-sizing: border-box;
    }

    .page-28-dt__hero-section {
      background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
      color: #ffffff;
      text-align: center;
      padding: 60px 20px;
      position: relative;
      overflow: hidden;
      padding-top: 70px; /* Small top padding, assuming body handles header offset */
    }

    .page-28-dt__hero-background-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
    }

    .page-28-dt__hero-content {
      position: relative;
      z-index: 1;
    }

    .page-28-dt__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      color: #ffd700;
    }

    .page-28-dt__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-28-dt__cta-button {
      display: inline-block;
      background-color: #ff4500;
      color: #ffffff;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      border: none;
      cursor: pointer;
    }

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

    .page-28-dt__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      background-color: #1a2a6c;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
      z-index: 1000;
    }

    .page-28-dt__floating-button {
      flex: 1;
      text-align: center;
      padding: 12px 0;
      margin: 0 5px;
      border-radius: 8px;
      font-weight: bold;
      font-size: 1.05em;
      color: #ffffff;
      text-decoration: none;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none;
    }

    .page-28-dt__floating-button--register {
      background-color: #ff4500;
    }

    .page-28-dt__floating-button--register:hover {
      background-color: #e63900;
    }

    .page-28-dt__floating-button--login {
      background-color: #007bff;
    }

    .page-28-dt__floating-button--login:hover {
      background-color: #0056b3;
    }

    .page-28-dt__section-title {
      text-align: center;
      font-size: 2.2em;
      color: #1a2a6c;
      margin-bottom: 40px;
      margin-top: 60px;
      font-weight: bold;
    }

    .page-28-dt__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #555;
    }

    .page-28-dt__game-categories-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-bottom: 40px;
    }

    .page-28-dt__game-card {
      background-color: #ffffff;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-28-dt__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .page-28-dt__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 1px solid #eee;
    }

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

    .page-28-dt__game-card-title {
      font-size: 1.5em;
      color: #1a2a6c;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-28-dt__game-card-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 15px;
    }

    .page-28-dt__game-card-button {
      display: inline-block;
      background-color: #fdbb2d;
      color: #1a2a6c;
      padding: 10px 20px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-28-dt__game-card-button:hover {
      background-color: #e0a800;
    }

    .page-28-dt__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-bottom: 40px;
    }

    .page-28-dt__promotion-card {
      background-color: #ffffff;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-28-dt__promotion-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .page-28-dt__promotion-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }

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

    .page-28-dt__promotion-title {
      font-size: 1.4em;
      color: #b21f1f;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-28-dt__promotion-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 15px;
    }

    .page-28-dt__promotion-button {
      display: inline-block;
      background-color: #ff4500;
      color: #ffffff;
      padding: 10px 20px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-28-dt__promotion-button:hover {
      background-color: #e63900;
    }

    .page-28-dt__faq-section {
      background-color: #ffffff;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
      padding: 40px 30px;
      margin-top: 40px;
    }

    .page-28-dt__faq-item {
      border-bottom: 1px solid #eee;
      margin-bottom: 10px;
    }

    .page-28-dt__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .page-28-dt__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      cursor: pointer;
      user-select: none;
      font-size: 1.1em;
      color: #1a2a6c;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .page-28-dt__faq-question:hover {
      color: #ff4500;
    }

    .page-28-dt__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      pointer-events: none;
    }

    .page-28-dt__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      margin-left: 10px;
      pointer-events: none;
      transition: transform 0.3s ease;
    }

    .page-28-dt__faq-item.active .page-28-dt__faq-toggle {
      transform: rotate(45deg);
    }

    .page-28-dt__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;
      color: #555;
    }

    .page-28-dt__faq-item.active .page-28-dt__faq-answer {
      max-height: 2000px !important;
      padding: 20px 15px !important;
      opacity: 1;
    }

    .page-28-dt__payment-providers-grid,
    .page-28-dt__game-providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 20px;
      margin-bottom: 40px;
      justify-items: center;
      align-items: center;
    }

    .page-28-dt__provider-logo {
      width: 120px;
      height: 80px;
      object-fit: contain;
      filter: grayscale(100%);
      opacity: 0.7;
      transition: filter 0.3s ease, opacity 0.3s ease;
    }

    .page-28-dt__provider-logo:hover {
      filter: grayscale(0%);
      opacity: 1;
    }

    @media (max-width: 768px) {
      .page-28-dt__hero-title {
        font-size: 2em;
      }

      .page-28-dt__hero-subtitle {
        font-size: 1em;
      }

      .page-28-dt__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

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

      .page-28-dt__container {
        padding: 0 10px;
      }

      .page-28-dt__game-categories-grid,
      .page-28-dt__promotions-grid {
        grid-template-columns: 1fr;
      }

      .page-28-dt__game-card-image,
      .page-28-dt__promotion-image {
        height: 180px;
      }

      .page-28-dt__faq-section {
        padding: 30px 15px;
      }

      .page-28-dt__faq-question,
      .page-28-dt__faq-question h3 {
        font-size: 1em;
      }

      .page-28-dt__faq-answer {
        padding: 0 10px;
      }

      .page-28-dt__faq-item.active .page-28-dt__faq-answer {
        padding: 15px 10px !important;
      }

      .page-28-dt__payment-providers-grid,
      .page-28-dt__game-providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 15px;
      }

      .page-28-dt__provider-logo {
        width: 100px;
        height: 60px;
      }
    }

    /* Ensure all list items and images are responsive */
    .page-28-dt ul,
    .page-28-dt ol {
      padding: 0 !important;
      margin: 0 !important;
      list-style: none;
      width: 100% !important;
      max-width: 100% !important;
      box-sizing: border-box !important;
    }

    .page-28-dt ul li,
    .page-28-dt ol li {
      width: 100% !important;
      max-width: 100% !important;
      box-sizing: border-box !important;
      margin-left: 0 !important;
      margin-right: 0 !important;
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
      word-break: break-word !important;
    }

    .page-28-dt img {
      max-width: 100% !important;
      height: auto !important;
      box-sizing: border-box !important;
    }

    .page-28-dt__game-card-image,
    .page-28-dt__promotion-image,
    .page-28-dt__hero-background-image {
      max-width: 100% !important;
      height: auto !important;
      object-fit: cover;
      box-sizing: border-box !important;
    }

    .page-28-dt__game-card-image-container,
    .page-28-dt__promotion-image-container {
      width: 100% !important;
      max-width: 100% !important;
      overflow: hidden !important;
      box-sizing: border-box !important;
    }
  