
    /* CSS styles for page-tai-rio66 */
    .page-tai-rio66 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-bottom: 80px; /* Space for floating buttons */
      /* Fallback for header offset, assuming shared.css handles body padding-top */
      padding-top: var(--header-offset, 122px); 
    }

    .page-tai-rio66__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-tai-rio66__hero-section {
      background: linear-gradient(135deg, #0056b3, #003d82);
      color: #fff;
      padding: 60px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
      padding-top: 10px; /* Small top padding, assuming body already has header offset */
    }

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

    .page-tai-rio66__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-tai-rio66__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      line-height: 1.2;
      font-weight: bold;
      color: #ffd700; /* Gold color for highlight */
    }

    .page-tai-rio66__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-tai-rio66__download-button {
      display: inline-block;
      background-color: #ff4500; /* OrangeRed */
      color: #fff;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      border: none; /* Ensure it looks like a button */
      cursor: pointer;
    }

    .page-tai-rio66__download-button:hover {
      background-color: #e63900;
    }

    .page-tai-rio66__section {
      padding: 40px 0;
      background-color: #fff;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-tai-rio66__section-dark {
      background-color: #003d82;
      color: #fff;
    }

    .page-tai-rio66__section-title {
      font-size: 2em;
      color: #0056b3;
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
    }

    .page-tai-rio66__section-dark .page-tai-rio66__section-title {
      color: #ffd700;
    }

    .page-tai-rio66__download-steps {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 30px;
    }

    .page-tai-rio66__step-item {
      background-color: #f0f8ff;
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      width: calc(33% - 20px);
      box-sizing: border-box;
      max-width: 350px;
    }

    .page-tai-rio66__step-item:hover {
      transform: translateY(-5px);
    }

    .page-tai-rio66__step-icon {
      width: 150px; /* Min size 200x200, but for icons, I will use a larger placeholder */
      height: 150px;
      object-fit: contain;
      margin-bottom: 15px;
      border-radius: 8px;
    }

    .page-tai-rio66__step-title {
      font-size: 1.3em;
      color: #0056b3;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-tai-rio66__step-text {
      font-size: 1em;
      color: #555;
    }

    .page-tai-rio66__game-showcase {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-tai-rio66__game-card {
      background-color: #f0f8ff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      box-sizing: border-box;
    }

    .page-tai-rio66__game-card:hover {
      transform: translateY(-7px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .page-tai-rio66__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .page-tai-rio66__game-content {
      padding: 20px;
    }

    .page-tai-rio66__game-title {
      font-size: 1.2em;
      color: #0056b3;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-tai-rio66__game-description {
      font-size: 0.95em;
      color: #555;
    }

    .page-tai-rio66__promotion-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-tai-rio66__promotion-card {
      background-color: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
    }

    .page-tai-rio66__promotion-card:hover {
      transform: translateY(-7px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

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

    .page-tai-rio66__promotion-content {
      padding: 20px;
      flex-grow: 1;
    }

    .page-tai-rio66__promotion-title {
      font-size: 1.3em;
      color: #ff4500;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-tai-rio66__promotion-text {
      font-size: 1em;
      color: #333;
      margin-bottom: 15px;
    }

    .page-tai-rio66__promo-button {
      display: inline-block;
      background-color: #0056b3;
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      margin-top: auto; /* Push button to bottom */
    }

    .page-tai-rio66__promo-button:hover {
      background-color: #003d82;
    }

    .page-tai-rio66__faq-section {
      padding: 40px 0;
      background-color: #f0f8ff;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-tai-rio66__faq-item {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .page-tai-rio66__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #e9f5ff;
      color: #0056b3;
      font-weight: bold;
      font-size: 1.1em;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-tai-rio66__faq-question:hover {
      background-color: #d0e9ff;
    }

    .page-tai-rio66__faq-question h3 {
      margin: 0;
      pointer-events: none; /* Prevent h3 from blocking click event */
      flex-grow: 1;
      color: #0056b3; /* Ensure contrast */
    }

    .page-tai-rio66__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 10px;
      pointer-events: none; /* Prevent toggle from blocking click event */
      transition: transform 0.3s ease;
    }

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

    .page-tai-rio66__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.3s ease;
      background-color: #fff;
      color: #333;
    }

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

    .page-tai-rio66__faq-answer p {
      margin: 0;
      padding-bottom: 10px;
    }
    .page-tai-rio66__faq-answer p:last-child {
      padding-bottom: 0;
    }

    .page-tai-rio66__floating-buttons-container {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .page-tai-rio66__floating-button {
      background-color: #ff4500; /* OrangeRed */
      color: #fff;
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.05em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-align: center;
      min-width: 120px;
      border: none;
      cursor: pointer;
    }

    .page-tai-rio66__floating-button--login {
      background-color: #007bff; /* Blue for login */
    }

    .page-tai-rio66__floating-button:hover {
      background-color: #e63900;
      transform: translateY(-3px);
    }
    .page-tai-rio66__floating-button--login:hover {
      background-color: #0056b3;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-tai-rio66__hero-title {
        font-size: 2.5em;
      }
      .page-tai-rio66__hero-description {
        font-size: 1.1em;
      }
      .page-tai-rio66__step-item {
        width: calc(50% - 20px);
      }
    }

    @media (max-width: 768px) {
      .page-tai-rio66__container {
        padding: 15px;
      }
      .page-tai-rio66__hero-section {
        padding: 40px 15px;
      }
      .page-tai-rio66__hero-title {
        font-size: 2em;
      }
      .page-tai-rio66__hero-description {
        font-size: 1em;
      }
      .page-tai-rio66__download-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-tai-rio66__section-title {
        font-size: 1.8em;
      }
      .page-tai-rio66__download-steps {
        flex-direction: column;
        align-items: center;
      }
      .page-tai-rio66__step-item {
        width: 100% !important;
        max-width: 400px;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px;
      }
      .page-tai-rio66__game-showcase,
      .page-tai-rio66__promotion-grid {
        grid-template-columns: 1fr;
      }
      .page-tai-rio66__game-card,
      .page-tai-rio66__promotion-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-tai-rio66__game-image,
      .page-tai-rio66__promotion-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-tai-rio66__faq-question {
        font-size: 1em;
        padding: 12px 15px;
      }
      .page-tai-rio66__faq-answer {
        padding: 15px 15px !important;
      }
      .page-tai-rio66__floating-buttons-container {
        bottom: 15px;
        right: 15px;
        gap: 10px;
      }
      .page-tai-rio66__floating-button {
        padding: 10px 20px;
        font-size: 0.95em;
        min-width: 100px;
      }
      .page-tai-rio66__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      /* Ensure list containers are also responsive */
      .page-tai-rio66__download-steps,
      .page-tai-rio66__game-showcase,
      .page-tai-rio66__promotion-grid {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
    }

    @media (max-width: 480px) {
      .page-tai-rio66__hero-title {
        font-size: 1.8em;
      }
      .page-tai-rio66__section-title {
        font-size: 1.5em;
      }
    }
  