
    :root {
      --page-kubet19-bg-color: #000000;
      --page-kubet19-text-color: #ffffff;
      --page-kubet19-accent-color: #FFD700; /* Gold/Yellow */
      --page-kubet19-dark-accent-color: #B8860B; /* Darker Gold */
      --page-kubet19-border-color: #333333;
    }

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

    /* Fixed header safety zone */
    .page-kubet19__hero-section,
    .page-kubet19__section:first-of-type {
      padding-top: 140px; /* Default for desktop */
    }

    @media (max-width: 768px) {
      .page-kubet19__hero-section,
      .page-kubet19__section:first-of-type {
        padding-top: 100px; /* Adjusted for mobile */
      }
    }

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

    .page-kubet19__hero-section {
      text-align: center;
      padding-bottom: 40px;
      background-color: var(--page-kubet19-bg-color);
    }

    .page-kubet19__hero-image {
      width: 100%;
      max-width: 1200px; /* Ensure it doesn't stretch too wide */
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    }

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

    .page-kubet19__hero-title {
      font-size: 2.8em;
      color: var(--page-kubet19-accent-color);
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-kubet19__hero-description {
      font-size: 1.2em;
      color: var(--page-kubet19-text-color);
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-kubet19__cta-button {
      display: inline-block;
      background-color: var(--page-kubet19-accent-color);
      color: var(--page-kubet19-bg-color);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    }

    .page-kubet19__cta-button:hover {
      background-color: var(--page-kubet19-dark-accent-color);
      transform: translateY(-3px);
    }

    .page-kubet19__section {
      padding: 40px 20px;
      text-align: center;
      border-bottom: 1px solid var(--page-kubet19-border-color);
    }

    .page-kubet19__section-title {
      font-size: 2.2em;
      color: var(--page-kubet19-accent-color);
      margin-bottom: 30px;
      text-transform: uppercase;
    }

    .page-kubet19__section-text {
      font-size: 1.1em;
      color: var(--page-kubet19-text-color);
      max-width: 900px;
      margin: 0 auto 30px auto;
    }

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

    .page-kubet19__game-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      border: 1px solid var(--page-kubet19-border-color);
    }

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

    .page-kubet19__game-card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-kubet19__game-card-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }

    .page-kubet19__game-card:hover .page-kubet19__game-card-image {
      transform: scale(1.05);
    }

    .page-kubet19__game-card-content {
      padding: 20px;
    }

    .page-kubet19__game-card-title {
      font-size: 1.5em;
      color: var(--page-kubet19-accent-color);
      margin-bottom: 10px;
    }

    .page-kubet19__game-card-description {
      font-size: 0.95em;
      color: var(--page-kubet19-text-color);
      margin-bottom: 15px;
    }

    .page-kubet19__game-card-link {
      display: inline-block;
      color: var(--page-kubet19-accent-color);
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .page-kubet19__game-card-link:hover {
      color: var(--page-kubet19-dark-accent-color);
      text-decoration: underline;
    }

    .page-kubet19__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      margin-top: 30px;
      padding: 0 20px;
      justify-items: center;
    }

    .page-kubet19__provider-item {
      background-color: #1a1a1a;
      border-radius: 8px;
      padding: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease;
      width: 100%;
      max-width: 150px;
      box-sizing: border-box;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 80px; /* Fixed height for logos */
      border: 1px solid var(--page-kubet19-border-color);
    }

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

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

    .page-kubet19__faq-section {
      text-align: left;
    }

    .page-kubet19__faq-list {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 20px;
    }

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

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

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

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

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

    .page-kubet19__faq-item.active .page-kubet19__faq-toggle {
      transform: rotate(45deg); /* Simple rotation for '-' */
    }

    .page-kubet19__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: var(--page-kubet19-text-color);
      font-size: 0.95em;
    }

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

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

    .page-kubet19__benefit-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
      text-align: center;
      border: 1px solid var(--page-kubet19-border-color);
      transition: transform 0.3s ease;
    }

    .page-kubet19__benefit-card:hover {
      transform: translateY(-8px);
    }

    .page-kubet19__benefit-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 20px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

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

    .page-kubet19__benefit-description {
      font-size: 1em;
      color: var(--page-kubet19-text-color);
    }

    .page-kubet19__floating-login-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-kubet19-accent-color);
      color: var(--page-kubet19-bg-color);
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      animation: page-kubet19__bounce 2s infinite;
    }

    .page-kubet19__floating-login-button:hover {
      background-color: var(--page-kubet19-dark-accent-color);
      transform: translateY(-3px);
      animation: none;
    }

    @keyframes page-kubet19__bounce {
      0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
      40% { transform: translateY(-10px); }
      60% { transform: translateY(-5px); }
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-kubet19__hero-title {
        font-size: 2em;
      }
      .page-kubet19__hero-description {
        font-size: 1em;
      }
      .page-kubet19__section-title {
        font-size: 1.8em;
      }
      .page-kubet19__game-grid,
      .page-kubet19__provider-grid,
      .page-kubet19__benefits-grid {
        grid-template-columns: 1fr;
      }
      .page-kubet19__game-card-image-wrapper,
      .page-kubet19__provider-item,
      .page-kubet19__benefit-card {
        width: 100% !important;
        max-width: none !important;
      }
      .page-kubet19__faq-question h3 {
        font-size: 1em;
      }
      .page-kubet19__faq-answer {
        padding: 0 15px;
      }
      .page-kubet19__faq-item.active .page-kubet19__faq-answer {
        padding: 15px !important;
      }
      .page-kubet19__floating-login-button {
        bottom: 15px;
        right: 15px;
        padding: 10px 20px;
        font-size: 0.9em;
      }
    }

    /* Ensure all images are responsive and not small icons */
    .page-kubet19 img {
      max-width: 100% !important;
      height: auto !important;
      display: block; /* Remove extra space below images */
    }
    .page-kubet19__game-card-image,
    .page-kubet19__provider-logo,
    .page-kubet19__benefit-icon {
      max-width: 100% !important;
      height: auto !important;
      object-fit: contain; /* Ensure logos and icons fit without cropping */
    }
    .page-kubet19__provider-logo {
      max-height: 50px !important; /* Max height for provider logos */
      width: auto !important;
    }
    .page-kubet19__benefit-icon {
      max-width: 80px !important;
      max-height: 80px !important;
    }

  