
    /* Page-specific styles for 2 bóng */
    :root {
      --page-2-b-ng-primary-color: #ff4500; /* OrangeRed */
      --page-2-b-ng-secondary-color: #ffd700; /* Gold */
      --page-2-b-ng-text-color: #ffffff;
      --page-2-b-ng-background-dark: #1a1a2e; /* Dark blue/purple */
      --page-2-b-ng-background-light: #2c2c54; /* Lighter dark blue/purple */
      --page-2-b-ng-accent-color: #00bcd4; /* Cyan */
      --page-2-b-ng-button-bg: #ff4500;
      --page-2-b-ng-button-text: #ffffff;
      --page-2-b-ng-border-radius: 8px;
      --page-2-b-ng-padding-section: 40px 20px;
      --page-2-b-ng-padding-card: 20px;
    }

    .page-2-b-ng {
      font-family: 'Arial', sans-serif;
      color: var(--page-2-b-ng-text-color);
      background-color: var(--page-2-b-ng-background-dark);
      line-height: 1.6;
      padding-top: 10px; /* Small top padding for hero section, assuming body has header offset */
    }

    .page-2-b-ng__section {
      padding: var(--page-2-b-ng-padding-section);
      margin-bottom: 20px;
      background-color: var(--page-2-b-ng-background-light);
      border-radius: var(--page-2-b-ng-border-radius);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
    }

    .page-2-b-ng__section--dark {
      background-color: var(--page-2-b-ng-background-dark);
    }

    .page-2-b-ng__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-2-b-ng__title {
      color: var(--page-2-b-ng-primary-color);
      margin-bottom: 25px;
      font-size: 2.5em;
      text-align: center;
    }

    .page-2-b-ng__subtitle {
      color: var(--page-2-b-ng-secondary-color);
      margin-bottom: 20px;
      font-size: 1.8em;
      text-align: center;
    }

    .page-2-b-ng__text {
      font-size: 1.1em;
      margin-bottom: 15px;
      color: #e0e0e0;
    }

    .page-2-b-ng__button {
      display: inline-block;
      background-color: var(--page-2-b-ng-button-bg);
      color: var(--page-2-b-ng-button-text);
      padding: 12px 25px;
      border-radius: var(--page-2-b-ng-border-radius);
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
      margin-top: 20px;
    }

    .page-2-b-ng__button:hover {
      background-color: #e63900; /* Darker orange */
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-2-b-ng__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('[GALLERY:hero:1920x1080:betting,sports,stadium]') no-repeat center center / cover;
      padding: 100px 20px;
      color: var(--page-2-b-ng-text-color);
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 60vh;
      border-radius: var(--page-2-b-ng-border-radius);
      margin-bottom: 20px;
      position: relative;
    }

    .page-2-b-ng__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: var(--page-2-b-ng-primary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-2-b-ng__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: var(--page-2-b-ng-secondary-color);
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    /* Floating Buttons */
    .page-2-b-ng__floating-btn-container {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
    }

    .page-2-b-ng__floating-btn {
      background-color: var(--page-2-b-ng-primary-color);
      color: var(--page-2-b-ng-text-color);
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      transition: background-color 0.3s ease, transform 0.2s ease;
      font-size: 1.1em;
      white-space: nowrap;
    }

    .page-2-b-ng__floating-btn:hover {
      background-color: #e63900;
      transform: translateY(-3px);
    }

    /* Product Display */
    .page-2-b-ng__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-2-b-ng__product-card {
      background-color: var(--page-2-b-ng-background-dark);
      border-radius: var(--page-2-b-ng-border-radius);
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      padding-bottom: 20px;
      display: flex;
      flex-direction: column;
    }

    .page-2-b-ng__product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    .page-2-b-ng__product-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #0d0d1a;
      border-bottom: 2px solid var(--page-2-b-ng-primary-color);
      box-sizing: border-box; /* Crucial for mobile responsiveness */
    }

    .page-2-b-ng__product-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      width: 100%; /* Ensure image fills wrapper width */
      height: 100%; /* Ensure image fills wrapper height */
    }

    .page-2-b-ng__product-title {
      font-size: 1.5em;
      color: var(--page-2-b-ng-secondary-color);
      margin: 15px 10px 10px;
    }

    .page-2-b-ng__product-description {
      font-size: 0.95em;
      color: #cccccc;
      padding: 0 15px;
      flex-grow: 1;
    }

    /* Features/Benefits Section */
    .page-2-b-ng__features-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
      list-style: none;
      padding: 0;
    }

    .page-2-b-ng__feature-item {
      background-color: var(--page-2-b-ng-background-dark);
      padding: var(--page-2-b-ng-padding-card);
      border-radius: var(--page-2-b-ng-border-radius);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      text-align: left;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      box-sizing: border-box; /* Crucial for mobile responsiveness */
    }

    .page-2-b-ng__feature-icon {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 5px;
      box-sizing: border-box;
      /* Ensuring images are not small icons - using larger sizes */
      min-width: 200px;
      min-height: 200px;
      object-fit: contain;
      margin-bottom: 15px;
    }

    .page-2-b-ng__feature-title {
      color: var(--page-2-b-ng-primary-color);
      font-size: 1.3em;
      margin-bottom: 10px;
    }

    .page-2-b-ng__feature-description {
      color: #e0e0e0;
      font-size: 1em;
    }

    /* Provider Logos */
    .page-2-b-ng__provider-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-2-b-ng__provider-logo-wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: var(--page-2-b-ng-background-dark);
      border-radius: var(--page-2-b-ng-border-radius);
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease;
      box-sizing: border-box;
      /* Ensuring images are not small icons - using larger sizes */
      min-width: 200px;
      min-height: 100px;
      width: auto; /* Allow natural width */
      padding: 10px;
    }
    .page-2-b-ng__provider-logo-wrapper:hover {
        transform: scale(1.05);
    }

    .page-2-b-ng__provider-logo {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      width: auto;
      height: auto;
      min-width: 200px; /* Enforce minimum size for provider logos */
      min-height: 100px;
    }

    /* FAQ Section */
    .page-2-b-ng__faq-list {
      margin-top: 30px;
      list-style: none;
      padding: 0;
    }

    .page-2-b-ng__faq-item {
      background-color: var(--page-2-b-ng-background-dark);
      margin-bottom: 15px;
      border-radius: var(--page-2-b-ng-border-radius);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      overflow: hidden;
      box-sizing: border-box; /* Crucial for mobile responsiveness */
    }

    .page-2-b-ng__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: var(--page-2-b-ng-background-light);
      cursor: pointer;
      user-select: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      transition: background-color 0.3s ease;
    }

    .page-2-b-ng__faq-question:hover {
      background-color: #3a3a6b;
    }

    .page-2-b-ng__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-2-b-ng-secondary-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

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

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

    .page-2-b-ng__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px; /* Initial smaller padding */
      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;
    }

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

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-2-b-ng__hero-title {
        font-size: 3em;
      }
      .page-2-b-ng__hero-subtitle {
        font-size: 1.3em;
      }
      .page-2-b-ng__title {
        font-size: 2.2em;
      }
      .page-2-b-ng__subtitle {
        font-size: 1.6em;
      }
    }

    @media (max-width: 768px) {
      .page-2-b-ng {
        padding-top: 5px; /* Adjust small top padding for mobile */
      }
      .page-2-b-ng__hero-section {
        padding: 80px 15px;
        min-height: 50vh;
      }
      .page-2-b-ng__hero-title {
        font-size: 2.5em;
      }
      .page-2-b-ng__hero-subtitle {
        font-size: 1.1em;
      }
      .page-2-b-ng__title {
        font-size: 1.8em;
      }
      .page-2-b-ng__subtitle {
        font-size: 1.4em;
      }
      .page-2-b-ng__section {
        padding: 30px 15px;
        margin-bottom: 15px;
      }
      .page-2-b-ng__button {
        padding: 10px 20px;
        font-size: 0.95em;
      }

      /* Floating buttons */
      .page-2-b-ng__floating-btn-container {
        flex-direction: column;
        gap: 10px;
        bottom: 15px;
      }
      .page-2-b-ng__floating-btn {
        width: 180px; /* Fixed width for better stacking */
        text-align: center;
        padding: 10px 15px;
        font-size: 1em;
      }

      /* List items mobile responsiveness */
      .page-2-b-ng__product-grid,
      .page-2-b-ng__features-list {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-2-b-ng__product-card,
      .page-2-b-ng__feature-item,
      .page-2-b-ng__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: var(--page-2-b-ng-padding-card) !important; /* Adjust padding for cards */
      }
      .page-2-b-ng__product-image-wrapper {
        height: 180px !important; /* Slightly smaller on mobile */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }
      .page-2-b-ng__product-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-2-b-ng__product-title {
        font-size: 1.3em;
      }
      .page-2-b-ng__product-description {
        font-size: 0.9em;
      }
      .page-2-b-ng__feature-icon {
        width: 100% !important; /* Ensure image fills container */
        height: auto !important;
        min-width: 200px !important;
        min-height: 200px !important;
        object-fit: contain !important;
      }
      .page-2-b-ng__feature-title {
        font-size: 1.2em;
      }
      .page-2-b-ng__provider-grid {
        gap: 15px;
      }
      .page-2-b-ng__provider-logo-wrapper {
        width: 100% !important;
        max-width: 250px !important; /* Max width for provider logos on mobile */
        min-width: 200px !important;
        min-height: 100px !important;
        height: auto !important;
        padding: 10px !important;
      }
      .page-2-b-ng__provider-logo {
        max-width: 100% !important;
        max-height: 100% !important;
        min-width: 200px !important;
        min-height: 100px !important;
        height: auto !important;
      }

      /* FAQ specific mobile adjustments */
      .page-2-b-ng__faq-question {
        padding: 12px 15px;
      }
      .page-2-b-ng__faq-question h3 {
        font-size: 1.1em;
      }
      .page-2-b-ng__faq-answer {
        padding: 0 15px;
        word-wrap: break-word !important; /* Ensure text wraps */
        overflow-wrap: break-word !important;
      }
      .page-2-b-ng__faq-item.active .page-2-b-ng__faq-answer {
        padding: 15px 15px !important;
      }
    }

    @media (max-width: 480px) {
      .page-2-b-ng__hero-title {
        font-size: 2em;
      }
      .page-2-b-ng__hero-subtitle {
        font-size: 1em;
      }
      .page-2-b-ng__title {
        font-size: 1.6em;
      }
      .page-2-b-ng__subtitle {
        font-size: 1.2em;
      }
      .page-2-b-ng__floating-btn {
        width: 160px;
        font-size: 0.9em;
      }
    }
  