
    /* Base styles for the page */
    .page-8k8-slot-login {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f4f7f6;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    /* Fixed nav spacing - Relying on body padding-top from shared.css */
    .page-8k8-slot-login__hero-section {
      padding-top: 10px; /* Small decorative padding, body handles main offset */
      background-color: #1a1a1a;
      color: #ffffff;
      text-align: center;
      padding: 60px 20px;
      position: relative;
      overflow: hidden;
    }

    .page-8k8-slot-login__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      opacity: 0.3;
    }

    .page-8k8-slot-login__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-8k8-slot-login__hero-title {
      font-size: 3em;
      margin-bottom: 20px;
      color: #ffcc00; /* Gold/Yellow for casino theme */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-slot-login__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-8k8-slot-login__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto 30px auto; /* Margin bottom for separation */
      background-color: #ffffff;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .page-8k8-slot-login__section:nth-of-type(even) {
      background-color: #f9f9f9;
    }

    .page-8k8-slot-login__section-title {
      font-size: 2.5em;
      color: #333;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 15px;
    }

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

    .page-8k8-slot-login__content-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      align-items: flex-start;
    }

    .page-8k8-slot-login__text-block {
      flex: 1;
      min-width: 300px;
      padding: 20px;
      background-color: #f9f9f9;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-slot-login__image-container {
      flex: 1;
      min-width: 300px;
      max-width: 600px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #eee;
    }

    .page-8k8-slot-login__image {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .page-8k8-slot-login__list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .page-8k8-slot-login__list-item {
      background-color: #fff;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Required for list items */
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .page-8k8-slot-login__list-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-8k8-slot-login__list-icon {
      margin-bottom: 15px;
      max-width: 250px; /* Min size 200x200 */
      height: auto;
      border-radius: 5px;
      display: block;
    }

    .page-8k8-slot-login__list-title {
      font-size: 1.4em;
      color: #333;
      margin-bottom: 10px;
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word; /* Ensure text wraps */
      word-break: break-word; /* For long keywords */
    }

    .page-8k8-slot-login__list-description {
      color: #666;
      font-size: 0.95em;
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word; /* Ensure text wraps */
      word-break: break-word; /* For long keywords */
    }

    .page-8k8-slot-login__button {
      display: inline-block;
      background-color: #ffcc00;
      color: #1a1a1a;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-slot-login__button:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    /* Floating Login/Register Buttons */
    .page-8k8-slot-login__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      background-color: rgba(26, 26, 26, 0.9);
      padding: 15px 25px;
      border-radius: 50px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-slot-login__floating-button {
      background-color: #ffcc00;
      color: #1a1a1a;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      min-width: 100px;
      text-align: center;
    }

    .page-8k8-slot-login__floating-button:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    /* FAQ Section Styles */
    .page-8k8-slot-login__faq-section {
      background-color: #ffffff;
      padding: 40px 20px;
      max-width: 1000px;
      margin: 0 auto 30px auto;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .page-8k8-slot-login__faq-item {
      margin-bottom: 15px;
      border: 1px solid #ddd;
      border-radius: 8px;
      overflow: hidden;
      background-color: #fcfcfc;
    }

    .page-8k8-slot-login__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #f0f0f0;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      color: #333;
      transition: background-color 0.3s ease;
    }

    .page-8k8-slot-login__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-8k8-slot-login__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #333;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-8k8-slot-login__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      color: #ffcc00;
    }

    .page-8k8-slot-login__faq-item.active .page-8k8-slot-login__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
      color: #e6b800;
    }

    .page-8k8-slot-login__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;
      color: #555;
      font-size: 0.95em;
      background-color: #ffffff;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-8k8-slot-login__hero-title {
        font-size: 2.2em;
      }

      .page-8k8-slot-login__hero-description {
        font-size: 1em;
      }

      .page-8k8-slot-login__section-title {
        font-size: 2em;
      }

      .page-8k8-slot-login__content-wrapper {
        flex-direction: column;
      }

      .page-8k8-slot-login__text-block,
      .page-8k8-slot-login__image-container {
        min-width: unset;
        width: 100%;
      }

      .page-8k8-slot-login__list {
        grid-template-columns: 1fr; /* Single column for list items on mobile */
      }

      .page-8k8-slot-login__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px; /* Adjust padding for mobile */
      }

      .page-8k8-slot-login__list-title {
        font-size: 1.2em;
      }

      .page-8k8-slot-login__list-description {
        font-size: 0.9em;
      }

      .page-8k8-slot-login__image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-8k8-slot-login__image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }

      .page-8k8-slot-login__floating-buttons {
        bottom: 15px;
        padding: 10px 15px;
        gap: 10px;
      }

      .page-8k8-slot-login__floating-button {
        padding: 10px 20px;
        font-size: 0.9em;
      }

      .page-8k8-slot-login__faq-question {
        padding: 12px 15px;
      }

      .page-8k8-slot-login__faq-question h3 {
        font-size: 1em;
      }

      .page-8k8-slot-login__faq-answer {
        padding: 15px 15px !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-slot-login__hero-title {
        font-size: 1.8em;
      }
      .page-8k8-slot-login__section-title {
        font-size: 1.8em;
      }
      .page-8k8-slot-login__floating-buttons {
        width: calc(100% - 30px);
        left: 15px;
        transform: none;
        bottom: 10px;
        border-radius: 8px;
        justify-content: space-around;
        padding: 10px;
      }
      .page-8k8-slot-login__floating-button {
        flex: 1;
        min-width: unset;
      }
    }
  