
    :root {
      --page-kubetlink-primary-bg: #1a1a2e;
      --page-kubetlink-secondary-bg: #22223b;
      --page-kubetlink-accent-color: #e94560;
      --page-kubetlink-text-color: #e0e0e0;
      --page-kubetlink-light-text: #ffffff;
      --page-kubetlink-button-hover: #ff6b8a;
      --page-kubetlink-border-color: #3b3b58;
    }

    .page-kubetlink {
      font-family: 'Arial', sans-serif;
      background-color: var(--page-kubetlink-primary-bg);
      color: var(--page-kubetlink-text-color);
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating button */
    }

    .page-kubetlink a {
      color: var(--page-kubetlink-accent-color);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-kubetlink a:hover {
      color: var(--page-kubetlink-button-hover);
    }

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

    /* Banner Section */
    .page-kubetlink .hero-banner {
      position: relative;
      text-align: center;
      padding: 0; /* Remove padding as content is below image */
      overflow: hidden;
    }

    .page-kubetlink .hero-banner img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      max-height: 400px; /* Adjust as needed for visual balance */
    }

    .page-kubetlink .hero-content {
      padding: 20px 15px;
      background-color: var(--page-kubetlink-secondary-bg);
      border-radius: 0 0 10px 10px;
      margin-top: -10px; /* Overlap slightly with banner for visual flow */
      position: relative;
      z-index: 1;
      text-align: center;
    }

    .page-kubetlink .hero-content h1 {
      color: var(--page-kubetlink-light-text);
      font-size: 2.2em;
      margin-bottom: 15px;
      line-height: 1.2;
    }
    @media (min-width: 768px) {
      .page-kubetlink .hero-content h1 {
        font-size: 3em;
      }
    }

    .page-kubetlink .hero-content p {
      font-size: 1.1em;
      margin-bottom: 25px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-kubetlink .btn-primary {
      display: inline-block;
      background-color: var(--page-kubetlink-accent-color);
      color: var(--page-kubetlink-light-text);
      padding: 12px 30px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      text-transform: uppercase;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-kubetlink .btn-primary:hover {
      background-color: var(--page-kubetlink-button-hover);
      transform: translateY(-2px);
    }

    /* Floating Login Button */
    .page-kubetlink .floating-login-btn {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: var(--page-kubetlink-accent-color);
      color: var(--page-kubetlink-light-text);
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      text-transform: uppercase;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      animation: pulse 2s infinite;
      text-align: center;
      width: calc(100% - 40px);
      max-width: 350px;
    }

    .page-kubetlink .floating-login-btn:hover {
      background-color: var(--page-kubetlink-button-hover);
    }

    @keyframes pulse {
      0% { transform: translateX(-50%) scale(1); }
      50% { transform: translateX(-50%) scale(1.03); }
      100% { transform: translateX(-50%) scale(1); }
    }

    /* Sections */
    .page-kubetlink section {
      padding: 40px 0;
      text-align: center;
    }

    .page-kubetlink section:nth-of-type(even) {
      background-color: var(--page-kubetlink-secondary-bg);
    }

    .page-kubetlink h2 {
      font-size: 2em;
      color: var(--page-kubetlink-light-text);
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-kubetlink h2::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: var(--page-kubetlink-accent-color);
    }

    .page-kubetlink h3 {
      font-size: 1.5em;
      color: var(--page-kubetlink-light-text);
      margin-bottom: 15px;
    }

    .page-kubetlink p {
      margin-bottom: 20px;
    }

    /* Game Products Grid */
    .page-kubetlink .game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }
    @media (min-width: 768px) {
      .page-kubetlink .game-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      }
    }

    .page-kubetlink .game-card {
      background-color: var(--page-kubetlink-primary-bg);
      border: 1px solid var(--page-kubetlink-border-color);
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

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

    .page-kubetlink .game-card img {
      width: 100%;
      height: 120px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      border-bottom: 1px solid var(--page-kubetlink-border-color);
    }
    @media (min-width: 768px) {
      .page-kubetlink .game-card img {
        height: 150px;
      }
    }

    .page-kubetlink .game-card .game-info {
      padding: 15px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .page-kubetlink .game-card h4 {
      font-size: 1.2em;
      color: var(--page-kubetlink-light-text);
      margin-bottom: 10px;
    }

    .page-kubetlink .game-card p {
      font-size: 0.9em;
      color: var(--page-kubetlink-text-color);
      margin-bottom: 0;
    }

    /* Provider Logos */
    .page-kubetlink .provider-logos {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-kubetlink .provider-logos img {
      height: 40px;
      width: auto;
      object-fit: contain;
      filter: grayscale(80%) brightness(150%);
      transition: filter 0.3s ease;
    }

    .page-kubetlink .provider-logos img:hover {
      filter: grayscale(0%) brightness(100%);
    }

    /* FAQ Section */
    .page-kubetlink .faq-list {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-kubetlink .faq-item {
      background-color: var(--page-kubetlink-primary-bg);
      border: 1px solid var(--page-kubetlink-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      text-align: left;
      overflow: hidden;
    }

    .page-kubetlink .faq-question {
      padding: 18px 20px;
      background-color: var(--page-kubetlink-secondary-bg);
      color: var(--page-kubetlink-light-text);
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background-color 0.3s ease;
    }

    .page-kubetlink .faq-question:hover {
      background-color: #2a2a47;
    }

    .page-kubetlink .faq-question .arrow {
      font-size: 1.2em;
      transition: transform 0.3s ease;
    }

    .page-kubetlink .faq-question.active .arrow {
      transform: rotate(180deg);
    }

    .page-kubetlink .faq-answer {
      padding: 0 20px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease-out, padding 0.4s ease-out;
      color: var(--page-kubetlink-text-color);
    }

    .page-kubetlink .faq-answer.open {
      max-height: 200px; /* Adjust as needed */
      padding: 15px 20px;
    }
  