
    :root {
      --page-kubet11-primary-color: #007bff; /* Blue */
      --page-kubet11-secondary-color: #6c757d; /* Gray */
      --page-kubet11-accent-color: #ffc107; /* Yellow */
      --page-kubet11-dark-background: #212529; /* Dark Gray */
      --page-kubet11-light-background: #f8f9fa; /* Light Gray */
      --page-kubet11-text-color: #343a40; /* Dark text */
      --page-kubet11-white: #ffffff;
      --page-kubet11-red: #dc3545; /* Red for emphasis */
      --page-kubet11-green: #28a745; /* Green for success */
    }

    .page-kubet11 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-kubet11-text-color);
      background-color: var(--page-kubet11-light-background);
      margin: 0;
      padding: 0;
    }

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

    /* Hero Section */
    .page-kubet11__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('[GALLERY:hero:kubet11_banner,game_lobby,mobile_betting]') no-repeat center center/cover;
      color: var(--page-kubet11-white);
      text-align: center;
      padding: 10px 20px 80px; /* Added padding-top for fixed header */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 400px;
      position: relative;
    }

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

    .page-kubet11__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-kubet11__cta-button {
      display: inline-block;
      background-color: var(--page-kubet11-primary-color);
      color: var(--page-kubet11-white);
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      font-size: 1.1em;
      border: none; /* Use button tag, so remove border */
      cursor: pointer;
    }

    .page-kubet11__cta-button:hover {
      background-color: #0056b3;
    }

    /* Floating Login Button */
    .page-kubet11__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-kubet11-red);
      color: var(--page-kubet11-white);
      padding: 15px 25px;
      border-radius: 50px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      font-weight: bold;
      animation: page-kubet11-pulse 2s infinite;
      cursor: pointer;
      border: none;
      font-size: 1em;
      transition: background-color 0.3s ease;
    }

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

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

    /* Section Styling */
    .page-kubet11__section {
      padding: 60px 0;
      background-color: var(--page-kubet11-white);
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .page-kubet11__section--dark {
      background-color: var(--page-kubet11-dark-background);
      color: var(--page-kubet11-white);
    }

    .page-kubet11__section-title {
      font-size: 2.2em;
      color: var(--page-kubet11-primary-color);
      text-align: center;
      margin-bottom: 40px;
      position: relative;
    }

    .page-kubet11__section-title--dark {
      color: var(--page-kubet11-accent-color);
    }

    .page-kubet11__section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background-color: var(--page-kubet11-accent-color);
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .page-kubet11__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      text-align: justify;
    }

    .page-kubet11__image-wrapper {
      text-align: center;
      margin: 40px 0;
    }

    .page-kubet11__image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      object-fit: cover;
      width: 100%; /* Ensure image fills container */
      max-width: 100%; /* Ensure image fills container */
      overflow: hidden; /* Ensure image fills container */
      box-sizing: border-box; /* Ensure image fills container */
    }

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

    .page-kubet11__card {
      background-color: var(--page-kubet11-light-background);
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      padding: 30px;
      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-kubet11__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .page-kubet11__card-icon {
      margin-bottom: 20px;
      width: 100%;
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      object-fit: cover;
      overflow: hidden;
      box-sizing: border-box;
    }
    
    .page-kubet11__card-title {
      font-size: 1.5em;
      color: var(--page-kubet11-primary-color);
      margin-bottom: 15px;
    }

    .page-kubet11__card-text {
      font-size: 1em;
      color: var(--page-kubet11-text-color);
    }

    .page-kubet11__list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      justify-content: center;
      margin-top: 30px;
    }

    .page-kubet11__list-item {
      background-color: var(--page-kubet11-primary-color);
      color: var(--page-kubet11-white);
      padding: 12px 25px;
      border-radius: 25px;
      font-weight: bold;
      font-size: 1em;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    /* FAQ Section */
    .page-kubet11__faq-section {
      background-color: var(--page-kubet11-light-background);
      padding: 60px 0;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .page-kubet11__faq-list {
      max-width: 800px;
      margin: 0 auto;
      padding: 0;
      list-style: none;
    }

    .page-kubet11__faq-item {
      background-color: var(--page-kubet11-white);
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
    }

    .page-kubet11__faq-item.active {
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .page-kubet11__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #e9ecef;
      color: var(--page-kubet11-text-color);
      font-weight: bold;
      font-size: 1.1em;
      user-select: none;
      transition: background-color 0.3s ease;
    }

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

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

    .page-kubet11__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Prevent toggle from blocking click */
      transition: transform 0.3s ease;
      color: var(--page-kubet11-primary-color);
    }

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

    .page-kubet11__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      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-kubet11-text-color);
    }

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

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

      .page-kubet11__hero-section {
        padding-top: 10px; /* Adjusted padding-top for mobile fixed header */
        min-height: 300px;
      }

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

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

      .page-kubet11__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-kubet11__section {
        padding: 40px 0;
      }

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

      .page-kubet11__text-content {
        font-size: 0.95em;
      }

      .page-kubet11__grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-kubet11__card {
        padding: 20px;
      }

      .page-kubet11__card-title {
        font-size: 1.3em;
      }

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

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

      .page-kubet11__faq-question {
        padding: 15px 20px;
        font-size: 1em;
      }
      .page-kubet11__faq-question h3 {
        font-size: 1em;
      }
      .page-kubet11__faq-answer {
        padding: 0 20px;
      }
      .page-kubet11__faq-item.active .page-kubet11__faq-answer {
        padding: 15px 20px !important;
      }

      /* Image responsive optimization for mobile */
      .page-kubet11 img {
          max-width: 100% !important;
          height: auto !important;
      }
      .page-kubet11__image-wrapper,
      .page-kubet11__card-icon-container {
          width: 100% !important;
          max-width: 100% !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
      }
    }
  