
    /* CSS Styles for page-tt88bookmaker */
    .page-tt88bookmaker {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #000000; /* Black background */
      color: #FFFFFF; /* White text */
      line-height: 1.6;
      padding-bottom: 80px; /* Space for fixed login button */
      overflow-x: hidden; /* Prevent horizontal scroll */
    }

    .page-tt88bookmaker__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      box-sizing: border-box;
    }

    .page-tt88bookmaker__hero-section {
      text-align: center;
      padding: 150px 0 50px; /* Adjusted padding-top for fixed header (140-180px safe zone) */
      background-color: #000000;
      overflow: hidden;
      position: relative;
    }

    .page-tt88bookmaker__hero-image-wrapper {
      width: 100%;
      max-width: 800px; /* Limit hero image width for better presentation */
      margin: 0 auto;
      overflow: hidden;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-tt88bookmaker__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 10px;
      object-fit: contain; /* Ensure image fits without cropping */
    }

    .page-tt88bookmaker__hero-content {
      margin-top: 30px;
      padding: 0 15px;
    }

    .page-tt88bookmaker__hero-title {
      font-size: 2.8em;
      color: #FFD700; /* Yellow for headings */
      margin-bottom: 15px;
      word-wrap: break-word; /* Ensure long titles break */
      text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
    }

    .page-tt88bookmaker__hero-description {
      font-size: 1.1em;
      color: #E0E0E0;
      margin-bottom: 30px;
    }

    .page-tt88bookmaker__promo-button {
      display: inline-block;
      background-color: #FFD700; /* Yellow button */
      color: #000000; /* Black text on button */
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    }

    .page-tt88bookmaker__promo-button:hover {
      background-color: #FFC400;
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5);
    }

    .page-tt88bookmaker__floating-login-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #FFD700; /* Yellow */
      color: #000000; /* Black */
      padding: 15px 25px;
      border-radius: 50px;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
      z-index: 1000;
      animation: page-tt88bookmaker__pulse 2s infinite;
      border: none;
      cursor: pointer;
      text-align: center;
      text-decoration: none;
      display: block;
      width: auto;
      max-width: 280px; /* Max width for button on mobile */
      white-space: nowrap; /* Prevent text from wrapping too early */
    }

    @keyframes page-tt88bookmaker__pulse {
      0% { transform: translateX(-50%) scale(1); box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4); }
      50% { transform: translateX(-50%) scale(1.05); box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6); }
      100% { transform: translateX(-50%) scale(1); box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4); }
    }

    .page-tt88bookmaker__section {
      padding: 60px 0;
      background-color: #000000;
      color: #FFFFFF;
    }

    .page-tt88bookmaker__section-title {
      font-size: 2.2em;
      color: #FFD700;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
      text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
    }

    .page-tt88bookmaker__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: 0;
      width: 80px;
      height: 4px;
      background-color: #FFD700;
      border-radius: 2px;
    }

    .page-tt88bookmaker__text-block {
      margin-bottom: 20px;
      font-size: 1em;
      color: #E0E0E0;
    }

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

    .page-tt88bookmaker__game-card {
      background-color: #1A1A1A;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      text-align: center;
      padding-bottom: 20px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Ensure padding/border included in width */
    }

    .page-tt88bookmaker__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }

    .page-tt88bookmaker__game-image-wrapper {
      width: 100%;
      height: 180px; /* Fixed height for consistency */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 15px;
      box-sizing: border-box;
    }

    .page-tt88bookmaker__game-image {
      width: 100%; /* Ensure image fills container */
      height: 100%; /* Ensure image fills container */
      object-fit: cover; /* Cover the area without distorting aspect ratio */
      display: block;
    }

    .page-tt88bookmaker__game-title {
      font-size: 1.4em;
      color: #FFD700;
      margin-bottom: 10px;
      padding: 0 15px;
      word-wrap: break-word;
    }

    .page-tt88bookmaker__game-description {
      font-size: 0.95em;
      color: #B0B0B0;
      padding: 0 15px;
    }

    .page-tt88bookmaker__features-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-tt88bookmaker__feature-item {
      background-color: #1A1A1A;
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Required for list items */
    }

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

    .page-tt88bookmaker__feature-icon-wrapper {
      width: 100px;
      height: 100px;
      margin: 0 auto 20px;
      background-color: #FFD700;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-tt88bookmaker__feature-icon {
      width: 80px; /* Adjust size of icon within wrapper */
      height: 80px;
      object-fit: contain;
      display: block;
    }

    .page-tt88bookmaker__feature-title {
      font-size: 1.5em;
      color: #FFD700;
      margin-bottom: 10px;
      word-wrap: break-word;
    }

    .page-tt88bookmaker__feature-description {
      font-size: 0.95em;
      color: #B0B0B0;
    }

    .page-tt88bookmaker__promo-card {
      background-color: #1A1A1A;
      border-radius: 10px;
      padding: 30px;
      margin-bottom: 20px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-tt88bookmaker__promo-title {
      font-size: 1.8em;
      color: #FFD700;
      margin-bottom: 15px;
      word-wrap: break-word;
    }

    .page-tt88bookmaker__promo-text {
      font-size: 1.1em;
      color: #E0E0E0;
      margin-bottom: 20px;
    }

    .page-tt88bookmaker__steps-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-tt88bookmaker__step-item {
      background-color: #1A1A1A;
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      box-sizing: border-box; /* Required for list items */
    }

    .page-tt88bookmaker__step-number {
      font-size: 2.5em;
      color: #FFD700;
      font-weight: bold;
      margin-bottom: 15px;
    }

    .page-tt88bookmaker__step-title {
      font-size: 1.5em;
      color: #FFD700;
      margin-bottom: 10px;
      word-wrap: break-word;
    }

    .page-tt88bookmaker__step-description {
      font-size: 0.95em;
      color: #B0B0B0;
    }

    .page-tt88bookmaker__faq-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
    }

    .page-tt88bookmaker__faq-item {
      background-color: #1A1A1A;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

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

    .page-tt88bookmaker__faq-question:hover {
      background-color: #3A3A3A;
    }

    .page-tt88bookmaker__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #FFD700;
      pointer-events: none; /* Prevent h3 from intercepting click */
      flex-grow: 1;
      word-wrap: break-word; /* Ensure long questions break */
      overflow-wrap: break-word;
    }

    .page-tt88bookmaker__faq-toggle {
      font-size: 1.5em;
      margin-left: 15px;
      line-height: 1;
      pointer-events: none; /* Prevent toggle from intercepting click */
      transition: transform 0.3s ease;
    }

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

    .page-tt88bookmaker__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding 0 */
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #E0E0E0;
      font-size: 1em;
      opacity: 0;
    }

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

    /* General image responsive styles */
    .page-tt88bookmaker img {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover; /* Default object-fit for most images */
      box-sizing: border-box;
    }

    /* Mobile responsiveness */
    @media (max-width: 768px) {
      .page-tt88bookmaker__container {
        padding: 0 15px;
      }

      .page-tt88bookmaker__hero-section {
        padding-top: 150px; /* Ensure mobile hero padding-top is also respected */
        padding-bottom: 30px;
      }

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

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

      .page-tt88bookmaker__promo-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-tt88bookmaker__section {
        padding: 40px 0;
      }

      .page-tt88bookmaker__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }

      .page-tt88bookmaker__game-grid,
      .page-tt88bookmaker__features-list,
      .page-tt88bookmaker__steps-list {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-tt88bookmaker__game-card,
      .page-tt88bookmaker__feature-item,
      .page-tt88bookmaker__step-item,
      .page-tt88bookmaker__promo-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important; /* Adjust padding for mobile */
      }
      .page-tt88bookmaker__game-image-wrapper {
        height: 150px; /* Adjust height for mobile */
      }

      .page-tt88bookmaker__feature-icon-wrapper {
        width: 80px;
        height: 80px;
      }
      .page-tt88bookmaker__feature-icon {
        width: 60px;
        height: 60px;
      }

      .page-tt88bookmaker__faq-question {
        padding: 15px 20px;
        font-size: 1em;
      }

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

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

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

      .page-tt88bookmaker__floating-login-button {
        bottom: 15px;
        padding: 12px 20px;
        font-size: 1em;
        max-width: 90%; /* Allow button to take more width on mobile */
        white-space: normal; /* Allow text to wrap on mobile */
      }

      /* Image responsive overrides with !important */
      .page-tt88bookmaker img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-tt88bookmaker__hero-image-wrapper,
      .page-tt88bookmaker__game-image-wrapper,
      .page-tt88bookmaker__feature-icon-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important; /* Reset padding for containers */
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-tt88bookmaker__game-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
      }
    }
  