
    :root {
      --page-shbet__primary-color: #FFD700; /* Gold/Yellow */
      --page-shbet__secondary-color: #FFFFFF; /* White */
      --page-shbet__background-color: #000000; /* Black */
      --page-shbet__text-color: #FFFFFF; /* White */
      --page-shbet__accent-color: #FFD700; /* Yellow */
      --page-shbet__dark-gray: #1a1a1a;
      --page-shbet__light-gray: #333333;
    }

    .page-shbet {
      font-family: 'Arial', sans-serif;
      background-color: var(--page-shbet__background-color);
      color: var(--page-shbet__text-color);
      line-height: 1.6;
    }

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

    .page-shbet__section {
      padding: 40px 20px;
      margin-bottom: 30px;
      background-color: var(--page-shbet__dark-gray);
      border-radius: 8px;
    }

    .page-shbet__section--no-bg {
      background-color: transparent;
      padding: 20px 0;
    }

    .page-shbet__hero-section {
      text-align: center;
      padding-top: 10px; /* Space for fixed header */
      padding-bottom: 40px;
      background-color: var(--page-shbet__background-color);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .page-shbet__hero-image {
      width: 100%;
      height: auto;
      max-width: 100%;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
    }

    .page-shbet__hero-content {
      position: relative;
      z-index: 1;
      padding: 20px;
      max-width: 800px;
      margin-top: 20px;
    }

    .page-shbet__hero-title {
      color: var(--page-shbet__primary-color);
      font-size: 2.5em;
      margin-bottom: 10px;
      line-height: 1.2;
    }

    .page-shbet__hero-subtitle {
      color: var(--page-shbet__secondary-color);
      font-size: 1.2em;
      margin-bottom: 20px;
    }

    .page-shbet__button {
      display: inline-block;
      background-color: var(--page-shbet__primary-color);
      color: var(--page-shbet__background-color);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-shbet__button:hover {
      background-color: #e6c200;
    }

    .page-shbet__title {
      color: var(--page-shbet__primary-color);
      font-size: 2em;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
    }

    .page-shbet__title::after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background-color: var(--page-shbet__primary-color);
      margin: 10px auto 0;
    }

    .page-shbet__text-block {
      margin-bottom: 20px;
      text-align: justify;
    }

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

    .page-shbet__game-card {
      background-color: var(--page-shbet__light-gray);
      border-radius: 8px;
      overflow: hidden;
      text-align: center;
      padding-bottom: 15px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-shbet__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    }

    .page-shbet__game-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      max-width: 100%;
    }

    .page-shbet__game-title {
      color: var(--page-shbet__primary-color);
      font-size: 1.3em;
      margin: 15px 10px 10px;
    }

    .page-shbet__game-description {
      color: var(--page-shbet__secondary-color);
      font-size: 0.9em;
      padding: 0 15px;
    }

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

    .page-shbet__provider-logo {
      width: 100%;
      height: 80px; /* Consistent height for logos */
      object-fit: contain;
      background-color: var(--page-shbet__light-gray);
      padding: 10px;
      border-radius: 5px;
      transition: transform 0.3s ease;
      max-width: 100%;
    }
    
    .page-shbet__provider-logo:hover {
      transform: scale(1.05);
    }

    .page-shbet__list {
      list-style: none;
      padding: 0;
      margin: 20px 0;
    }

    .page-shbet__list-item {
      background-color: var(--page-shbet__light-gray);
      padding: 15px;
      margin-bottom: 10px;
      border-radius: 5px;
      display: flex;
      align-items: flex-start;
      color: var(--page-shbet__secondary-color);
    }

    .page-shbet__list-item::before {
      content: '✔';
      color: var(--page-shbet__primary-color);
      font-weight: bold;
      margin-right: 10px;
      font-size: 1.2em;
    }

    .page-shbet__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-shbet__primary-color);
      color: var(--page-shbet__background-color);
      padding: 15px 25px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      cursor: pointer;
      text-align: center;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .page-shbet__floating-button:hover {
      background-color: #e6c200;
      transform: translateY(-3px);
    }

    .page-shbet__floating-button span {
      margin-left: 8px;
    }

    /* FAQ Styles */
    .page-shbet__faq-section {
      margin-top: 40px;
    }

    .page-shbet__faq-item {
      background-color: var(--page-shbet__light-gray);
      margin-bottom: 10px;
      border-radius: 8px;
      overflow: hidden;
      color: var(--page-shbet__secondary-color);
    }

    .page-shbet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: var(--page-shbet__light-gray);
      border-bottom: 1px solid var(--page-shbet__dark-gray);
    }

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

    .page-shbet__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--page-shbet__primary-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

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

    .page-shbet__faq-item.active .page-shbet__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
    }
    
    .page-shbet__faq-item.active .page-shbet__faq-toggle::before {
        content: '−'; /* Change to minus sign */
    }
    .page-shbet__faq-item:not(.active) .page-shbet__faq-toggle::before {
        content: '+'; /* Change to plus sign */
    }


    .page-shbet__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
      color: var(--page-shbet__secondary-color);
    }

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

    /* General image responsiveness */
    .page-shbet img {
      max-width: 100%;
      height: auto;
      display: block; /* Ensures images behave like block elements for layout */
      box-sizing: border-box; /* Include padding and border in the element's total width and height */
    }
    
    /* Mobile responsiveness */
    @media (max-width: 768px) {
      .page-shbet__container {
        padding: 15px;
      }

      .page-shbet__hero-title {
        font-size: 1.8em;
      }

      .page-shbet__hero-subtitle {
        font-size: 1em;
      }

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

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

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

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

      .page-shbet__floating-button {
        padding: 12px 20px;
        font-size: 1em;
        bottom: 15px;
        right: 15px;
      }

      .page-shbet__faq-question {
        padding: 12px 15px;
      }

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

      .page-shbet__faq-answer {
        padding: 0 15px;
      }

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

      .page-shbet__hero-section {
        padding-top: 10px; /* Adjust for mobile fixed header */
      }
      
      /* Force image responsiveness for mobile */
      .page-shbet img {
        max-width: 100% !important;
        height: auto !important;
      }
    }
  