
    /* Base styles for the page */
    .page-58kbonus {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      overflow-x: hidden; /* Prevent horizontal scroll */
    }

    /* Fixed Header Spacing */
    .page-58kbonus__hero-section {
      padding-top: 120px; /* Desktop spacing for fixed header */
      position: relative;
      text-align: center;
      background-color: #0d47a1; /* Dark blue background for hero */
      color: #fff;
    }

    .page-58kbonus__hero-image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin: 0 auto;
      text-align: center; /* Center the image within its container */
    }

    .page-58kbonus__hero-image {
      max-width: 100%;
      height: auto;
      display: block; /* Remove extra space below image */
      margin: 0 auto; /* Center image */
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-58kbonus__hero-content {
      padding: 30px 20px 50px;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-58kbonus__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #ffe000; /* Yellow for emphasis */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-58kbonus__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-58kbonus__cta-button {
      display: inline-block;
      background-color: #ff4500; /* Orange-red for CTA */
      color: #fff;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-size: 1.3em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      border: none;
      cursor: pointer;
    }

    .page-58kbonus__cta-button:hover {
      background-color: #e03c00;
      transform: translateY(-3px);
    }

    .page-58kbonus__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-bottom: 1px solid #eee;
    }

    .page-58kbonus__section:nth-of-type(even) {
      background-color: #f0f7ff; /* Light blue for alternating sections */
    }

    .page-58kbonus__section-title {
      font-size: 2.2em;
      color: #0d47a1;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 15px;
    }

    .page-58kbonus__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #ff4500;
      border-radius: 2px;
    }

    .page-58kbonus__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      text-align: justify;
    }

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

    .page-58kbonus__card {
      background-color: #fff;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      padding-bottom: 20px;
    }

    .page-58kbonus__card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .page-58kbonus__card-image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 200px; /* Fixed height for consistency */
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #f0f0f0;
      border-bottom: 1px solid #eee;
    }

    .page-58kbonus__card-image {
      max-width: 100%;
      max-height: 100%;
      width: auto;
      height: auto;
      display: block;
      object-fit: contain; /* Ensure image fits without cropping */
    }

    .page-58kbonus__card-content {
      padding: 20px;
    }

    .page-58kbonus__card-title {
      font-size: 1.5em;
      color: #0d47a1;
      margin-bottom: 10px;
      min-height: 48px; /* Ensure consistent height for titles */
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .page-58kbonus__card-title a {
      text-decoration: none;
      color: #0d47a1;
      transition: color 0.3s ease;
    }

    .page-58kbonus__card-title a:hover {
      color: #ff4500;
    }

    .page-58kbonus__card-description {
      font-size: 0.95em;
      color: #555;
      margin-bottom: 15px;
    }

    .page-58kbonus__card-button {
      display: inline-block;
      background-color: #ff4500;
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 1em;
      transition: background-color 0.3s ease;
    }

    .page-58kbonus__card-button:hover {
      background-color: #e03c00;
    }

    /* Game Provider Section Specifics */
    .page-58kbonus__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Smaller grid for logos */
      gap: 20px;
      margin-top: 30px;
      justify-items: center;
    }

    .page-58kbonus__provider-logo-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 120px; /* Fixed height for logos */
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #f0f0f0;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .page-58kbonus__provider-logo-container:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    }

    .page-58kbonus__provider-logo {
      max-width: 90%;
      max-height: 90%;
      width: auto;
      height: auto;
      display: block;
      object-fit: contain;
    }

    /* Floating Login/Register Button */
    .page-58kbonus__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #00a86b; /* Green for login/register */
      color: #fff;
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.1em;
      font-weight: bold;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      animation: pulse 2s infinite;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .page-58kbonus__floating-button:hover {
      background-color: #008f5a;
      transform: scale(1.05);
    }

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

    /* FAQ Section */
    .page-58kbonus__faq-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
    }

    .page-58kbonus__faq-item {
      background-color: #f9f9f9;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      transition: all 0.4s ease;
    }

    .page-58kbonus__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #0d47a1;
      color: #fff;
      cursor: pointer;
      user-select: none;
      font-size: 1.15em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-58kbonus__faq-question:hover {
      background-color: #0a3a8a;
    }

    .page-58kbonus__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent click on h3 from interfering */
      color: #fff; /* Ensure h3 text is white */
    }

    .page-58kbonus__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent click on toggle from interfering */
    }

    .page-58kbonus__faq-item.active .page-58kbonus__faq-toggle {
      transform: rotate(45deg); /* Rotate plus to form minus */
    }

    .page-58kbonus__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #333;
      background-color: #fff;
    }

    .page-58kbonus__faq-item.active .page-58kbonus__faq-answer {
      max-height: 2000px !important; /* Sufficiently large for content */
      padding: 20px 25px !important; /* Expanded padding */
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-58kbonus__hero-section {
        padding-top: 100px; /* Mobile spacing for fixed header */
        padding-bottom: 30px;
      }

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

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

      .page-58kbonus__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-58kbonus__section {
        padding: 40px 15px;
      }

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

      .page-58kbonus__text-content {
        font-size: 1em;
      }

      .page-58kbonus__grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-58kbonus__card-image-container {
        height: 180px;
      }

      .page-58kbonus__card-title {
        font-size: 1.3em;
        min-height: auto;
      }

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

      .page-58kbonus__providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 15px;
      }
      .page-58kbonus__provider-logo-container {
        height: 90px;
      }

      .page-58kbonus__faq-question {
        padding: 15px 20px;
        font-size: 1em;
      }

      .page-58kbonus__faq-toggle {
        font-size: 1.5em;
      }

      .page-58kbonus__faq-answer {
        padding: 0 20px;
      }

      .page-58kbonus__faq-item.active .page-58kbonus__faq-answer {
        padding: 15px 20px !important;
      }

      /* Image responsive styles with !important */
      .page-58kbonus__hero-image,
      .page-58kbonus__card-image,
      .page-58kbonus__provider-logo {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-58kbonus__hero-image-container,
      .page-58kbonus__card-image-container,
      .page-58kbonus__provider-logo-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-58kbonus__hero-title {
        font-size: 1.8em;
      }
      .page-58kbonus__section-title {
        font-size: 1.6em;
      }
      .page-58kbonus__cta-button {
        font-size: 1em;
        padding: 10px 20px;
      }
    }
  