
    /* Base styles */
    .page-kubet {
      font-family: 'Arial', sans-serif;
      background-color: #000000; /* Black background */
      color: #ffffff; /* White text */
      line-height: 1.6;
      padding-bottom: 80px; /* Space for fixed button */
    }

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

    .page-kubet__section {
      margin-bottom: 40px;
      padding: 20px;
      background-color: #1a1a1a; /* Slightly lighter black for sections */
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-kubet__title {
      color: #FFD700; /* Gold/Yellow for titles */
      text-align: center;
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-kubet__subtitle {
      color: #FFD700;
      font-size: 2em;
      margin-bottom: 20px;
      border-bottom: 2px solid #FFD700;
      padding-bottom: 10px;
    }

    .page-kubet__text {
      font-size: 1.1em;
      margin-bottom: 15px;
    }

    .page-kubet__button {
      display: inline-block;
      background-color: #FFD700;
      color: #000000;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

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

    /* Hero Section */
    .page-kubet__hero-section {
      text-align: center;
      padding-top: 140px; /* Safety zone for fixed header (140px-180px) */
      padding-bottom: 50px;
      background-color: #000000;
    }

    .page-kubet__hero-image {
      width: 100%;
      height: auto;
      max-width: 1200px;
      border-radius: 8px;
      margin-bottom: 30px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    }

    .page-kubet__hero-content {
      padding: 0 20px;
    }

    .page-kubet__hero-title {
      font-size: 3em;
      color: #FFD700;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-kubet__hero-description {
      font-size: 1.3em;
      color: #ffffff;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Floating Login/Promo Button */
    .page-kubet__floating-promo-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #FFD700;
      color: #000000;
      padding: 15px 25px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      animation: page-kubet__pulse 2s infinite;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .page-kubet__floating-promo-button:hover {
      background-color: #e6c200;
      transform: scale(1.05);
      animation: none;
    }

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

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

    .page-kubet__game-card {
      background-color: #2a2a2a;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      padding-bottom: 15px;
    }

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

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

    .page-kubet__game-card-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      border-bottom: 2px solid #FFD700;
    }

    .page-kubet__game-card-title {
      color: #FFD700;
      font-size: 1.4em;
      margin: 15px 10px 10px;
    }

    .page-kubet__game-card-description {
      color: #cccccc;
      font-size: 0.95em;
      padding: 0 15px;
      margin-bottom: 15px;
    }

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

    .page-kubet__provider-logo-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100px; /* Maintain aspect ratio or contain within this height */
        background-color: #0d0d0d;
        border-radius: 8px;
        transition: transform 0.3s ease;
    }

    .page-kubet__provider-logo-wrapper:hover {
        transform: scale(1.05);
    }

    .page-kubet__provider-logo {
      max-width: 100%;
      max-height: 80px; /* Adjust as needed for logos */
      width: auto;
      height: auto;
      object-fit: contain;
      padding: 10px;
    }

    /* FAQ Section */
    .page-kubet__faq-list {
      margin-top: 30px;
    }

    .page-kubet__faq-item {
      background-color: #2a2a2a;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

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

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

    .page-kubet__faq-question-text {
      color: #FFD700;
      font-size: 1.2em;
      margin: 0;
      pointer-events: none; /* Prevent text from blocking click event */
    }

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

    .page-kubet__faq-item.active .page-kubet__faq-toggle {
      transform: rotate(45deg); /* Plus sign becomes cross */
    }

    .page-kubet__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.4s ease;
      color: #ffffff;
    }

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

    .page-kubet__faq-answer p {
      margin-bottom: 10px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-kubet__container {
        padding: 10px;
      }

      .page-kubet__hero-section {
        padding-top: 140px; /* Mobile padding for fixed header */
        padding-bottom: 30px;
      }

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

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

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

      .page-kubet__subtitle {
        font-size: 1.6em;
      }

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

      .page-kubet__button {
        padding: 10px 20px;
        font-size: 0.9em;
      }

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

      .page-kubet__game-card-image {
        height: 180px;
      }

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

      .page-kubet__provider-logo-wrapper {
          height: 80px;
      }

      .page-kubet__provider-logo {
        max-height: 60px;
      }

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

      .page-kubet__faq-question-text {
        font-size: 1.1em;
      }
      .page-kubet__faq-answer {
        padding: 15px 15px !important; /* Mobile padding for FAQ answer */
      }

      /* Ensure images are responsive on mobile */
      .page-kubet__hero-image,
      .page-kubet__game-card-image,
      .page-kubet__provider-logo {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-kubet__game-card-image-wrapper,
      .page-kubet__provider-logo-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  