
    /* Global styles for page-bet scope */
    .page-bet {
      background-color: #000000; /* Black background */
      color: #ffffff; /* Default white text */
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      overflow-x: hidden; /* Prevent horizontal scroll */
    }

    .page-bet__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-bet__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      text-align: center;
    }

    .page-bet__section--dark {
      background-color: #1a1a1a;
    }

    .page-bet__heading {
      color: #ffd700; /* Gold/Yellow for headings */
      font-size: 2.5em;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .page-bet__subheading {
      color: #ffffff;
      font-size: 1.8em;
      margin-bottom: 15px;
    }

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

    .page-bet__button {
      display: inline-block;
      background-color: #ffd700; /* Yellow button */
      color: #000000;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      margin-top: 20px;
    }

    .page-bet__button:hover {
      background-color: #ffeb3b;
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-bet__hero-section {
      padding-top: 10px; /* Safe zone for fixed header */
      background-color: #000000; /* Ensure black background */
      position: relative;
      overflow: hidden;
      margin-bottom: 0; /* No extra margin at bottom of hero */
    }

    .page-bet__hero-content {
      position: relative;
      z-index: 10;
      padding: 40px 20px;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-bet__hero-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        text-align: center; /* Center the image */
        margin-bottom: 20px; /* Space between image and text */
    }

    .page-bet__hero-image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      object-fit: contain; /* Ensure image is not stretched */
      min-height: 200px; /* Minimum image height */
    }

    .page-bet__hero-title {
      font-size: 3em;
      color: #ffd700;
      margin-bottom: 15px;
      line-height: 1.2;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-bet__hero-description {
      font-size: 1.3em;
      color: #ffffff;
      margin-bottom: 30px;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    /* Game Categories */
    .page-bet__game-categories {
      padding: 60px 20px;
      background-color: #0a0a0a;
    }

    .page-bet__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-bet__game-card {
      background-color: #1c1c1c;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
    }

    .page-bet__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
    }

    .page-bet__game-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        height: 200px; /* Fixed height for image container */
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 15px;
    }
    .page-bet__game-image {
      max-width: 100%;
      height: auto;
      object-fit: cover; /* Cover the container */
      width: 100%; /* Ensure width fills container */
      min-height: 200px; /* Minimum height for content images */
    }

    .page-bet__game-title {
      color: #ffd700;
      font-size: 1.5em;
      margin-bottom: 10px;
      padding: 0 15px;
    }

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

    /* Promotions Section */
    .page-bet__promotions {
      padding: 60px 20px;
      background-color: #000000;
    }

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

    .page-bet__promo-card {
      background-color: #1c1c1c;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      padding: 25px;
    }

    .page-bet__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    }

    .page-bet__promo-title {
      color: #ffd700;
      font-size: 1.6em;
      margin-bottom: 10px;
    }

    .page-bet__promo-text {
      color: #e0e0e0;
      font-size: 1em;
      margin-bottom: 20px;
    }

    /* Game Providers Section */
    .page-bet__providers {
      padding: 60px 20px;
      background-color: #0a0a0a;
    }

    .page-bet__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 30px;
      margin-top: 40px;
      align-items: center;
      justify-items: center;
    }

    .page-bet__provider-item {
      background-color: #1c1c1c;
      border-radius: 8px;
      padding: 15px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      width: 100%;
      max-width: 200px; /* Limit width for logos */
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100px;
    }

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

    .page-bet__provider-logo-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100px; /* Ensure container has enough height */
    }
    .page-bet__provider-logo {
      max-width: 100%;
      height: auto;
      object-fit: contain;
      min-height: 50px; /* Ensure logos are visible, but minimum 200px source */
    }

    /* CTA Section */
    .page-bet__cta-section {
      background-color: #000000;
      padding: 60px 20px;
      text-align: center;
    }

    .page-bet__cta-title {
      font-size: 2.8em;
      color: #ffd700;
      margin-bottom: 20px;
    }

    .page-bet__cta-text {
      font-size: 1.2em;
      color: #e0e0e0;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* FAQ Section */
    .page-bet__faq-section {
      padding: 60px 20px;
      background-color: #0a0a0a;
    }

    .page-bet__faq-list {
      max-width: 800px;
      margin: 40px auto 0;
      text-align: left;
    }

    .page-bet__faq-item {
      background-color: #1c1c1c;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    .page-bet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #2a2a2a;
      transition: background-color 0.3s ease;
    }

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

    .page-bet__faq-question h3 {
      color: #ffd700;
      font-size: 1.3em;
      margin: 0;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-bet__faq-toggle {
      color: #ffd700;
      font-size: 1.8em;
      font-weight: bold;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-bet__faq-item.active .page-bet__faq-toggle {
      transform: rotate(45deg); /* Plus to minus visual effect */
    }

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

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

    /* Social Media Section */
    .page-bet__social-section {
      padding: 60px 20px;
      background-color: #000000;
    }

    .page-bet__social-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
    }

    .page-bet__social-link {
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #1c1c1c;
      border-radius: 8px;
      padding: 15px 25px;
      text-decoration: none;
      color: #ffffff;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      min-width: 120px;
    }

    .page-bet__social-link:hover {
      background-color: #ffd700;
      color: #000000;
      transform: translateY(-3px);
    }

    .page-bet__social-icon {
      margin-right: 10px;
      width: 24px; /* Icon size */
      height: 24px;
      object-fit: contain;
      min-height: 24px; /* Ensure image is not smaller than this, but gallery will provide >=200px */
      min-width: 24px;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-bet__container {
        padding: 15px;
      }

      .page-bet__section {
        padding: 30px 15px;
      }

      .page-bet__heading {
        font-size: 2em;
      }

      .page-bet__subheading {
        font-size: 1.5em;
      }

      .page-bet__text {
        font-size: 1em;
      }

      .page-bet__hero-title {
        font-size: 2.2em;
      }

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

      .page-bet__game-grid {
        grid-template-columns: 1fr;
      }

      .page-bet__promo-grid {
        grid-template-columns: 1fr;
      }

      .page-bet__provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }

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

      .page-bet__cta-text {
        font-size: 1.1em;
      }

      .page-bet__faq-question {
        padding: 15px 20px;
      }

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

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

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

      .page-bet__social-link {
        padding: 12px 20px;
        font-size: 1em;
        min-width: 100px;
      }

      /* Image responsive optimization for mobile */
      .page-bet img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-bet__game-image-wrapper,
      .page-bet__provider-logo-wrapper,
      .page-bet__hero-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  