
    :root {
      --page-85tobe-primary-color: #ffcc00; /* Gold/Yellow, matches betting theme */
      --page-85tobe-secondary-color: #333333; /* Dark grey */
      --page-85tobe-text-color: #ffffff; /* White text for dark backgrounds */
      --page-85tobe-dark-background: #1a1a1a; /* Dark background */
      --page-85tobe-light-background: #2a2a2a; /* Slightly lighter dark background */
      --page-85tobe-accent-color: #e0a800; /* Darker gold for hover */
      --page-85tobe-border-color: #444444;
    }

    .page-85tobe {
      font-family: 'Arial', sans-serif;
      color: var(--page-85tobe-text-color);
      background-color: var(--page-85tobe-dark-background);
      line-height: 1.6;
    }

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

    .page-85tobe__section-title {
      font-size: 2.5em;
      color: var(--page-85tobe-primary-color);
      text-align: center;
      margin-bottom: 40px;
      font-weight: bold;
      padding-top: 10px; /* Small decorative padding, body already handles main offset */
    }

    .page-85tobe__section-description {
      font-size: 1.1em;
      text-align: center;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: #cccccc;
    }

    /* Hero Section */
    .page-85tobe__hero-section {
      position: relative;
      width: 100%;
      height: 60vh; /* Responsive height */
      min-height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      background-color: var(--page-85tobe-light-background);
      padding-top: 10px; /* Decorative padding */
      box-sizing: border-box;
    }

    .page-85tobe__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      opacity: 0.4; /* Slightly dim image for text readability */
    }

    .page-85tobe__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding: 20px;
      background: rgba(0, 0, 0, 0.5); /* Semi-transparent background for text */
      border-radius: 10px;
    }

    .page-85tobe__hero-title {
      font-size: 3.5em;
      color: var(--page-85tobe-primary-color);
      margin-bottom: 20px;
      font-weight: bold;
      line-height: 1.2;
    }

    .page-85tobe__hero-description {
      font-size: 1.3em;
      color: var(--page-85tobe-text-color);
      margin-bottom: 30px;
    }

    .page-85tobe__hero-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
    }

    .page-85tobe__button {
      display: inline-block;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      font-size: 1.1em;
    }

    .page-85tobe__button--primary {
      background-color: var(--page-85tobe-primary-color);
      color: var(--page-85tobe-secondary-color);
    }

    .page-85tobe__button--primary:hover {
      background-color: var(--page-85tobe-accent-color);
      transform: translateY(-2px);
    }

    .page-85tobe__button--secondary {
      background-color: transparent;
      color: var(--page-85tobe-primary-color);
      border: 2px solid var(--page-85tobe-primary-color);
    }

    .page-85tobe__button--secondary:hover {
      background-color: var(--page-85tobe-primary-color);
      color: var(--page-85tobe-secondary-color);
      transform: translateY(-2px);
    }

    /* About Section */
    .page-85tobe__about-section {
      background-color: var(--page-85tobe-dark-background);
      padding: 60px 0;
    }

    /* Games Section */
    .page-85tobe__games-section {
      background-color: var(--page-85tobe-light-background);
      padding: 60px 0;
    }

    .page-85tobe__games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      justify-items: center;
    }

    .page-85tobe__game-card {
      background-color: var(--page-85tobe-dark-background);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease;
      width: 100%; /* Ensure it takes full width of grid column */
      max-width: 350px; /* Max width for individual card */
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-85tobe__game-card:hover {
      transform: translateY(-5px);
    }

    .page-85tobe__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100%; /* Responsive image */
      height: auto; /* Responsive image */
      box-sizing: border-box;
    }

    .page-85tobe__game-title {
      font-size: 1.8em;
      color: var(--page-85tobe-primary-color);
      margin: 20px 0 10px;
      padding: 0 15px;
    }

    .page-85tobe__game-description {
      font-size: 1em;
      color: #cccccc;
      padding: 0 15px 20px;
    }

    /* Promotions Section */
    .page-85tobe__promotions-section {
      background-color: var(--page-85tobe-dark-background);
      padding: 60px 0;
    }

    .page-85tobe__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      justify-items: center;
    }

    .page-85tobe__promotion-card {
      background-color: var(--page-85tobe-light-background);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease;
      width: 100%;
      max-width: 400px;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-85tobe__promotion-card:hover {
      transform: translateY(-5px);
    }

    .page-85tobe__promotion-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      max-width: 100%; /* Responsive image */
      height: auto; /* Responsive image */
      box-sizing: border-box;
    }

    .page-85tobe__promotion-title {
      font-size: 1.6em;
      color: var(--page-85tobe-primary-color);
      margin: 20px 0 10px;
      padding: 0 15px;
    }

    .page-85tobe__promotion-description {
      font-size: 1em;
      color: #cccccc;
      padding: 0 15px 20px;
    }

    /* Features Section */
    .page-85tobe__features-section {
      background-color: var(--page-85tobe-light-background);
      padding: 60px 0;
    }

    .page-85tobe__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      justify-items: center;
    }

    .page-85tobe__feature-item {
      background-color: var(--page-85tobe-dark-background);
      border-radius: 10px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.3s ease;
      width: 100%;
      max-width: 300px;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-85tobe__feature-item:hover {
      background-color: var(--page-85tobe-secondary-color);
      transform: translateY(-5px);
    }

    .page-85tobe__feature-icon {
      width: 80px; /* Display size, placeholder ensures source is >=200x200 */
      height: 80px;
      object-fit: contain;
      margin-bottom: 20px;
      max-width: 100%; /* Responsive image */
      height: auto; /* Responsive image */
      box-sizing: border-box;
    }

    .page-85tobe__feature-title {
      font-size: 1.5em;
      color: var(--page-85tobe-primary-color);
      margin-bottom: 15px;
    }

    .page-85tobe__feature-description {
      font-size: 0.95em;
      color: #cccccc;
    }

    /* FAQ Section */
    .page-85tobe__faq-section {
      background-color: var(--page-85tobe-dark-background);
      padding: 60px 0;
    }

    .page-85tobe__faq-list {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-85tobe__faq-item {
      background-color: var(--page-85tobe-light-background);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      width: 100%;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-85tobe__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 25px;
      cursor: pointer;
      background-color: var(--page-85tobe-secondary-color);
      color: var(--page-85tobe-text-color);
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

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

    .page-85tobe__faq-question-text {
      margin: 0;
      color: var(--page-85tobe-text-color);
      font-size: 1em; /* Adjust to match parent font size */
      pointer-events: none; /* Prevent text from blocking click event */
    }

    .page-85tobe__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--page-85tobe-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

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

    .page-85tobe__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: var(--page-85tobe-light-background);
      color: #cccccc;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      font-size: 1em;
    }

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

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


    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-85tobe__hero-title {
        font-size: 3em;
      }
      .page-85tobe__hero-description {
        font-size: 1.2em;
      }
      .page-85tobe__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-85tobe__hero-section {
        height: 70vh;
        min-height: 350px;
      }
      .page-85tobe__hero-title {
        font-size: 2.2em;
      }
      .page-85tobe__hero-description {
        font-size: 1em;
      }
      .page-85tobe__hero-buttons {
        flex-direction: column;
        gap: 15px;
      }
      .page-85tobe__button {
        width: 80%;
        margin: 0 auto;
        padding: 12px 20px;
      }

      .page-85tobe__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }
      .page-85tobe__section-description {
        font-size: 0.95em;
      }

      /* Responsive list items */
      .page-85tobe__games-grid,
      .page-85tobe__promotions-grid,
      .page-85tobe__features-grid {
        grid-template-columns: 1fr; /* Single column for mobile */
        gap: 20px;
      }

      .page-85tobe__game-card,
      .page-85tobe__promotion-card,
      .page-85tobe__feature-item,
      .page-85tobe__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-85tobe__game-card, .page-85tobe__promotion-card, .page-85tobe__feature-item {
        padding: 20px 15px; /* Adjust padding for smaller screens */
      }

      .page-85tobe__game-image,
      .page-85tobe__promotion-image,
      .page-85tobe__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-85tobe__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }
      .page-85tobe__faq-answer {
        padding: 0 20px;
      }
      .page-85tobe__faq-item.active .page-85tobe__faq-answer {
        padding: 15px 20px !important;
      }
      .page-85tobe__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-85tobe__faq-question-text {
        font-size: 0.95em;
      }
    }

    @media (max-width: 480px) {
      .page-85tobe__hero-title {
        font-size: 1.8em;
      }
      .page-85tobe__hero-description {
        font-size: 0.9em;
      }
      .page-85tobe__button {
        width: 90%;
      }
      .page-85tobe__section-title {
        font-size: 1.5em;
      }
      .page-85tobe__faq-question {
        font-size: 1em;
      }
      .page-85tobe__faq-question-text {
        font-size: 0.9em;
      }
    }
  