
    /* Page specific styles for 'b-t-c-n-h' */
    :root {
      --page-b-t-c-n-h-primary-bg: #1a1a2e;
      --page-b-t-c-n-h-secondary-bg: #2a2a4a;
      --page-b-t-c-n-h-text-color: #e0e0e0;
      --page-b-t-c-n-h-accent-primary: #e94560;
      --page-b-t-c-n-h-accent-secondary: #00b894;
      --page-b-t-c-n-h-highlight-color: #ffcc00;
      --page-b-t-c-n-h-border-color: rgba(255, 255, 255, 0.1);
      --page-b-t-c-n-h-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      --header-offset: 122px; /* Default value, will be overridden by shared.css */
    }

    .page-b-t-c-n-h {
      font-family: 'Arial', sans-serif;
      background-color: var(--page-b-t-c-n-h-primary-bg);
      color: var(--page-b-t-c-n-h-text-color);
      line-height: 1.6;
      overflow-x: hidden;
      padding-top: 10px; /* Small top padding, assuming body has header offset */
    }

    .page-b-t-c-n-h__section-title {
      font-size: 2.5em;
      color: var(--page-b-t-c-n-h-highlight-color);
      text-align: center;
      margin-bottom: 40px;
      padding: 0 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-b-t-c-n-h__section-description {
      text-align: center;
      margin-bottom: 30px;
      font-size: 1.1em;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      padding: 0 15px;
    }

    .page-b-t-c-n-h__content-wrapper {
      max-width: 900px;
      margin: 0 auto 50px auto;
      padding: 0 15px;
      text-align: justify;
    }

    .page-b-t-c-n-h__content-wrapper p {
      margin-bottom: 1em;
    }

    .page-b-t-c-n-h__hero-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 60px 20px;
      background: linear-gradient(135deg, var(--page-b-t-c-n-h-primary-bg), #0f0f1d);
      min-height: 500px;
      position: relative;
      overflow: hidden;
      border-bottom: 2px solid var(--page-b-t-c-n-h-border-color);
    }

    .page-b-t-c-n-h__hero-image-wrapper {
      width: 100%;
      max-width: 800px;
      margin-top: 40px;
      overflow: hidden;
      border-radius: 15px;
      box-shadow: var(--page-b-t-c-n-h-box-shadow);
    }

    .page-b-t-c-n-h__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    .page-b-t-c-n-h__hero-title {
      font-size: 3.5em;
      color: var(--page-b-t-c-n-h-highlight-color);
      margin-bottom: 20px;
      text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    }

    .page-b-t-c-n-h__hero-description {
      font-size: 1.3em;
      color: var(--page-b-t-c-n-h-text-color);
      max-width: 800px;
      margin: 0 auto 30px auto;
    }

    .page-b-t-c-n-h__hero-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .page-b-t-c-n-h__button {
      display: inline-block;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: all 0.3s ease;
      cursor: pointer;
      border: none;
      text-align: center;
    }

    .page-b-t-c-n-h__button--primary {
      background-color: var(--page-b-t-c-n-h-accent-primary);
      color: #ffffff;
      box-shadow: var(--page-b-t-c-n-h-box-shadow);
    }

    .page-b-t-c-n-h__button--primary:hover {
      background-color: #f76b83;
      transform: translateY(-3px);
    }

    .page-b-t-c-n-h__button--secondary {
      background-color: transparent;
      color: var(--page-b-t-c-n-h-accent-secondary);
      border: 2px solid var(--page-b-t-c-n-h-accent-secondary);
    }

    .page-b-t-c-n-h__button--secondary:hover {
      background-color: var(--page-b-t-c-n-h-accent-secondary);
      color: #ffffff;
      transform: translateY(-3px);
    }

    .page-b-t-c-n-h__button--small {
      padding: 10px 20px;
      font-size: 0.9em;
      border-radius: 25px;
    }

    .page-b-t-c-n-h__about-section,
    .page-b-t-c-n-h__features-section,
    .page-b-t-c-n-h__how-to-play-section,
    .page-b-t-c-n-h__games-section,
    .page-b-t-c-n-h__promotions-section,
    .page-b-t-c-n-h__faq-section,
    .page-b-t-c-n-h__cta-section {
      padding: 80px 20px;
      border-bottom: 1px solid var(--page-b-t-c-n-h-border-color);
    }

    .page-b-t-c-n-h__features-grid,
    .page-b-t-c-n-h__steps-grid,
    .page-b-t-c-n-h__games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-b-t-c-n-h__feature-item,
    .page-b-t-c-n-h__step-item,
    .page-b-t-c-n-h__game-card,
    .page-b-t-c-n-h__promo-card {
      background-color: var(--page-b-t-c-n-h-secondary-bg);
      border-radius: 15px;
      padding: 30px;
      text-align: center;
      box-shadow: var(--page-b-t-c-n-h-box-shadow);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-b-t-c-n-h__feature-item:hover,
    .page-b-t-c-n-h__step-item:hover,
    .page-b-t-c-n-h__game-card:hover,
    .page-b-t-c-n-h__promo-card:hover {
      transform: translateY(-10px);
    }

    .page-b-t-c-n-h__feature-icon,
    .page-b-t-c-n-h__step-image,
    .page-b-t-c-n-h__game-image,
    .page-b-t-c-n-h__promo-image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      margin-bottom: 20px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      object-fit: cover;
    }

    .page-b-t-c-n-h__feature-title,
    .page-b-t-c-n-h__step-title,
    .page-b-t-c-n-h__game-title,
    .page-b-t-c-n-h__promo-title {
      font-size: 1.5em;
      color: var(--page-b-t-c-n-h-accent-secondary);
      margin-bottom: 15px;
    }

    .page-b-t-c-n-h__game-provider {
      font-size: 0.9em;
      color: var(--page-b-t-c-n-h-text-color);
      opacity: 0.7;
      margin-top: 10px;
    }

    .page-b-t-c-n-h__promo-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-b-t-c-n-h__promo-action {
      margin-top: 25px;
    }

    .page-b-t-c-n-h__cta-section {
      text-align: center;
      padding: 100px 20px;
      background: linear-gradient(45deg, var(--page-b-t-c-n-h-accent-primary), #a12a3d);
    }

    .page-b-t-c-n-h__cta-title {
      font-size: 3em;
      color: #ffffff;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-b-t-c-n-h__cta-description {
      font-size: 1.2em;
      color: #ffffff;
      max-width: 700px;
      margin: 0 auto 40px auto;
    }

    /* FAQ Styles */
    .page-b-t-c-n-h__faq-container {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-b-t-c-n-h__faq-item {
      background-color: var(--page-b-t-c-n-h-secondary-bg);
      border-radius: 10px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: var(--page-b-t-c-n-h-box-shadow);
    }

    .page-b-t-c-n-h__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #3a3a5a;
      border-bottom: 1px solid var(--page-b-t-c-n-h-border-color);
      transition: background-color 0.3s ease;
    }

    .page-b-t-c-n-h__faq-question:hover {
      background-color: #4a4a6a;
    }

    .page-b-t-c-n-h__faq-title {
      font-size: 1.2em;
      color: var(--page-b-t-c-n-h-highlight-color);
      margin: 0;
      pointer-events: none; /* Prevent click event from being blocked by H3 */
      flex-grow: 1;
      text-align: left;
    }

    .page-b-t-c-n-h__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-b-t-c-n-h-accent-primary);
      margin-left: 15px;
      pointer-events: none; /* Prevent click event from being blocked by span */
      width: 30px; /* Fixed width for consistent alignment */
      text-align: center;
      flex-shrink: 0;
    }

    .page-b-t-c-n-h__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      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-b-t-c-n-h-text-color);
    }

    .page-b-t-c-n-h__faq-item.active .page-b-t-c-n-h__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain any content */
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-b-t-c-n-h__faq-item.active .page-b-t-c-n-h__faq-question {
      background-color: #4a4a6a;
    }

    .page-b-t-c-n-h__faq-item.active .page-b-t-c-n-h__faq-toggle {
      color: var(--page-b-t-c-n-h-accent-secondary);
      transform: rotate(45deg); /* Optional: Animate the plus to an 'x' or rotate to a dash */
    }

    .page-b-t-c-n-h__faq-answer p {
      margin-bottom: 1em;
    }

    .page-b-t-c-n-h__faq-answer p:last-child {
      margin-bottom: 0;
    }

    .page-b-t-c-n-h__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      background-color: rgba(26, 26, 46, 0.9);
      padding: 10px 20px;
      border-radius: 50px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
    }

    .page-b-t-c-n-h__floating-button {
      display: block;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      transition: all 0.3s ease;
      text-align: center;
    }

    .page-b-t-c-n-h__floating-button--register {
      background-color: var(--page-b-t-c-n-h-accent-primary);
      color: #ffffff;
    }

    .page-b-t-c-n-h__floating-button--register:hover {
      background-color: #f76b83;
      transform: translateY(-2px);
    }

    .page-b-t-c-n-h__floating-button--login {
      background-color: var(--page-b-t-c-n-h-accent-secondary);
      color: #ffffff;
    }

    .page-b-t-c-n-h__floating-button--login:hover {
      background-color: #00d4a7;
      transform: translateY(-2px);
    }

    .keyword {
      color: var(--page-b-t-c-n-h-highlight-color);
      font-weight: bold;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-b-t-c-n-h__hero-title {
        font-size: 3em;
      }
      .page-b-t-c-n-h__section-title {
        font-size: 2em;
      }
      .page-b-t-c-n-h__cta-title {
        font-size: 2.5em;
      }
    }

    @media (max-width: 768px) {
      .page-b-t-c-n-h__hero-section {
        padding: 40px 15px;
      }
      .page-b-t-c-n-h__hero-title {
        font-size: 2.5em;
      }
      .page-b-t-c-n-h__hero-description {
        font-size: 1.1em;
      }
      .page-b-t-c-n-h__hero-buttons {
        flex-direction: column;
        gap: 15px;
      }
      .page-b-t-c-n-h__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
      }

      .page-b-t-c-n-h__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }
      .page-b-t-c-n-h__about-section,
      .page-b-t-c-n-h__features-section,
      .page-b-t-c-n-h__how-to-play-section,
      .page-b-t-c-n-h__games-section,
      .page-b-t-c-n-h__promotions-section,
      .page-b-t-c-n-h__faq-section,
      .page-b-t-c-n-h__cta-section {
        padding: 60px 15px;
      }

      .page-b-t-c-n-h__features-grid,
      .page-b-t-c-n-h__steps-grid,
      .page-b-t-c-n-h__games-grid,
      .page-b-t-c-n-h__promo-cards {
        grid-template-columns: 1fr;
        gap: 25px;
      }

      .page-b-t-c-n-h__feature-item,
      .page-b-t-c-n-h__step-item,
      .page-b-t-c-n-h__game-card,
      .page-b-t-c-n-h__promo-card {
        padding: 25px;
        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-b-t-c-n-h__feature-icon,
      .page-b-t-c-n-h__step-image,
      .page-b-t-c-n-h__game-image,
      .page-b-t-c-n-h__promo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-b-t-c-n-h__cta-title {
        font-size: 2em;
      }
      .page-b-t-c-n-h__cta-description {
        font-size: 1em;
      }

      .page-b-t-c-n-h__faq-question {
        padding: 18px 20px;
      }
      .page-b-t-c-n-h__faq-title {
        font-size: 1.1em;
      }
      .page-b-t-c-n-h__faq-answer {
        padding: 0 20px;
      }
      .page-b-t-c-n-h__faq-item.active .page-b-t-c-n-h__faq-answer {
        padding: 15px 20px !important;
      }
      .page-b-t-c-n-h__faq-toggle {
        font-size: 1.5em;
      }

      .page-b-t-c-n-h__floating-buttons {
        width: calc(100% - 40px);
        gap: 10px;
        padding: 10px 15px;
      }
      .page-b-t-c-n-h__floating-button {
        flex: 1;
        padding: 10px 15px;
        font-size: 0.9em;
      }
    }

    @media (max-width: 480px) {
      .page-b-t-c-n-h__hero-title {
        font-size: 2em;
      }
      .page-b-t-c-n-h__section-title {
        font-size: 1.5em;
      }
      .page-b-t-c-n-h__cta-title {
        font-size: 1.8em;
      }
      .page-b-t-c-n-h__button {
        padding: 12px 25px;
        font-size: 1em;
      }
    }
  