
    /* Page-specific CSS for kubet */
    .page-kubet {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0; /* Light text for dark background */
      background-color: #1a1a1a; /* Dark background */
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating button */
    }

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

    .page-kubet .banner {
      position: relative;
      text-align: center;
      margin-bottom: 20px;
      background-color: #000;
      overflow: hidden;
    }

    .page-kubet .banner img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      max-height: 400px;
    }

    .page-kubet .banner-content {
      position: relative;
      padding: 20px 15px;
      background-color: #222; /* Slightly lighter dark for content */
      color: #fff;
      text-align: center;
    }

    .page-kubet .banner-content h1 {
      font-size: 2.2em;
      color: #ffcc00; /* Gold accent */
      margin-bottom: 10px;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    }
    @media (min-width: 768px) {
      .page-kubet .banner-content h1 {
        font-size: 3em;
      }
    }

    .page-kubet .banner-content p {
      font-size: 1.1em;
      margin-bottom: 20px;
    }

    .page-kubet .btn-primary {
      display: inline-block;
      background-color: #ffcc00; /* Gold accent */
      color: #1a1a1a; /* Dark text for gold background */
      padding: 12px 25px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-kubet .btn-primary:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    .page-kubet .floating-login-btn {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      background-color: #e74c3c; /* Red accent for urgency/promo */
      color: #fff;
      padding: 15px 30px;
      border-radius: 50px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.3);
      font-size: 1.2em;
      font-weight: bold;
      text-align: center;
      text-decoration: none;
      animation: pulse 2s infinite;
    }

    .page-kubet .floating-login-btn:hover {
      background-color: #c0392b;
      animation: none;
    }

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

    .page-kubet section {
      padding: 40px 0;
      margin-bottom: 20px;
      background-color: #222; /* Section background */
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }

    .page-kubet section:nth-of-type(even) {
      background-color: #2a2a2a; /* Alternate section background */
    }

    .page-kubet h2 {
      color: #ffcc00;
      text-align: center;
      font-size: 2em;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-kubet h3 {
      color: #00bfff; /* Sky blue accent */
      font-size: 1.5em;
      margin-top: 25px;
      margin-bottom: 15px;
      border-left: 5px solid #00bfff;
      padding-left: 10px;
    }

    .page-kubet p {
      margin-bottom: 15px;
      color: #d0d0d0;
    }

    .page-kubet ul {
      list-style: disc inside;
      margin-left: 20px;
      margin-bottom: 15px;
      color: #d0d0d0;
    }

    .page-kubet ol {
      list-style: decimal inside;
      margin-left: 20px;
      margin-bottom: 15px;
      color: #d0d0d0;
    }

    .page-kubet li {
      margin-bottom: 8px;
    }

    .page-kubet a {
      color: #00bfff;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-kubet a:hover {
      color: #87cefa;
      text-decoration: underline;
    }

    .page-kubet .game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      text-align: center;
    }

    .page-kubet .game-card {
      background-color: #333;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

    .page-kubet .game-card img {
      width: 100%;
      height: 120px; /* Fixed height for game images */
      object-fit: cover;
      display: block;
    }

    .page-kubet .game-card h4 {
      color: #ffcc00;
      font-size: 1.1em;
      padding: 10px;
      margin: 0;
    }

    .page-kubet .promo-box {
      background-color: #e74c3c;
      color: #fff;
      padding: 25px;
      border-radius: 10px;
      text-align: center;
      margin-top: 30px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    }

    .page-kubet .promo-box h3 {
      color: #fff;
      border-left: none;
      padding-left: 0;
      margin-bottom: 15px;
      font-size: 1.8em;
    }

    .page-kubet .promo-box p {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #fff;
    }

    .page-kubet .faq-item {
      background-color: #333;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
    }

    .page-kubet .faq-question {
      padding: 15px 20px;
      background-color: #444;
      color: #ffcc00;
      font-weight: bold;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background-color 0.3s ease;
    }

    .page-kubet .faq-question:hover {
      background-color: #555;
    }

    .page-kubet .faq-question::after {
      content: '+';
      font-size: 1.5em;
      transition: transform 0.3s ease;
    }

    .page-kubet .faq-question.active::after {
      content: '-';
      transform: rotate(180deg);
    }

    .page-kubet .faq-answer {
      padding: 0 20px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease-out, padding 0.5s ease-out;
      background-color: #333;
      color: #d0d0d0;
    }

    .page-kubet .faq-answer.open {
      max-height: 200px; /* Adjust as needed, can be dynamic with JS */
      padding: 15px 20px;
    }

    @media (max-width: 768px) {
      .page-kubet .banner-content h1 {
        font-size: 1.8em;
      }
      .page-kubet h2 {
        font-size: 1.8em;
      }
      .page-kubet h3 {
        font-size: 1.3em;
      }
      .page-kubet .game-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .page-kubet .floating-login-btn {
        padding: 12px 25px;
        font-size: 1.1em;
      }
    }
  