
    /* CSS styles for the 30tr88 page */
    :root {
      --page-30tr88-primary-color: #f0b90b; /* Gold/Yellow */
      --page-30tr88-secondary-color: #1a1a1a; /* Dark background */
      --page-30tr88-text-color: #f0f0f0; /* Light text */
      --page-30tr88-accent-color: #00ff80; /* Bright Green */
      --page-30tr88-dark-grey: #2a2a2a;
      --page-30tr88-light-grey: #cccccc;
    }

    body {
      font-family: 'Arial', sans-serif;
      margin: 0;
      padding: 0;
      background-color: var(--page-30tr88-secondary-color);
      color: var(--page-30tr88-text-color);
      line-height: 1.6;
      /* Fallback for header offset if shared.css doesn't provide it */
      padding-top: var(--header-offset, 122px);
    }

    .page-30tr88 {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0; /* Main container handles padding for responsive design */
      overflow-x: hidden; /* Prevent horizontal scroll */
    }

    /* General Section Styling */
    .page-30tr88__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: var(--page-30tr88-dark-grey);
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-30tr88__section:first-of-type {
      padding-top: 10px; /* Small decorative top padding as body already has offset */
    }

    .page-30tr88__heading {
      color: var(--page-30tr88-primary-color);
      text-align: center;
      margin-bottom: 30px;
      font-size: 2.5em;
      position: relative;
      padding-bottom: 10px;
    }

    .page-30tr88__heading::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--page-30tr88-accent-color);
      border-radius: 2px;
    }

    .page-30tr88__subheading {
      color: var(--page-30tr88-text-color);
      text-align: center;
      margin-bottom: 20px;
      font-size: 1.8em;
    }

    .page-30tr88__text {
      font-size: 1.1em;
      text-align: justify;
      margin-bottom: 15px;
      color: var(--page-30tr88-light-grey);
    }

    .page-30tr88__text strong {
      color: var(--page-30tr88-primary-color);
    }

    /* Hero Section */
    .page-30tr88__hero-section {
      text-align: center;
      padding: 10px 0 40px 0; /* Small top padding, larger bottom */
      background-color: var(--page-30tr88-secondary-color);
      position: relative;
      overflow: hidden;
    }

    .page-30tr88__hero-image {
      width: 100%;
      height: auto;
      max-height: 500px;
      object-fit: cover;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease-in-out;
    }

    .page-30tr88__hero-image:hover {
      transform: scale(1.02);
    }

    .page-30tr88__hero-content {
      position: relative;
      z-index: 2;
      padding: 20px;
      max-width: 800px;
      margin: -100px auto 0 auto; /* Overlap with image slightly for effect */
      background-color: rgba(26, 26, 26, 0.85); /* Slightly transparent dark background */
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
    }

    .page-30tr88__hero-title {
      font-size: 3.5em;
      color: var(--page-30tr88-primary-color);
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-30tr88__hero-description {
      font-size: 1.3em;
      color: var(--page-30tr88-light-grey);
      margin-bottom: 25px;
    }

    /* Floating Buttons */
    .page-30tr88__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-30tr88__floating-button {
      background-color: var(--page-30tr88-primary-color);
      color: var(--page-30tr88-secondary-color);
      padding: 12px 25px;
      border-radius: 30px;
      font-weight: bold;
      text-decoration: none;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      font-size: 1.1em;
      cursor: pointer;
      border: none; /* Ensure it looks like a button */
    }

    .page-30tr88__floating-button:hover {
      background-color: #e0a800; /* Slightly darker gold */
      transform: translateY(-3px);
    }

    .page-30tr88__floating-button--login {
      background-color: var(--page-30tr88-accent-color);
      color: var(--page-30tr88-secondary-color);
    }

    .page-30tr88__floating-button--login:hover {
      background-color: #00e673; /* Slightly darker green */
    }

    /* Product Display */
    .page-30tr88__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      padding: 0 20px;
      justify-items: center; /* Center items in the grid */
    }

    .page-30tr88__product-card {
      background-color: var(--page-30tr88-secondary-color);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      width: 100%;
      max-width: 350px; /* Limit card width */
      display: flex;
      flex-direction: column;
    }

    .page-30tr88__product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    }

    .page-30tr88__product-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 3px solid var(--page-30tr88-primary-color);
    }

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

    .page-30tr88__product-title {
      font-size: 1.5em;
      color: var(--page-30tr88-primary-color);
      margin-bottom: 10px;
    }

    .page-30tr88__product-description {
      font-size: 1em;
      color: var(--page-30tr88-light-grey);
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-30tr88__product-button {
      display: inline-block;
      background-color: var(--page-30tr88-accent-color);
      color: var(--page-30tr88-secondary-color);
      padding: 10px 20px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none;
    }

    .page-30tr88__product-button:hover {
      background-color: #00e673;
    }

    /* Promotions Section */
    .page-30tr88__promotion-card {
      background: linear-gradient(135deg, var(--page-30tr88-dark-grey), #3a3a3a);
      border-radius: 12px;
      padding: 30px;
      margin: 0 20px;
      text-align: center;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
      position: relative;
      overflow: hidden;
    }

    .page-30tr88__promotion-card::before {
      content: '⚡';
      position: absolute;
      top: 15px;
      left: 15px;
      font-size: 3em;
      opacity: 0.2;
      color: var(--page-30tr88-primary-color);
    }

    .page-30tr88__promotion-title {
      font-size: 2em;
      color: var(--page-30tr88-primary-color);
      margin-bottom: 15px;
    }

    .page-30tr88__promotion-description {
      font-size: 1.1em;
      color: var(--page-30tr88-light-grey);
      margin-bottom: 25px;
    }

    .page-30tr88__promotion-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 20px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-30tr88__promotion-link {
      display: inline-block;
      background-color: var(--page-30tr88-accent-color);
      color: var(--page-30tr88-secondary-color);
      padding: 12px 30px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      font-size: 1.1em;
    }

    .page-30tr88__promotion-link:hover {
      background-color: #00e673;
      transform: translateY(-3px);
    }

    /* Payment Methods & Game Providers */
    .page-30tr88__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      padding: 0 20px;
      justify-items: center;
      align-items: center;
    }

    .page-30tr88__logo-item {
      background-color: var(--page-30tr88-secondary-color);
      border-radius: 8px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      width: 100%;
      max-width: 200px;
      box-sizing: border-box; /* Crucial for grid layout */
    }

    .page-30tr88__logo-item:hover {
      transform: translateY(-5px);
    }

    .page-30tr88__logo-image {
      max-width: 100%;
      height: auto;
      max-height: 80px; /* Limit height to keep logos consistent */
      object-fit: contain;
      margin-bottom: 10px;
    }

    .page-30tr88__logo-name {
      font-size: 0.9em;
      color: var(--page-30tr88-light-grey);
      font-weight: bold;
    }

    /* FAQ Section */
    .page-30tr88__faq-section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: var(--page-30tr88-dark-grey);
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-30tr88__faq-item {
      background-color: var(--page-30tr88-secondary-color);
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      overflow: hidden;
      border: 1px solid #333;
    }

    .page-30tr88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #2a2a2a;
      border-bottom: 1px solid #333;
      transition: background-color 0.3s ease;
    }

    .page-30tr88__faq-question:hover {
      background-color: #3a3a3a;
    }

    .page-30tr88__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-30tr88-primary-color);
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-30tr88__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-30tr88-accent-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-30tr88__faq-item.active .page-30tr88__faq-toggle {
      transform: rotate(45deg); /* Change + to X-like or similar */
      color: var(--page-30tr88-primary-color);
    }

    .page-30tr88__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: var(--page-30tr88-secondary-color);
      color: var(--page-30tr88-light-grey);
    }

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

    .page-30tr88__faq-answer p {
      margin: 0 0 10px 0;
      font-size: 1em;
    }
    .page-30tr88__faq-answer p:last-child {
      margin-bottom: 0;
    }

    /* General Lists */
    .page-30tr88__list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      justify-content: center;
    }

    .page-30tr88__list-item {
      background-color: var(--page-30tr88-secondary-color);
      border-radius: 8px;
      padding: 15px 20px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
      flex: 1 1 auto; /* Allow items to grow/shrink */
      min-width: 280px; /* Minimum width for items */
      max-width: 380px;
      text-align: center;
      color: var(--page-30tr88-light-grey);
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-sizing: border-box;
    }

    .page-30tr88__list-item:hover {
      background-color: #3a3a3a;
      transform: translateY(-3px);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-30tr88__heading {
        font-size: 2em;
      }

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

      .page-30tr88__hero-description {
        font-size: 1.1em;
      }

      .page-30tr88__floating-buttons {
        flex-direction: row;
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
        bottom: 15px;
        justify-content: space-around;
      }

      .page-30tr88__floating-button {
        flex: 1;
        padding: 10px 15px;
        font-size: 1em;
      }

      .page-30tr88__product-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
      }

      .page-30tr88__product-card {
        max-width: 100%;
      }

      .page-30tr88__promotion-card {
        padding: 20px;
        margin: 0 15px;
      }

      .page-30tr88__promotion-title {
        font-size: 1.8em;
      }

      .page-30tr88__logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        padding: 0 15px;
      }

      .page-30tr88__logo-item {
        max-width: 100%;
      }

      .page-30tr88__list {
        flex-direction: column;
        gap: 10px;
        padding: 0 15px;
      }

      .page-30tr88__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-30tr88__faq-question {
        padding: 12px 15px;
      }

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

      .page-30tr88__faq-answer {
        padding: 0 15px; /* Adjust initial padding */
      }

      .page-30tr88__faq-item.active .page-30tr88__faq-answer {
        padding: 15px !important; /* Adjust expanded padding */
      }

      /* Image responsive optimization */
      .page-30tr88 img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-30tr88__hero-image {
        max-height: 300px !important;
      }
      .page-30tr88__product-image {
        height: 180px !important;
      }
      .page-30tr88__promotion-image {
        max-width: 100% !important;
      }
      .page-30tr88__logo-image {
        max-height: 60px !important;
      }

      .page-30tr88__section {
        padding: 30px 15px;
      }
      .page-30tr88__hero-content {
        margin-top: -80px;
        padding: 15px;
      }
    }

    @media (max-width: 480px) {
      .page-30tr88__hero-title {
        font-size: 2em;
      }
      .page-30tr88__hero-description {
        font-size: 1em;
      }
      .page-30tr88__floating-button {
        font-size: 0.9em;
        padding: 8px 10px;
      }
    }
  