
    :root {
      --primary-color: #e44d26; /* A vibrant red/orange, common in betting sites */
      --secondary-color: #333;
      --accent-color: #007bff;
      --background-dark: #1a1a1a;
      --background-light: #2c2c2c;
      --text-color-light: #f0f0f0;
      --text-color-dark: #ccc;
      --border-color: #444;
      --button-bg-register: #4CAF50; /* Green for register */
      --button-bg-login: #008CBA; /* Blue for login */
      --button-text-color: #fff;
    }

    .page-77king88 {
      font-family: 'Arial', sans-serif;
      color: var(--text-color-light);
      background-color: var(--background-dark);
      line-height: 1.6;
      padding-bottom: 20px; /* Ensure space above footer */
    }

    /* Fixed navigation bar spacing adjustment */
    .page-77king88__hero-section {
      padding-top: 10px; /* Small decorative top padding, relies on body padding from shared.css */
    }
    .page-77king88__section:first-of-type:not(.page-77king88__hero-section) {
        padding-top: 10px; /* Small decorative top padding for first section if no hero */
    }
    /* Fallback if shared.css does not provide body padding-top */
    .page-77king88:has(.page-77king88__hero-section) {
        /* No specific padding-top here, relies on body padding */
    }
    .page-77king88:not(:has(.page-77king88__hero-section)) {
        /* If no hero, and body padding is not guaranteed, apply fallback */
        /* padding-top: var(--header-offset, 122px); */ /* This is a fallback and should ideally be avoided if body padding is robust */
    }


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

    .page-77king88__centered-text {
      text-align: center;
    }

    .page-77king88__main-heading {
      color: var(--primary-color);
      margin-bottom: 20px;
      font-size: 2.5em;
      text-align: center;
      padding-top: 20px; /* Adjust as needed */
    }

    .page-77king88__sub-heading {
      color: var(--text-color-light);
      margin-top: 40px;
      margin-bottom: 20px;
      font-size: 1.8em;
      text-align: center;
    }

    .page-77king88__paragraph {
      margin-bottom: 15px;
      color: var(--text-color-dark);
      text-align: justify;
    }

    .page-77king88__button-group {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin: 30px 0;
      flex-wrap: wrap;
    }

    .page-77king88__button {
      background-color: var(--button-bg-register);
      color: var(--button-text-color);
      padding: 12px 25px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      text-decoration: none; /* For anchor buttons */
      display: inline-block; /* For anchor buttons */
      text-align: center;
      min-width: 120px;
    }

    .page-77king88__button--login {
      background-color: var(--button-bg-login);
    }

    .page-77king88__button:hover {
      opacity: 0.9;
    }

    .page-77king88__section {
      padding: 40px 0;
      border-bottom: 1px solid var(--border-color);
    }

    .page-77king88__section:last-of-type {
      border-bottom: none;
    }

    .page-77king88__image-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 30px;
      justify-items: center;
    }

    .page-77king88__image-wrapper {
      width: 100%;
      max-width: 400px; /* Constrain individual image size */
      overflow: hidden;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      background-color: var(--background-light);
      padding: 10px;
      box-sizing: border-box;
      text-align: center;
    }

    .page-77king88__image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 5px;
      object-fit: cover; /* Ensure images fill their space */
      min-height: 200px; /* Minimum height for images */
      min-width: 200px; /* Minimum width for images */
    }
    
    .page-77king88__image-caption {
      margin-top: 10px;
      font-size: 0.9em;
      color: var(--text-color-dark);
    }

    .page-77king88__features-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-77king88__feature-item {
      background-color: var(--background-light);
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
      box-sizing: border-box; /* Crucial for mobile responsiveness */
      width: 100%; /* Default to 100% for smaller screens, adjusted by grid */
    }

    .page-77king88__feature-item h3 {
      color: var(--primary-color);
      margin-top: 0;
      font-size: 1.2em;
      margin-bottom: 10px;
    }

    .page-77king88__feature-item p {
      color: var(--text-color-dark);
      font-size: 0.95em;
    }

    .page-77king88__list {
      list-style: none;
      padding: 0;
      margin-top: 20px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 15px;
    }

    .page-77king88__list-item {
      background-color: var(--background-light);
      padding: 15px;
      border-radius: 5px;
      text-align: center;
      color: var(--text-color-light);
      font-weight: bold;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
      box-sizing: border-box; /* Crucial for mobile responsiveness */
      word-wrap: break-word; /* Ensure long text breaks */
      overflow-wrap: break-word;
      width: 100%; /* Default for grid item */
    }
    
    .page-77king88__list-item-text {
        color: var(--text-color-light);
        text-decoration: none;
    }

    /* FAQ Section Styles */
    .page-77king88__faq-section {
      background-color: var(--background-dark);
      padding: 40px 0;
    }

    .page-77king88__faq-heading {
      text-align: center;
      color: var(--primary-color);
      margin-bottom: 30px;
      font-size: 2em;
    }

    .page-77king88__faq-item {
      background-color: var(--background-light);
      margin-bottom: 10px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .page-77king88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #3a3a3a;
      border-bottom: 1px solid var(--border-color);
      transition: background-color 0.3s ease;
    }

    .page-77king88__faq-question:hover {
      background-color: #4a4a4a;
    }

    .page-77king88__faq-question h3 {
      margin: 0;
      color: var(--text-color-light);
      font-size: 1.1em;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-77king88__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-77king88__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px; /* Initial padding for transition */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: var(--text-color-dark);
      font-size: 0.95em;
    }

    .page-77king88__faq-item.active .page-77king88__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 15px !important; /* Expanded padding */
      opacity: 1;
    }

    .page-77king88__faq-item.active .page-77king88__faq-toggle {
      transform: rotate(45deg); /* Change + to X or - */
      color: var(--accent-color);
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-77king88__main-heading {
        font-size: 2em;
      }

      .page-77king88__sub-heading {
        font-size: 1.5em;
      }

      .page-77king88__button-group {
        flex-direction: column;
        align-items: center;
      }

      .page-77king88__button {
        width: 80%;
        max-width: 250px;
      }

      .page-77king88__image-grid {
        grid-template-columns: 1fr;
      }

      .page-77king88__image-wrapper {
        max-width: 100%; /* Allow image wrapper to take full width on mobile */
      }

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

      .page-77king88__features-list,
      .page-77king88__list {
        grid-template-columns: 1fr;
        padding: 0 10px; /* Add some padding to the grid container */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-77king88__feature-item,
      .page-77king88__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px !important; /* Adjust padding for mobile */
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      
      .page-77king88__faq-question {
        padding: 12px 15px;
      }

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

      .page-77king88__faq-answer {
        padding: 0 10px;
      }
      
      .page-77king88__faq-item.active .page-77king88__faq-answer {
        padding: 15px 10px !important;
      }
    }
  