
    :root {
      --page-shbetslot__primary-color: #f7b32b; /* Vibrant gold/orange */
      --page-shbetslot__secondary-color: #4a148c; /* Deep purple */
      --page-shbetslot__dark-bg: #1a1a2e; /* Dark blue/purple */
      --page-shbetslot__dark-bg-light: #2c2c4d; /* Slightly lighter dark */
      --page-shbetslot__text-color: #e0e0e0; /* Light gray for text */
      --page-shbetslot__heading-color: #ffffff; /* White for headings */
      --page-shbetslot__border-color: #3e2765; /* Darker purple border */
      --page-shbetslot__success-color: #4CAF50;
      --page-shbetslot__error-color: #f44336;
      --page-shbetslot__shadow: rgba(0, 0, 0, 0.3);
    }

    .page-shbetslot {
      font-family: 'Arial', sans-serif;
      background-color: var(--page-shbetslot__dark-bg);
      color: var(--page-shbetslot__text-color);
      line-height: 1.6;
      overflow-x: hidden;
    }

    .page-shbetslot * {
      box-sizing: border-box;
    }

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

    .page-shbetslot__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-shbetslot__section--dark {
      background-color: var(--page-shbetslot__dark-bg-light);
    }

    .page-shbetslot__heading-h1,
    .page-shbetslot__heading-h2,
    .page-shbetslot__heading-h3 {
      color: var(--page-shbetslot__heading-color);
      margin-bottom: 25px;
      font-weight: bold;
    }

    .page-shbetslot__heading-h1 {
      font-size: 2.8em;
      padding-top: 120px; /* Adjust for fixed header */
    }

    .page-shbetslot__heading-h2 {
      font-size: 2.2em;
      padding-top: 30px; /* Ensure spacing for subsequent sections */
    }

    .page-shbetslot__heading-h3 {
      font-size: 1.6em;
    }

    .page-shbetslot__paragraph {
      font-size: 1.1em;
      margin-bottom: 20px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-shbetslot__button {
      display: inline-block;
      background-color: var(--page-shbetslot__primary-color);
      color: var(--page-shbetslot__dark-bg);
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

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

    .page-shbetslot__strong-text {
      color: var(--page-shbetslot__primary-color);
    }

    /* Hero Section */
    .page-shbetslot__hero-section {
      background-color: var(--page-shbetslot__dark-bg);
      padding: 40px 0;
      position: relative;
      text-align: center;
      padding-top: 120px; /* For fixed header */
    }

    .page-shbetslot__hero-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 20px;
    }

    .page-shbetslot__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 10px;
      box-shadow: 0 8px 16px var(--page-shbetslot__shadow);
    }

    /* Floating Login Button */
    .page-shbetslot__floating-login-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background-color: var(--page-shbetslot__primary-color);
      color: var(--page-shbetslot__dark-bg);
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      animation: page-shbetslot__pulse 1.5s infinite;
      transition: background-color 0.3s ease, transform 0.2s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .page-shbetslot__floating-login-button:hover {
      background-color: #e0a025;
      transform: scale(1.05);
    }

    @keyframes page-shbetslot__pulse {
      0% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.05);
      }
      100% {
        transform: scale(1);
      }
    }

    /* Game Categories */
    .page-shbetslot__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-shbetslot__game-card {
      background-color: var(--page-shbetslot__dark-bg-light);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px var(--page-shbetslot__shadow);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

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

    .page-shbetslot__game-card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 15px;
    }

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

    .page-shbetslot__game-card-title {
      font-size: 1.4em;
      color: var(--page-shbetslot__primary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-shbetslot__game-card-link {
      color: var(--page-shbetslot__primary-color);
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .page-shbetslot__game-card-link:hover {
      color: #e0a025;
    }

    /* Game Providers */
    .page-shbetslot__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      margin-top: 40px;
      align-items: center;
      justify-content: center;
    }

    .page-shbetslot__provider-item {
      background-color: var(--page-shbetslot__dark-bg-light);
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 3px 10px var(--page-shbetslot__shadow);
      transition: transform 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100px; /* Ensure uniform height for logos */
    }

    .page-shbetslot__provider-item:hover {
      transform: translateY(-3px);
    }

    .page-shbetslot__provider-logo-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-shbetslot__provider-logo {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      filter: brightness(0.8) grayscale(0.2); /* Subtle effect, not color change */
      transition: filter 0.3s ease;
    }

    .page-shbetslot__provider-logo:hover {
      filter: brightness(1) grayscale(0);
    }

    /* Why Choose Us */
    .page-shbetslot__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-shbetslot__feature-card {
      background-color: var(--page-shbetslot__dark-bg-light);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px var(--page-shbetslot__shadow);
      text-align: left;
      transition: transform 0.3s ease;
    }

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

    .page-shbetslot__feature-icon {
      color: var(--page-shbetslot__primary-color);
      font-size: 2.5em;
      margin-bottom: 15px;
      display: block;
    }

    .page-shbetslot__feature-title {
      color: var(--page-shbetslot__primary-color);
      font-size: 1.3em;
      margin-bottom: 10px;
    }

    .page-shbetslot__feature-description {
      font-size: 1em;
      color: var(--page-shbetslot__text-color);
    }

    /* FAQ Section */
    .page-shbetslot__faq-container {
      margin-top: 40px;
      text-align: left;
    }

    .page-shbetslot__faq-item {
      background-color: var(--page-shbetslot__dark-bg-light);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 3px 10px var(--page-shbetslot__shadow);
    }

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

    .page-shbetslot__faq-question:hover {
      background-color: #5d25a0;
    }

    .page-shbetslot__faq-question h3 {
      margin: 0;
      color: inherit;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

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

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

    .page-shbetslot__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding */
      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-shbetslot__text-color);
      background-color: var(--page-shbetslot__dark-bg-light);
    }

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

    /* Responsive Design */
    @media (max-width: 992px) {
      .page-shbetslot__heading-h1 {
        font-size: 2.2em;
      }
      .page-shbetslot__heading-h2 {
        font-size: 1.8em;
      }
      .page-shbetslot__paragraph {
        font-size: 1em;
      }
    }

    @media (max-width: 768px) {
      .page-shbetslot__hero-section {
        padding-top: 100px; /* Adjust for mobile fixed header */
      }
      .page-shbetslot__heading-h1 {
        font-size: 1.8em;
        padding-top: 20px; /* Reduce padding for mobile hero */
      }
      .page-shbetslot__heading-h2 {
        font-size: 1.6em;
      }
      .page-shbetslot__section {
        padding: 40px 0;
      }
      .page-shbetslot__button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-shbetslot__game-categories,
      .page-shbetslot__providers-grid,
      .page-shbetslot__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-shbetslot__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }
      .page-shbetslot__faq-answer {
        padding: 0 20px;
      }
      .page-shbetslot__faq-item.active .page-shbetslot__faq-answer {
        padding: 15px 20px !important;
      }

      /* Mobile image responsiveness */
      .page-shbetslot__hero-image,
      .page-shbetslot__game-card-image,
      .page-shbetslot__provider-logo {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-shbetslot__hero-image-wrapper,
      .page-shbetslot__game-card-image-wrapper,
      .page-shbetslot__provider-logo-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }

      .page-shbetslot__floating-login-button {
        font-size: 0.9em;
        padding: 12px 20px;
        bottom: 15px;
        right: 15px;
      }
    }
  