
      /* style/kubet79.css */
      :root {
          --primary-color: #fdd835; /* Yellow */
          --secondary-color: #2563eb; /* Blue */
          --dark-background: #000000; /* Black */
          --light-text: #ffffff; /* White */
          --dark-text: #111111;
          --button-hover-dark: #e0b800;
          --button-hover-light: #1c4fcc;
      }

      body {
          background-color: var(--dark-background);
          color: var(--light-text);
          font-family: 'Arial', sans-serif;
          margin: 0;
          padding: 0;
      }

      .page-kubet79 {
          background-color: var(--dark-background);
          color: var(--light-text);
          line-height: 1.6;
      }

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

      .page-kubet79__hero-section {
          padding-top: 10px;
          padding-bottom: 0;
          padding-left: 0;
          padding-right: 0;
          text-align: center;
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          max-width: 100%;
          overflow: hidden;
      }

      .page-kubet79__hero-image-container {
          width: 100%;
          max-width: 1920px;
          overflow: hidden;
          margin-bottom: 20px;
      }

      .page-kubet79__hero-image {
          width: 100%;
          height: auto;
          display: block;
          object-fit: cover;
      }

      .page-kubet79__hero-content {
          max-width: 900px;
          margin: 0 auto 40px auto;
          padding: 0 20px;
      }

      .page-kubet79 h1 {
          font-size: clamp(2.2rem, 5vw, 3rem);
          color: var(--primary-color);
          margin-bottom: 20px;
          line-height: 1.2;
          font-weight: bold;
          letter-spacing: 0.5px;
      }

      .page-kubet79 h2 {
          font-size: clamp(1.8rem, 4vw, 2.5rem);
          color: var(--primary-color);
          margin-top: 40px;
          margin-bottom: 25px;
          text-align: center;
          line-height: 1.3;
          font-weight: bold;
      }

      .page-kubet79 h3 {
          font-size: clamp(1.4rem, 3vw, 1.8rem);
          color: var(--light-text);
          margin-top: 25px;
          margin-bottom: 15px;
          line-height: 1.4;
          font-weight: bold;
      }

      .page-kubet79 p {
          font-size: 1.1rem;
          margin-bottom: 15px;
          color: var(--light-text);
      }

      .page-kubet79__cta-buttons {
          display: flex;
          gap: 20px;
          justify-content: center;
          margin-top: 30px;
          flex-wrap: wrap;
          width: 100%;
          max-width: 100%;
          box-sizing: border-box;
          overflow: hidden;
      }

      .page-kubet79__btn-primary,
      .page-kubet79__btn-secondary {
          display: inline-block;
          padding: 15px 30px;
          border-radius: 8px;
          text-decoration: none;
          font-weight: bold;
          font-size: 1.1rem;
          transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
          box-sizing: border-box;
          max-width: 100%;
          text-align: center;
          white-space: normal;
          word-wrap: break-word;
      }

      .page-kubet79__btn-primary {
          background-color: var(--primary-color);
          color: var(--dark-text);
          border: 2px solid var(--primary-color);
      }

      .page-kubet79__btn-primary:hover {
          background-color: var(--button-hover-dark);
          border-color: var(--button-hover-dark);
      }

      .page-kubet79__btn-secondary {
          background-color: transparent;
          color: var(--primary-color);
          border: 2px solid var(--primary-color);
      }

      .page-kubet79__btn-secondary:hover {
          background-color: var(--primary-color);
          color: var(--dark-text);
      }

      .page-kubet79__intro-section p strong {
          color: var(--primary-color);
      }

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

      .page-kubet79__game-card {
          background-color: #1a1a1a;
          border-radius: 12px;
          overflow: hidden;
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
          text-align: center;
          padding-bottom: 20px;
          display: flex;
          flex-direction: column;
          justify-content: space-between;
      }

      .page-kubet79__game-card-image-wrapper {
          width: 100%;
          height: 250px; /* Fixed height for consistency */
          overflow: hidden;
          display: flex;
          align-items: center;
          justify-content: center;
      }

      .page-kubet79__game-card-image {
          width: 100%;
          height: 100%;
          object-fit: cover;
          display: block;
      }

      .page-kubet79__game-card-content {
          padding: 20px;
          flex-grow: 1;
      }

      .page-kubet79__game-card h3 {
          color: var(--primary-color);
          margin-top: 15px;
          margin-bottom: 10px;
      }

      .page-kubet79__game-card p {
          font-size: 1rem;
          color: #cccccc;
          margin-bottom: 20px;
      }

      .page-kubet79__promo-list {
          list-style: none;
          padding: 0;
          margin-top: 30px;
          display: grid;
          gap: 15px;
      }

      .page-kubet79__promo-list li {
          background-color: #1a1a1a;
          padding: 20px;
          border-radius: 8px;
          font-size: 1.1rem;
          color: var(--light-text);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
          display: flex;
          align-items: center;
          gap: 15px;
      }

      .page-kubet79__promo-list li::before {
          content: '⭐';
          font-size: 1.5em;
          line-height: 1;
      }

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

      .page-kubet79__step-item {
          background-color: #1a1a1a;
          border-radius: 12px;
          padding: 30px;
          text-align: center;
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
          display: flex;
          flex-direction: column;
          align-items: center;
      }

      .page-kubet79__step-item h3 {
          color: var(--primary-color);
          margin-top: 15px;
          margin-bottom: 15px;
      }

      .page-kubet79__step-item p {
          font-size: 1rem;
          color: #cccccc;
          flex-grow: 1;
          margin-bottom: 20px;
      }

      .page-kubet79__step-item .page-kubet79__btn-primary {
          margin-top: auto;
      }

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

      .page-kubet79__contact-methods li {
          background-color: #1a1a1a;
          padding: 15px 25px;
          border-radius: 8px;
          font-size: 1.1rem;
          color: var(--light-text);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
          display: flex;
          align-items: center;
          gap: 10px;
      }

      .page-kubet79__contact-methods li::before {
          content: '📞';
          font-size: 1.2em;
          line-height: 1;
      }
      .page-kubet79__contact-methods li:nth-child(2)::before { content: '✉️'; }
      .page-kubet79__contact-methods li:nth-child(3)::before { content: '💬'; }

      .page-kubet79__faq-section {
          background-color: #0a0a0a;
          border-radius: 12px;
          padding: 40px;
          margin-top: 40px;
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
      }

      .page-kubet79__faq-item {
          margin-bottom: 15px;
          border-bottom: 1px solid #333333;
          padding-bottom: 15px;
      }

      .page-kubet79__faq-item:last-child {
          border-bottom: none;
          margin-bottom: 0;
          padding-bottom: 0;
      }

      .page-kubet79__faq-question {
          display: flex;
          justify-content: space-between;
          align-items: center;
          cursor: pointer;
          padding: 15px 0;
          font-size: 1.2rem;
          font-weight: bold;
          color: var(--primary-color);
          user-select: none;
          transition: color 0.3s ease;
      }

      .page-kubet79__faq-question:hover {
          color: var(--button-hover-dark);
      }

      .page-kubet79__faq-question h3 {
          margin: 0;
          color: inherit;
          pointer-events: none;
      }

      .page-kubet79__faq-toggle {
          font-size: 1.8rem;
          line-height: 1;
          pointer-events: none;
          transition: transform 0.3s ease;
      }

      .page-kubet79__faq-answer {
          max-height: 0;
          overflow: hidden;
          padding: 0 15px;
          opacity: 0;
          transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
          font-size: 1rem;
          color: #cccccc;
      }

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

      .page-kubet79__app-section {
          text-align: center;
          margin-top: 60px;
      }

      .page-kubet79__app-buttons {
          display: flex;
          justify-content: center;
          gap: 20px;
          margin-top: 30px;
          flex-wrap: wrap;
          width: 100%;
          max-width: 100%;
          box-sizing: border-box;
          overflow: hidden;
      }

      .page-kubet79__app-button {
          display: inline-flex;
          align-items: center;
          padding: 15px 25px;
          border-radius: 8px;
          text-decoration: none;
          font-weight: bold;
          font-size: 1.1rem;
          color: var(--dark-text);
          background-color: var(--light-text);
          border: 2px solid var(--light-text);
          transition: background-color 0.3s ease, color 0.3s ease;
          max-width: 100%;
          box-sizing: border-box;
          white-space: normal;
          word-wrap: break-word;
      }

      .page-kubet79__app-button:hover {
          background-color: #e0e0e0;
      }

      .page-kubet79__app-button img {
          margin-right: 10px;
          width: 24px;
          height: 24px;
          min-width: 24px;
          min-height: 24px;
          max-width: 24px;
          max-height: 24px;
          object-fit: contain;
      }

      .page-kubet79__conclusion-section {
          text-align: center;
          margin-top: 60px;
          padding-bottom: 60px;
      }

      /* Mobile responsiveness */
      @media (max-width: 768px) {
          .page-kubet79__hero-section {
              padding-top: 10px !important;
              margin-bottom: 20px;
          }
          .page-kubet79__section {
              padding: 20px 15px;
          }
          .page-kubet79 h1 {
              font-size: 2rem;
          }
          .page-kubet79 h2 {
              font-size: 1.6rem;
          }
          .page-kubet79 h3 {
              font-size: 1.3rem;
          }
          .page-kubet79 p {
              font-size: 1rem;
          }
          .page-kubet79__cta-buttons,
          .page-kubet79__app-buttons {
              flex-direction: column;
              gap: 15px;
              padding: 0 15px;
          }
          .page-kubet79__btn-primary,
          .page-kubet79__btn-secondary,
          .page-kubet79__app-button {
              width: 100% !important;
              max-width: 100% !important;
              padding-left: 15px;
              padding-right: 15px;
              white-space: normal !important;
              word-wrap: break-word !important;
          }
          .page-kubet79__game-grid {
              grid-template-columns: 1fr;
              gap: 20px;
          }
          .page-kubet79__game-card-image-wrapper {
              height: 200px;
          }
          .page-kubet79__promo-list,
          .page-kubet79__steps-list {
              grid-template-columns: 1fr;
              gap: 15px;
          }
          .page-kubet79__promo-list li,
          .page-kubet79__contact-methods li {
              flex-direction: column;
              align-items: flex-start;
              text-align: left;
              padding: 15px;
          }
          .page-kubet79__promo-list li::before,
          .page-kubet79__contact-methods li::before {
              margin-bottom: 5px;
          }
          .page-kubet79__contact-methods {
              flex-direction: column;
              gap: 15px;
              padding: 0 15px;
          }
          .page-kubet79__faq-section {
              padding: 20px;
          }
          .page-kubet79__faq-question {
              font-size: 1.1rem;
          }
          .page-kubet79__faq-answer {
              padding: 15px 0 !important;
          }
          .page-kubet79 img {
            max-width: 100% !important;
            width: 100% !important;
            height: auto !important;
          }
          .page-kubet79__section, .page-kubet79__card, .page-kubet79__container {
            max-width: 100% !important;
            width: 100% !important;
            box-sizing: border-box !important;
            padding-left: 15px;
            padding-right: 15px;
          }
      }

      /* Ensure all images are responsive by default */
      .page-kubet79 img {
          max-width: 100%;
          height: auto;
          display: block;
      }

      /* Default container styles to prevent overflow */
      .page-kubet79__container,
      .page-kubet79__section {
          width: 100%;
          max-width: 100%;
          overflow: hidden;
          box-sizing: border-box;
      }
    