
    :root {
      --primary-color: #e44d26;
      --secondary-color: #f7931e;
      --dark-background: #1a1a1a;
      --light-text: #ffffff;
      --gray-text: #cccccc;
      --accent-color: #4CAF50;
      --border-color: #333333;
      --button-hover: #ff6f3f;
    }

    .page-game86 {
      font-family: 'Arial', sans-serif;
      color: var(--light-text);
      background-color: var(--dark-background);
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-game86__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-game86__section-title {
      font-size: 2.5em;
      color: var(--primary-color);
      margin-bottom: 30px;
      text-transform: uppercase;
      font-weight: bold;
    }

    .page-game86__section-subtitle {
      font-size: 1.2em;
      color: var(--gray-text);
      margin-bottom: 40px;
    }

    .page-game86__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:betting,online_casino,game86]') no-repeat center center/cover;
      padding: 120px 20px 80px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      min-height: 60vh;
      position: relative;
      padding-top: calc(10px + var(--header-offset, 0px)); /* Small decorative padding + header offset if body doesn't handle it */
    }

    .page-game86__hero-title {
      font-size: 3.5em;
      color: var(--secondary-color);
      margin-bottom: 20px;
      line-height: 1.2;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-game86__hero-description {
      font-size: 1.3em;
      color: var(--light-text);
      max-width: 800px;
      margin-bottom: 40px;
    }

    .page-game86__button {
      display: inline-block;
      background-color: var(--primary-color);
      color: var(--light-text);
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      margin: 10px;
    }

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

    .page-game86__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: rgba(26, 26, 26, 0.95);
      padding: 10px 0;
      display: flex;
      justify-content: center;
      z-index: 1000;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    }

    .page-game86__floating-button {
      background-color: var(--accent-color);
      color: var(--light-text);
      padding: 12px 25px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      margin: 0 10px;
      transition: background-color 0.3s ease, transform 0.2s ease;
      font-size: 1em;
      white-space: nowrap;
    }

    .page-game86__floating-button--login {
      background-color: var(--primary-color);
    }

    .page-game86__floating-button:hover {
      background-color: #66BB6A;
      transform: translateY(-2px);
    }

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

    .page-game86__text-content {
      font-size: 1.1em;
      color: var(--gray-text);
      text-align: justify;
      margin-bottom: 20px;
    }

    .page-game86__image-container {
      margin: 40px auto;
      max-width: 800px;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      width: 100%;
      box-sizing: border-box;
    }

    .page-game86__image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    .page-game86__games-grid,
    .page-game86__providers-grid,
    .page-game86__payments-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-game86__game-card,
    .page-game86__provider-card,
    .page-game86__payment-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
    }

    .page-game86__game-card:hover,
    .page-game86__provider-card:hover,
    .page-game86__payment-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-game86__card-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 15px;
      object-fit: cover;
      width: 100%;
      min-height: 200px;
    }

    .page-game86__provider-image,
    .page-game86__payment-image {
      max-width: 80%;
      height: auto;
      margin-bottom: 15px;
      object-fit: contain;
      max-height: 100px;
      min-height: 100px; /* Ensure logos are visible */
      min-width: 200px;
    }

    .page-game86__card-title {
      font-size: 1.5em;
      color: var(--secondary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-game86__card-description {
      font-size: 0.95em;
      color: var(--gray-text);
    }

    .page-game86__list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-game86__list-item {
      background-color: #2a2a2a;
      margin-bottom: 15px;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      text-align: left;
      color: var(--gray-text);
      box-sizing: border-box;
    }

    .page-game86__list-item h3 {
      color: var(--secondary-color);
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-game86__faq-list {
      margin-top: 40px;
      text-align: left;
    }

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

    .page-game86__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      cursor: pointer;
      user-select: none;
      background-color: #333333;
      border-bottom: 1px solid var(--border-color);
      transition: background-color 0.3s ease;
    }

    .page-game86__faq-question:hover {
      background-color: #444444;
    }

    .page-game86__faq-question h3 {
      margin: 0;
      color: var(--secondary-color);
      font-size: 1.2em;
      pointer-events: none; /* Prevent h3 from blocking click */
      flex-grow: 1;
    }

    .page-game86__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--primary-color);
      margin-left: 20px;
      pointer-events: none; /* Prevent toggle from blocking click */
      transition: transform 0.3s ease;
    }

    .page-game86__faq-item.active .page-game86__faq-toggle {
      transform: rotate(45deg);
      color: var(--accent-color);
    }

    .page-game86__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      color: var(--gray-text);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    .page-game86__cta-section {
      background-color: var(--primary-color);
      padding: 60px 20px;
      text-align: center;
      margin-top: 50px;
    }

    .page-game86__cta-title {
      color: var(--light-text);
      font-size: 2.8em;
      margin-bottom: 25px;
      font-weight: bold;
    }

    .page-game86__cta-description {
      color: var(--light-text);
      font-size: 1.2em;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-game86__cta-button {
      background-color: var(--accent-color);
      color: var(--light-text);
      padding: 18px 40px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.3em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      display: inline-block;
    }

    .page-game86__cta-button:hover {
      background-color: #66BB6A;
      transform: translateY(-3px);
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-game86__hero-section {
        padding: 80px 15px 60px;
        min-height: 50vh;
      }

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

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

      .page-game86__section {
        padding: 30px 15px;
      }

      .page-game86__section-title {
        font-size: 2em;
      }

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

      .page-game86__games-grid,
      .page-game86__providers-grid,
      .page-game86__payments-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-game86__game-card,
      .page-game86__provider-card,
      .page-game86__payment-card {
        padding: 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-game86__card-image,
      .page-game86__provider-image,
      .page-game86__payment-image {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 150px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-game86__card-title {
        font-size: 1.3em;
      }

      .page-game86__card-description {
        font-size: 0.9em;
      }

      .page-game86__floating-buttons {
        flex-direction: column;
        align-items: center;
        padding: 15px 0;
      }

      .page-game86__floating-button {
        width: calc(100% - 40px);
        margin: 5px 20px;
        font-size: 1.1em;
        text-align: center;
      }

      .page-game86__list-item {
        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-game86__faq-question {
        padding: 15px;
      }

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

      .page-game86__faq-toggle {
        font-size: 1.5em;
      }

      .page-game86__faq-answer {
        padding: 0 15px;
      }

      .page-game86__faq-item.active .page-game86__faq-answer {
        padding: 15px 15px !important;
      }

      .page-game86__cta-title {
        font-size: 2em;
      }

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

      .page-game86__cta-button {
        padding: 15px 30px;
        font-size: 1.1em;
      }
    }

    @media (max-width: 480px) {
      .page-game86__hero-title {
        font-size: 2em;
      }
      .page-game86__section-title {
        font-size: 1.8em;
      }
      .page-game86__cta-title {
        font-size: 1.8em;
      }
    }
  