
    .page-kubetlogin {
      font-family: 'Arial', sans-serif;
      background-color: #1a1a2e; /* Dark blue/purple */
      color: #e0e0e0; /* Light grey */
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-kubetlogin .page-kubetlogin__banner {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      object-fit: cover;
    }

    .page-kubetlogin__hero {
      text-align: center;
      padding: 20px 15px;
      background: linear-gradient(180deg, rgba(26,26,46,0.8) 0%, rgba(26,26,46,1) 100%);
      border-bottom: 2px solid #3a3a5e;
    }

    .page-kubetlogin__hero h1 {
      font-size: 2em;
      color: #ffcc00; /* Gold */
      margin-bottom: 10px;
      line-height: 1.2;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    }

    .page-kubetlogin__hero p {
      font-size: 1em;
      color: #e0e0e0;
      margin-bottom: 20px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-kubetlogin__buttons-floating {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      background-color: rgba(0, 0, 0, 0.9);
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
      z-index: 1000;
    }

    .page-kubetlogin__btn {
      display: inline-block;
      padding: 12px 20px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: all 0.3s ease;
      text-align: center;
      flex: 1;
      margin: 0 5px;
      white-space: nowrap;
    }

    .page-kubetlogin__btn--register {
      background-color: #e74c3c; /* Red */
      color: #ffffff;
      border: 2px solid #c0392b;
    }

    .page-kubetlogin__btn--register:hover {
      background-color: #c0392b;
      transform: translateY(-2px);
    }

    .page-kubetlogin__btn--login {
      background-color: #ffcc00; /* Gold */
      color: #1a1a2e;
      border: 2px solid #e6b800;
    }

    .page-kubetlogin__btn--login:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

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

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

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

    .page-kubetlogin__section h3 {
      font-size: 1.4em;
      color: #e0e0e0;
      margin-top: 20px;
      margin-bottom: 15px;
      border-left: 4px solid #ffcc00;
      padding-left: 10px;
    }

    .page-kubetlogin__section p {
      margin-bottom: 15px;
      color: #c0c0c0;
    }

    .page-kubetlogin__section ul {
      list-style-type: disc;
      margin-left: 20px;
      margin-bottom: 15px;
      color: #c0c0c0;
    }

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

    .page-kubetlogin__section a {
      color: #ffcc00;
      text-decoration: none;
    }

    .page-kubetlogin__section a:hover {
      text-decoration: underline;
    }

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

    .page-kubetlogin__game-card {
      background-color: #2a2a4a;
      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-decoration: none;
      color: inherit;
    }

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

    .page-kubetlogin__game-card img {
      width: 100%;
      height: 120px;
      object-fit: cover;
      display: block;
      border-bottom: 1px solid #3a3a5e;
    }

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

    .page-kubetlogin__steps-list {
      counter-reset: step-counter;
      list-style: none;
      padding: 0;
    }

    .page-kubetlogin__steps-list li {
      background-color: #2a2a4a;
      margin-bottom: 15px;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      position: relative;
      padding-left: 50px;
    }

    .page-kubetlogin__steps-list li::before {
      counter-increment: step-counter;
      content: counter(step-counter);
      position: absolute;
      left: 15px;
      top: 50%;
      transform: translateY(-50%);
      background-color: #e74c3c;
      color: #ffffff;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 1.1em;
    }

    .page-kubetlogin__steps-list li strong {
      color: #ffcc00;
      display: block;
      margin-bottom: 5px;
    }

    .page-kubetlogin__contact-info {
        text-align: center;
        margin-top: 30px;
    }

    .page-kubetlogin__contact-info p {
        margin-bottom: 10px;
    }

    @media (min-width: 768px) {
      .page-kubetlogin__hero h1 {
        font-size: 2.8em;
      }
      .page-kubetlogin__hero p {
        font-size: 1.1em;
      }
      .page-kubetlogin__section h2 {
        font-size: 2.2em;
      }
      .page-kubetlogin__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      }
      .page-kubetlogin__game-card img {
        height: 150px;
      }
      .page-kubetlogin__buttons-floating {
        justify-content: center;
        gap: 20px;
        padding: 15px 0;
      }
      .page-kubetlogin__btn {
        flex: unset;
        width: 200px;
      }
    }
  