
    :root {
      --page-kubet777-bg-color: #000000;
      --page-kubet777-text-color: #FFFFFF;
      --page-kubet777-accent-color: #FFD700; /* Gold/Yellow */
      --page-kubet777-dark-gray: #1a1a1a;
      --page-kubet777-light-gray: #cccccc;
      --page-kubet777-border-color: #333333;
      --page-kubet777-button-promo-color: #FF4500; /* Orange-Red for urgency */
    }

    .page-kubet777 {
      font-family: 'Arial', sans-serif;
      background-color: var(--page-kubet777-bg-color);
      color: var(--page-kubet777-text-color);
      line-height: 1.6;
      overflow-x: hidden;
    }

    .page-kubet777__section {
      padding: 40px 20px;
      text-align: center;
      max-width: 1200px;
      margin: 0 auto;
      box-sizing: border-box;
    }

    .page-kubet777__section--dark {
      background-color: var(--page-kubet777-dark-gray);
    }

    .page-kubet777__heading {
      color: var(--page-kubet777-accent-color);
      margin-bottom: 20px;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-kubet777__subheading {
      color: var(--page-kubet777-text-color);
      margin-bottom: 30px;
      font-size: 1.5em;
    }

    .page-kubet777__paragraph {
      margin-bottom: 15px;
      color: var(--page-kubet777-light-gray);
    }

    /* Hero Section */
    .page-kubet777__hero-section {
      position: relative;
      width: 100%;
      min-height: 300px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding-top: 10px; /* Desktop safe zone as per strict requirement */
      box-sizing: border-box;
      background-color: var(--page-kubet777-bg-color);
    }

    .page-kubet777__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      object-fit: contain;
      border-radius: 8px;
    }

    .page-kubet777__hero-content {
      position: relative;
      padding: 20px;
      z-index: 1;
      max-width: 800px;
      margin-top: 20px;
    }

    .page-kubet777__hero-title {
      font-size: 2.8em;
      color: var(--page-kubet777-accent-color);
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .page-kubet777__hero-description {
      font-size: 1.2em;
      color: var(--page-kubet777-text-color);
      margin-bottom: 30px;
    }

    .page-kubet777__button {
      display: inline-block;
      background-color: var(--page-kubet777-accent-color);
      color: var(--page-kubet777-bg-color);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-kubet777__button:hover {
      background-color: #FFC107;
    }

    /* Floating Login Button */
    .page-kubet777__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-kubet777-button-promo-color);
      color: var(--page-kubet777-text-color);
      padding: 15px 25px;
      border-radius: 50px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      z-index: 1000;
      font-weight: bold;
      font-size: 1.1em;
      animation: page-kubet777__pulse 2s infinite;
      border: none;
      cursor: pointer;
      text-decoration: none; /* Ensure it looks like a button, not a plain link */
    }

    .page-kubet777__floating-button:hover {
      background-color: #E63900;
    }

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

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

    .page-kubet777__game-item {
      background-color: var(--page-kubet777-dark-gray);
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--page-kubet777-border-color);
      box-sizing: border-box;
    }

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

    .page-kubet777__game-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
    }

    .page-kubet777__game-title {
      font-size: 1.3em;
      color: var(--page-kubet777-accent-color);
      padding: 15px 10px;
      margin: 0;
    }

    /* Promotions */
    .page-kubet777__promo-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-kubet777__promo-card {
      background-color: var(--page-kubet777-dark-gray);
      border-radius: 10px;
      padding: 25px;
      text-align: left;
      border: 1px solid var(--page-kubet777-border-color);
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
      transition: box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-kubet777__promo-card:hover {
      box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    }

    .page-kubet777__promo-title {
      color: var(--page-kubet777-accent-color);
      font-size: 1.4em;
      margin-bottom: 10px;
    }

    .page-kubet777__promo-description {
      color: var(--page-kubet777-light-gray);
      font-size: 1em;
      margin-bottom: 15px;
    }

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

    .page-kubet777__provider-item {
      background-color: var(--page-kubet777-dark-gray);
      border-radius: 8px;
      padding: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100px;
      border: 1px solid var(--page-kubet777-border-color);
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-kubet777__provider-item:hover {
      transform: scale(1.05);
    }

    .page-kubet777__provider-logo {
      max-width: 100%;
      max-height: 80px; /* Constrain height for logos */
      height: auto;
      object-fit: contain;
    }

    /* FAQ Section */
    .page-kubet777__faq-container {
      margin-top: 30px;
      text-align: left;
    }

    .page-kubet777__faq-item {
      background-color: var(--page-kubet777-dark-gray);
      border: 1px solid var(--page-kubet777-border-color);
      margin-bottom: 10px;
      border-radius: 8px;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-kubet777__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #2a2a2a;
      color: var(--page-kubet777-accent-color);
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-kubet777__faq-question:hover {
      background-color: #3a3a3a;
    }

    .page-kubet777__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--page-kubet777-accent-color);
      pointer-events: none;
    }

    .page-kubet777__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none;
      transition: transform 0.3s ease;
    }

    .page-kubet777__faq-item.active .page-kubet777__faq-toggle {
      transform: rotate(45deg);
    }

    .page-kubet777__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      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-kubet777-light-gray);
      font-size: 0.95em;
      text-align: left;
    }

    .page-kubet777__faq-item.active .page-kubet777__faq-answer {
      max-height: 2000px !important;
      padding: 20px !important;
      opacity: 1;
    }

    /* General Image Styles for Responsiveness */
    .page-kubet777 img {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      box-sizing: border-box; /* Ensure images also respect box-sizing */
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-kubet777__hero-section {
        padding-top: 10px; /* Mobile safe zone as per strict requirement */
        min-height: 250px;
      }

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

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

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

      .page-kubet777__subheading {
        font-size: 1.2em;
      }

      .page-kubet777__section {
        padding: 30px 15px;
      }

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

      /* List items responsive adjustments */
      .page-kubet777__game-grid,
      .page-kubet777__promo-list,
      .page-kubet777__provider-grid {
        grid-template-columns: 1fr; /* Single column for all grids */
        gap: 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-kubet777__game-item,
      .page-kubet777__promo-card,
      .page-kubet777__provider-item,
      .page-kubet777__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 10px; /* Adjust padding for smaller screens */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      
      .page-kubet777__faq-container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-kubet777__game-image {
        height: 150px;
      }

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

      .page-kubet777__faq-question {
        padding: 12px 15px;
      }

      .page-kubet777__faq-question h3 {
        font-size: 1em;
      }

      .page-kubet777__faq-answer {
        padding: 15px !important;
      }
      
      .page-kubet777 img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-kubet777__hero-title {
        font-size: 1.8em;
      }
      .page-kubet777__hero-description {
        font-size: 0.9em;
      }
      .page-kubet777__heading {
        font-size: 1.8em;
      }
      .page-kubet777__subheading {
        font-size: 1.1em;
      }
      .page-kubet777__button {
        padding: 10px 20px;
        font-size: 0.9em;
      }
    }
  