
    :root {
      --page-69-in-primary-color: #e44d26; /* Cam đỏ */
      --page-69-in-secondary-color: #ffb300; /* Vàng cam */
      --page-69-in-dark-background: #1a1a1a; /* Nền tối */
      --page-69-in-light-text: #ffffff; /* Chữ trắng */
      --page-69-in-gray-text: #cccccc; /* Chữ xám nhạt */
      --page-69-in-border-color: #333333; /* Màu viền */
      --page-69-in-accent-color: #4CAF50; /* Xanh lá cho nổi bật */
    }

    .page-69-in {
      font-family: 'Arial', sans-serif;
      color: var(--page-69-in-light-text);
      background-color: var(--page-69-in-dark-background);
      line-height: 1.6;
      overflow-x: hidden;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    .page-69-in__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-69-in__section {
      padding: 40px 0;
      text-align: center;
      position: relative;
    }

    .page-69-in__section--dark {
      background-color: #222222;
    }

    .page-69-in__section-title {
      font-size: 2.5em;
      color: var(--page-69-in-primary-color);
      margin-bottom: 30px;
      text-transform: uppercase;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

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

    /* Hero Section */
    .page-69-in__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:gaming,casino,abstract]') no-repeat center center/cover;
      padding: 80px 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 60vh;
      box-sizing: border-box;
      position: relative;
    }

    .page-69-in__hero-title {
      font-size: 3.5em;
      color: var(--page-69-in-secondary-color);
      margin-bottom: 15px;
      font-weight: 900;
      text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
      text-align: center;
      line-height: 1.2;
    }

    .page-69-in__hero-subtitle {
      font-size: 1.5em;
      color: var(--page-69-in-light-text);
      margin-bottom: 30px;
      text-align: center;
      max-width: 800px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    .page-69-in__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      width: 100%;
      justify-content: center;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-69-in__button {
      background-color: var(--page-69-in-primary-color);
      color: var(--page-69-in-light-text);
      padding: 12px 25px;
      border: none;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      display: inline-block;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      white-space: nowrap;
    }

    .page-69-in__button:hover {
      background-color: #f15a30;
      transform: translateY(-2px);
    }
    
    .page-69-in__button--secondary {
        background-color: var(--page-69-in-accent-color);
    }

    .page-69-in__button--secondary:hover {
        background-color: #66bb6a;
    }

    /* Promotions Section */
    .page-69-in__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-69-in__promotion-card {
      background-color: #333333;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: left;
      transition: transform 0.3s ease;
    }

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

    .page-69-in__promotion-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      max-width: 100%;
    }

    .page-69-in__promotion-card-content {
      padding: 20px;
    }

    .page-69-in__promotion-card-title {
      font-size: 1.5em;
      color: var(--page-69-in-secondary-color);
      margin-bottom: 10px;
      word-wrap: break-word; /* Ensure title breaks */
    }

    .page-69-in__promotion-card-description {
      font-size: 0.95em;
      color: var(--page-69-in-gray-text);
      margin-bottom: 15px;
    }

    /* Game Categories Section */
    .page-69-in__game-categories-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-69-in__game-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
    }

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

    .page-69-in__game-card-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
      max-width: 100%;
    }

    .page-69-in__game-card-title {
      font-size: 1.3em;
      color: var(--page-69-in-light-text);
      padding: 15px;
      background-color: var(--page-69-in-primary-color);
      margin: 0;
      word-wrap: break-word; /* Ensure title breaks */
    }

    /* Features Section */
    .page-69-in__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-69-in__feature-item {
      background-color: #333333;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      text-align: center;
    }

    .page-69-in__feature-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 20px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      max-width: 100%;
    }

    .page-69-in__feature-title {
      font-size: 1.4em;
      color: var(--page-69-in-secondary-color);
      margin-bottom: 10px;
      word-wrap: break-word; /* Ensure title breaks */
    }

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

    /* Payment and Providers */
    .page-69-in__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
      align-items: center;
      justify-content: center;
    }

    .page-69-in__logo-item {
      background-color: #333333;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100px;
    }

    .page-69-in__logo-image {
      max-width: 100%;
      max-height: 70px;
      object-fit: contain;
      display: block;
    }

    /* FAQ Section */
    .page-69-in__faq-list {
      margin-top: 40px;
      text-align: left;
    }

    .page-69-in__faq-item {
      background-color: #333333;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

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

    .page-69-in__faq-question:hover {
      background-color: #555555;
    }

    .page-69-in__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--page-69-in-light-text);
      pointer-events: none; /* Prevent h3 from blocking click */
      word-wrap: break-word;
      flex-grow: 1;
    }

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

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

    .page-69-in__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: var(--page-69-in-gray-text);
    }

    .page-69-in__faq-item.active .page-69-in__faq-answer {
      max-height: 2000px !important; /* Sufficiently large value */
      padding: 20px 15px !important;
      opacity: 1;
    }

    .page-69-in__faq-answer p {
      margin: 0;
      padding-bottom: 10px; /* Add some spacing for readability */
    }

    /* Call to Action Section */
    .page-69-in__cta-section {
      background-color: var(--page-69-in-primary-color);
      padding: 50px 0;
    }

    .page-69-in__cta-title {
      font-size: 2.2em;
      color: var(--page-69-in-light-text);
      margin-bottom: 20px;
    }

    .page-69-in__cta-description {
      font-size: 1.1em;
      color: var(--page-69-in-light-text);
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-69-in__hero-title {
        font-size: 2.5em;
      }

      .page-69-in__hero-subtitle {
        font-size: 1.2em;
      }

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

      .page-69-in__floating-buttons {
        flex-direction: column;
        gap: 10px;
        bottom: 15px;
        width: calc(100% - 30px);
      }

      .page-69-in__button {
        width: 100%;
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-69-in__promotions-grid,
      .page-69-in__game-categories-grid,
      .page-69-in__features-grid,
      .page-69-in__logo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-69-in__promotion-card-title,
      .page-69-in__game-card-title,
      .page-69-in__feature-title {
        font-size: 1.2em;
      }

      .page-69-in__feature-item,
      .page-69-in__promotion-card,
      .page-69-in__game-card,
      .page-69-in__logo-item {
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px;
        padding-right: 15px;
      }

      .page-69-in__promotion-card-image,
      .page-69-in__game-card-image,
      .page-69-in__feature-icon,
      .page-69-in__logo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-69-in__faq-question h3 {
        font-size: 1em;
      }

      .page-69-in__faq-answer {
        padding: 0 10px;
      }

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

      .page-69-in__cta-title {
        font-size: 1.8em;
      }

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

    @media (max-width: 480px) {
      .page-69-in__hero-title {
        font-size: 2em;
      }
      .page-69-in__hero-subtitle {
        font-size: 1em;
      }
      .page-69-in__section-title {
        font-size: 1.8em;
      }
      .page-69-in__button {
        font-size: 0.9em;
        padding: 10px 15px;
      }
    }
  