
    .page-77king {
      font-family: 'Arial', sans-serif;
      color: #333;
      background-color: #f0f2f5;
      line-height: 1.6;
      overflow-x: hidden;
    }

    .page-77king__hero-section {
      position: relative;
      background: linear-gradient(135deg, #007bff, #0056b3);
      color: #fff;
      padding: 10px 0 60px;
      text-align: center;
      overflow: hidden;
      padding-top: 10px; /* Small decorative top padding, relies on body padding-top for header offset */
    }

    .page-77king__hero-content {
      max-width: 900px;
      margin: 0 auto;
      padding: 20px;
      position: relative;
      z-index: 1;
    }

    .page-77king__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      font-weight: bold;
    }

    .page-77king__hero-subtitle {
      font-size: 1.4em;
      margin-bottom: 30px;
      color: #e0e0e0;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-77king__cta-button {
      display: inline-block;
      background-color: #ffc107;
      color: #333;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-77king__cta-button:hover {
      background-color: #e0a800;
      transform: translateY(-3px);
    }

    .page-77king__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-77king__floating-button {
      background-color: #28a745;
      color: #fff;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-size: 1.1em;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-77king__floating-button--login {
      background-color: #6c757d;
    }

    .page-77king__floating-button:hover {
      transform: translateY(-3px);
    }

    .page-77king__floating-button--register:hover {
      background-color: #218838;
    }

    .page-77king__floating-button--login:hover {
      background-color: #5a6268;
    }

    .page-77king__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      margin-bottom: 30px;
    }

    .page-77king__section-title {
      font-size: 2.2em;
      color: #0056b3;
      text-align: center;
      margin-bottom: 40px;
      font-weight: bold;
    }

    .page-77king__section-description {
      font-size: 1.1em;
      text-align: center;
      margin-bottom: 40px;
      color: #555;
    }

    .page-77king__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      justify-content: center;
    }

    .page-77king__game-card {
      background-color: #f9f9f9;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-77king__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-77king__game-image-wrapper {
      width: 100%;
      height: 200px;
      overflow: hidden;
    }

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

    .page-77king__game-title {
      font-size: 1.5em;
      color: #007bff;
      margin: 20px 15px 10px;
      font-weight: bold;
    }

    .page-77king__game-description {
      font-size: 1em;
      color: #666;
      padding: 0 15px 20px;
    }

    .page-77king__promo-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
    }

    .page-77king__promo-item {
      background-color: #e6f2ff;
      border-left: 5px solid #007bff;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      box-sizing: border-box;
    }

    .page-77king__promo-title {
      font-size: 1.3em;
      color: #0056b3;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-77king__promo-description {
      font-size: 1em;
      color: #444;
    }

    .page-77king__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .page-77king__feature-item {
      text-align: center;
      padding: 30px;
      background-color: #f9f9f9;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
      box-sizing: border-box;
    }

    .page-77king__feature-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 20px;
      display: block;
      max-width: 100%;
      object-fit: contain;
    }

    .page-77king__feature-title {
      font-size: 1.4em;
      color: #007bff;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-77king__feature-description {
      font-size: 1em;
      color: #666;
    }

    .page-77king__faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-77king__faq-item {
      background-color: #f9f9f9;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      border: 1px solid #e0e0e0;
    }

    .page-77king__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      font-size: 1.2em;
      color: #0056b3;
      cursor: pointer;
      background-color: #e6f2ff;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-77king__faq-question:hover {
      background-color: #d0e7ff;
    }

    .page-77king__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #0056b3;
      pointer-events: none;
      flex-grow: 1;
    }

    .page-77king__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none;
      color: #007bff;
      margin-left: 15px;
      transition: transform 0.3s ease;
    }

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

    .page-77king__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.4s ease;
      color: #444;
      font-size: 1em;
    }

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

    .page-77king__contact-section {
      text-align: center;
      padding: 60px 20px;
      background-color: #007bff;
      color: #fff;
      margin-bottom: 0;
    }

    .page-77king__contact-title {
      font-size: 2.2em;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-77king__contact-text {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-77king__hero-title {
        font-size: 2.2em;
      }

      .page-77king__hero-subtitle {
        font-size: 1.1em;
      }

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

      .page-77king__section {
        padding: 40px 15px;
        margin-bottom: 20px;
      }

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

      .page-77king__game-grid,
      .page-77king__promo-list,
      .page-77king__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-77king__promo-item,
      .page-77king__feature-item,
      .page-77king__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px;
        padding-right: 15px;
      }

      .page-77king__promo-list,
      .page-77king__features-grid {
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-77king__faq-question,
      .page-77king__faq-answer {
        padding-left: 15px !important;
        padding-right: 15px !important;
      }

      .page-77king__game-description,
      .page-77king__promo-description,
      .page-77king__feature-description,
      .page-77king__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-77king__floating-buttons {
        flex-direction: row;
        width: 100%;
        left: 0;
        right: 0;
        bottom: 0;
        border-top: 1px solid #ddd;
        background-color: #fff;
        padding: 10px 15px;
        justify-content: space-around;
        border-radius: 0;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
      }

      .page-77king__floating-button {
        flex: 1;
        margin: 0 5px;
        padding: 10px 15px;
        font-size: 0.9em;
        border-radius: 25px;
      }

      .page-77king__contact-title {
        font-size: 1.8em;
      }

      .page-77king__contact-text {
        font-size: 1em;
      }
      
      .page-77king__game-image-wrapper {
        height: 150px;
      }

      .page-77king__game-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-77king__feature-icon {
        width: 60px;
        height: 60px;
      }
    }
  