
    :root {
      --page-kubet19-bg-color: #000000;
      --page-kubet19-text-color-light: #ffffff;
      --page-kubet19-text-color-accent: #ffd700; /* Gold/Yellow */
      --page-kubet19-button-bg: #ffd700;
      --page-kubet19-button-text: #000000;
      --page-kubet19-border-color: #333333;
      --page-kubet19-hover-color: #ffeb3b;
    }

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

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

    .page-kubet19__hero-section {
      position: relative;
      text-align: center;
      padding-top: 150px; /* Safety zone for fixed header */
      padding-bottom: 40px;
      background-color: var(--page-kubet19-bg-color);
    }

    .page-kubet19__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
    }

    .page-kubet19__hero-content {
      margin-top: 20px;
    }

    .page-kubet19__hero-title {
      color: var(--page-kubet19-text-color-accent);
      font-size: 2.5em;
      margin-bottom: 15px;
      text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    }

    .page-kubet19__hero-description {
      font-size: 1.1em;
      color: var(--page-kubet19-text-color-light);
      max-width: 800px;
      margin: 0 auto;
    }

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

    .page-kubet19__button:hover {
      background-color: var(--page-kubet19-hover-color);
      transform: translateY(-2px);
    }

    .page-kubet19__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      padding: 15px 25px;
      font-size: 1.1em;
      box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
      animation: page-kubet19-pulse 1.5s infinite;
    }

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

    .page-kubet19__section-title {
      color: var(--page-kubet19-text-color-accent);
      font-size: 2em;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-kubet19__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: var(--page-kubet19-text-color-accent);
      border-radius: 2px;
    }

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

    .page-kubet19__card {
      background-color: #1a1a1a;
      border: 1px solid var(--page-kubet19-border-color);
      border-radius: 10px;
      padding: 20px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .page-kubet19__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    }

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

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

    .page-kubet19__card-title {
      color: var(--page-kubet19-text-color-accent);
      font-size: 1.3em;
      margin-bottom: 10px;
    }

    .page-kubet19__card-text {
      color: var(--page-kubet19-text-color-light);
      font-size: 0.95em;
    }

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

    .page-kubet19__list-item {
      background-color: #1a1a1a;
      border: 1px solid var(--page-kubet19-border-color);
      border-radius: 8px;
      padding: 15px 20px;
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      color: var(--page-kubet19-text-color-light);
    }

    .page-kubet19__list-item strong {
      color: var(--page-kubet19-text-color-accent);
      margin-right: 10px;
    }

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

    .page-kubet19__provider-logo-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      background-color: #1a1a1a;
      border: 1px solid var(--page-kubet19-border-color);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 10px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-kubet19__provider-logo-wrapper:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(255, 215, 0, 0.2);
    }

    .page-kubet19__provider-logo {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .page-kubet19__faq-container {
      margin-top: 40px;
    }

    .page-kubet19__faq-item {
      background-color: #1a1a1a;
      border: 1px solid var(--page-kubet19-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
    }

    .page-kubet19__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #2a2a2a;
      color: var(--page-kubet19-text-color-light);
      transition: background-color 0.3s ease;
    }

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

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

    .page-kubet19__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      color: var(--page-kubet19-text-color-accent);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

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

    .page-kubet19__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      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-kubet19-text-color-light);
    }

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

    .page-kubet19__social-links {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 30px;
    }

    .page-kubet19__social-link {
      color: var(--page-kubet19-text-color-accent);
      font-size: 2.5em;
      transition: color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      border: 2px solid var(--page-kubet19-text-color-accent);
      border-radius: 50%;
    }

    .page-kubet19__social-link:hover {
      color: var(--page-kubet19-hover-color);
      transform: translateY(-3px) scale(1.1);
      border-color: var(--page-kubet19-hover-color);
    }

    .page-kubet19__social-link span {
      font-size: 0.6em; /* Adjust for icon-like appearance */
      line-height: 1;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-kubet19__hero-section {
        padding-top: 150px; /* Maintain safety zone */
      }

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

      .page-kubet19__hero-description {
        font-size: 1em;
      }

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

      .page-kubet19__section-title {
        font-size: 1.7em;
      }

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

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

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

      .page-kubet19__card-image,
      .page-kubet19__provider-logo {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-kubet19__card-image-wrapper,
      .page-kubet19__provider-logo-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }

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

    @media (max-width: 480px) {
      .page-kubet19__hero-section {
        padding-top: 120px; /* Adjust for smaller screens */
      }
      .page-kubet19__hero-title {
        font-size: 1.5em;
      }
      .page-kubet19__floating-button {
        font-size: 0.9em;
        padding: 10px 15px;
        bottom: 10px;
        right: 10px;
      }
    }
  