
    .page-66-king {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0;
      background-color: #1a1a1a;
      line-height: 1.6;
      box-sizing: border-box;
      padding-bottom: 80px; /* Space for fixed buttons */
    }

    .page-66-king * {
      box-sizing: border-box;
    }

    .page-66-king__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-66-king__section-title {
      font-size: 2.5em;
      color: #f7b32b;
      text-align: center;
      margin-bottom: 40px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .page-66-king__hero-section {
      position: relative;
      height: 60vh;
      min-height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #ffffff;
      overflow: hidden;
      padding-top: 10px; /* Small offset below header */
    }

    .page-66-king__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .page-66-king__hero-overlay {
      position: absolute;
      top: 0;
    left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8));
      z-index: 1;
    }

    .page-66-king__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 20px;
    }

    .page-66-king__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: #f7b32b;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    }

    .page-66-king__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #cccccc;
    }

    .page-66-king__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
    }

    .page-66-king__button {
      display: inline-block;
      padding: 12px 25px;
      background-color: #f7b32b;
      color: #1a1a1a;
      text-decoration: none;
      border-radius: 30px;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      text-align: center;
    }

    .page-66-king__button:hover {
      background-color: #e0a020;
      transform: translateY(-2px);
    }

    .page-66-king__game-categories-grid,
    .page-66-king__promotions-grid,
    .page-66-king__payment-logos,
    .page-66-king__provider-logos {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      justify-items: center;
      align-items: stretch;
    }

    .page-66-king__category-card,
    .page-66-king__promotion-card {
      background-color: #2a2a2a;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 8px 16px rgba(0,0,0,0.5);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-66-king__category-card:hover,
    .page-66-king__promotion-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 24px rgba(0,0,0,0.7);
    }

    .page-66-king__category-image-wrapper,
    .page-66-king__promotion-image-wrapper {
      width: 100%;
      height: 200px;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-66-king__category-image,
    .page-66-king__promotion-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .page-66-king__category-card:hover .page-66-king__category-image,
    .page-66-king__promotion-card:hover .page-66-king__promotion-image {
      transform: scale(1.05);
    }

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

    .page-66-king__category-title,
    .page-66-king__promotion-title {
      font-size: 1.5em;
      color: #f7b32b;
      margin-bottom: 15px;
    }

    .page-66-king__promotion-description {
      font-size: 0.95em;
      color: #ccc;
      margin-bottom: 20px;
    }

    .page-66-king__why-choose-us-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .page-66-king__why-choose-us-item {
      background-color: #2a2a2a;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.3);
      text-align: center;
      transition: background-color 0.3s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .page-66-king__why-choose-us-item:hover {
      background-color: #3a3a3a;
    }

    .page-66-king__why-choose-us-item h3 {
      color: #f7b32b;
      margin-bottom: 10px;
      font-size: 1.3em;
    }

    .page-66-king__why-choose-us-item p {
      color: #cccccc;
      font-size: 0.95em;
    }

    .page-66-king__payment-logo-wrapper,
    .page-66-king__provider-logo-wrapper {
      background-color: #2a2a2a;
      padding: 15px;
      border-radius: 10px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 120px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    }

    .page-66-king__payment-logo,
    .page-66-king__provider-logo {
      max-width: 100%;
      max-height: 90px;
      height: auto;
      object-fit: contain;
    }

    /* FAQ Styles */
    .page-66-king__faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-66-king__faq-item {
      background-color: #2a2a2a;
      margin-bottom: 15px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.3);
      overflow: hidden;
    }

    .page-66-king__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #3a3a3a;
      color: #f7b32b;
      font-size: 1.2em;
      font-weight: bold;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-66-king__faq-question:hover {
      background-color: #4a4a4a;
    }

    .page-66-king__faq-question h3 {
      margin: 0;
      color: #f7b32b;
      pointer-events: none; /* Allow click on entire question div */
      flex-grow: 1;
      text-align: left;
    }

    .page-66-king__faq-toggle {
      font-size: 1.5em;
      margin-left: 15px;
      pointer-events: none; /* Allow click on entire question div */
      transition: transform 0.3s ease;
    }

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

    .page-66-king__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      color: #cccccc;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

    .page-66-king__faq-item.active .page-66-king__faq-answer {
      max-height: 2000px !important;
      padding: 20px 25px !important;
      opacity: 1;
    }

    /* Responsive Styles */
    @media (max-width: 768px) {
      .page-66-king__section {
        padding: 30px 15px;
      }

      .page-66-king__section-title {
        font-size: 2em;
        margin-bottom: 30px;
      }

      .page-66-king__hero-section {
        height: 70vh;
        min-height: 300px;
      }

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

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

      .page-66-king__floating-buttons {
        width: calc(100% - 40px);
        gap: 10px;
      }

      .page-66-king__button {
        flex: 1;
        padding: 10px 15px;
        font-size: 1em;
      }

      .page-66-king__game-categories-grid,
      .page-66-king__promotions-grid,
      .page-66-king__why-choose-us-list,
      .page-66-king__payment-logos,
      .page-66-king__provider-logos {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100% !important; /* For list containers */
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-66-king__category-card,
      .page-66-king__promotion-card,
      .page-66-king__why-choose-us-item,
      .page-66-king__payment-logo-wrapper,
      .page-66-king__provider-logo-wrapper {
        width: 100% !important; /* For list items */
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px;
        padding-right: 15px;
      }

      .page-66-king__category-image-wrapper,
      .page-66-king__promotion-image-wrapper {
        height: 180px;
      }

      .page-66-king__card-content {
        padding: 15px;
      }

      .page-66-king__category-title,
      .page-66-king__promotion-title {
        font-size: 1.3em;
      }

      .page-66-king__promotion-description,
      .page-66-king__why-choose-us-item p {
        font-size: 0.9em;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-66-king__why-choose-us-item h3 {
        font-size: 1.1em;
      }

      .page-66-king__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }

      .page-66-king__faq-answer {
        padding: 0 20px;
      }

      .page-66-king__faq-item.active .page-66-king__faq-answer {
        padding: 15px 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-66-king__hero-title {
        font-size: 2em;
      }
      .page-66-king__section-title {
        font-size: 1.8em;
      }
    }
  