
    /* CSS for page-kubet11 */
    .page-kubet11 {
      font-family: 'Arial', sans-serif;
      background-color: #1a1a1a;
      color: #e0e0e0;
      line-height: 1.6;
      padding-bottom: 80px; /* Space for fixed button */
    }

    /* General containers and spacing */
    .page-kubet11__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

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

    .page-kubet11__section--dark {
      background-color: #222222;
    }

    .page-kubet11__section-title {
      font-size: 2.8em;
      color: #ffcc00;
      margin-bottom: 40px;
      text-transform: uppercase;
      font-weight: bold;
    }
    
    .page-kubet11__section-title span {
      color: #e0e0e0;
    }

    .page-kubet11__text {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #cccccc;
    }

    .page-kubet11__button {
      display: inline-block;
      background-color: #ffcc00;
      color: #1a1a1a;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-kubet11__button:hover {
      background-color: #e0b300;
      color: #000000;
    }

    /* Hero Section */
    .page-kubet11__hero-section {
      padding-top: 120px; /* For fixed header */
      text-align: center;
      background-color: #1a1a1a;
      position: relative;
      overflow: hidden;
    }

    .page-kubet11__hero-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 30px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-kubet11__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }

    .page-kubet11__hero-content {
      position: relative;
      z-index: 2;
      padding: 40px 0;
    }

    .page-kubet11__hero-title {
      font-size: 3.5em;
      color: #ffcc00;
      margin-bottom: 20px;
      line-height: 1.2;
      font-weight: bold;
    }

    .page-kubet11__hero-subtitle {
      font-size: 1.5em;
      color: #cccccc;
      margin-bottom: 30px;
    }

    /* Floating Login Button */
    .page-kubet11__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #e00000;
      color: #ffffff;
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      display: flex;
      align-items: center;
      gap: 10px;
      animation: page-kubet11__pulse 1.5s infinite;
      border: none;
      cursor: pointer;
    }

    .page-kubet11__floating-button:hover {
      background-color: #c00000;
    }

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

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

    .page-kubet11__game-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

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

    .page-kubet11__game-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 200px; /* Fixed height for consistency */
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #333;
    }

    .page-kubet11__game-image {
      max-width: 100%;
      height: auto;
      object-fit: cover; /* Ensures image covers area without distortion */
      display: block;
    }

    .page-kubet11__game-card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-kubet11__game-card-title {
      font-size: 1.5em;
      color: #ffcc00;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-kubet11__game-card-description {
      font-size: 0.95em;
      color: #cccccc;
      margin-bottom: 20px;
    }

    .page-kubet11__game-card-link {
      display: inline-block;
      background-color: #e00000;
      color: #ffffff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
    }

    .page-kubet11__game-card-link:hover {
      background-color: #c00000;
    }

    /* Game Providers */
    .page-kubet11__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Smaller grid for logos */
      gap: 20px;
      margin-top: 40px;
    }

    .page-kubet11__provider-logo-wrapper {
      background-color: #333333;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 100px; /* Fixed height for logo container */
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-kubet11__provider-logo-wrapper:hover {
      transform: translateY(-3px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    }

    .page-kubet11__provider-logo {
      max-width: 100%;
      max-height: 70px; /* Max height for logos within container */
      height: auto;
      display: block;
      object-fit: contain;
    }

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

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

    .page-kubet11__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #333333;
      border-bottom: 1px solid #444444;
      transition: background-color 0.3s ease;
      user-select: none;
    }

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

    .page-kubet11__faq-question h3 {
      margin: 0;
      font-size: 1.3em;
      color: #ffcc00;
      pointer-events: none; /* Prevent h3 from blocking click event on parent */
    }

    .page-kubet11__faq-toggle {
      font-size: 1.8em;
      color: #ffcc00;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent span from blocking click event on parent */
    }

    .page-kubet11__faq-item.active .page-kubet11__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'X' or similar */
    }
    
    .page-kubet11__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: #cccccc;
      font-size: 1em;
    }

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

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-kubet11 {
        padding-bottom: 100px; /* Adjust for mobile fixed button */
      }
      .page-kubet11__hero-section {
        padding-top: 100px; /* Adjust for mobile fixed header */
      }

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

      .page-kubet11__hero-subtitle {
        font-size: 1.2em;
      }

      .page-kubet11__section-title {
        font-size: 2em;
        margin-bottom: 30px;
      }

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

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

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

      .page-kubet11__game-image,
      .page-kubet11__provider-logo,
      .page-kubet11__hero-image {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-kubet11__game-image-wrapper,
      .page-kubet11__provider-logo-wrapper,
      .page-kubet11__hero-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }

      .page-kubet11__faq-question {
        padding: 15px 20px;
      }

      .page-kubet11__faq-question h3 {
        font-size: 1.1em;
      }

      .page-kubet11__faq-answer {
        padding: 0 20px;
      }

      .page-kubet11__faq-item.active .page-kubet11__faq-answer {
        padding: 15px 20px !important;
      }
    }
  