
    :root {
      --page-www-8k8-primary-color: #e53935; /* A vibrant red, common in casino branding */
      --page-www-8k8-secondary-color: #ffb300; /* A golden yellow for highlights */
      --page-www-8k8-dark-background: #1a1a1a;
      --page-www-8k8-light-background: #f5f5f5;
      --page-www-8k8-text-color: #ffffff;
      --page-www-8k8-dark-text-color: #333333;
      --page-www-8k8-border-radius: 8px;
      --page-www-8k8-padding-section: 60px 20px;
      --page-www-8k8-padding-item: 20px;
      --page-www-8k8-transition-speed: 0.3s ease;
    }

    .page-www-8k8 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-www-8k8-dark-text-color);
      background-color: var(--page-www-8k8-light-background);
    }

    .page-www-8k8__section {
      padding: var(--page-www-8k8-padding-section);
      text-align: center;
    }

    .page-www-8k8__section--dark {
      background-color: var(--page-www-8k8-dark-background);
      color: var(--page-www-8k8-text-color);
    }

    .page-www-8k8__hero-section {
      background-color: var(--page-www-8k8-dark-background);
      color: var(--page-www-8k8-text-color);
      padding: 10px 20px var(--page-www-8k8-padding-section); /* 10px top for initial spacing, assuming body handles header offset */
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 70vh;
      text-align: center;
    }

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

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

    .page-www-8k8__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: var(--page-www-8k8-primary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      word-wrap: break-word; /* Ensure long titles break */
    }

    .page-www-8k8__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: var(--page-www-8k8-text-color);
      word-wrap: break-word;
    }

    .page-www-8k8__cta-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .page-www-8k8__button {
      background-color: var(--page-www-8k8-primary-color);
      color: var(--page-www-8k8-text-color);
      padding: 15px 30px;
      border: none;
      border-radius: var(--page-www-8k8-border-radius);
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color var(--page-www-8k8-transition-speed), transform var(--page-www-8k8-transition-speed);
      text-decoration: none; /* Ensure no underline for button-like elements */
      display: inline-block; /* Allow padding and sizing */
      box-sizing: border-box;
      word-wrap: break-word;
    }

    .page-www-8k8__button:hover {
      background-color: #c62828;
      transform: translateY(-2px);
    }

    .page-www-8k8__button--secondary {
      background-color: var(--page-www-8k8-secondary-color);
      color: var(--page-www-8k8-dark-text-color);
    }

    .page-www-8k8__button--secondary:hover {
      background-color: #ffc107;
    }

    .page-www-8k8__title {
      font-size: 2.5em;
      margin-bottom: 30px;
      color: var(--page-www-8k8-primary-color);
      word-wrap: break-word;
    }

    .page-www-8k8__subtitle {
      font-size: 1.2em;
      margin-bottom: 40px;
      color: var(--page-www-8k8-dark-text-color);
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      word-wrap: break-word;
    }
    
    .page-www-8k8__subtitle--dark {
        color: var(--page-www-8k8-text-color);
    }

    .page-www-8k8__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-www-8k8__card {
      background-color: #ffffff;
      border-radius: var(--page-www-8k8-border-radius);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      padding: var(--page-www-8k8-padding-item);
      text-align: center;
      transition: transform var(--page-www-8k8-transition-speed);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
      box-sizing: border-box;
    }
    
    .page-www-8k8__card--dark {
        background-color: #2a2a2a;
        color: var(--page-www-8k8-text-color);
    }

    .page-www-8k8__card:hover {
      transform: translateY(-5px);
    }

    .page-www-8k8__card-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-bottom: 20px;
    }

    .page-www-8k8__card-image {
      max-width: 100%;
      height: auto;
      border-radius: var(--page-www-8k8-border-radius);
      object-fit: cover;
    }

    .page-www-8k8__card-title {
      font-size: 1.5em;
      margin-bottom: 15px;
      color: var(--page-www-8k8-primary-color);
      word-wrap: break-word;
    }
    
    .page-www-8k8__card-title--dark {
        color: var(--page-www-8k8-secondary-color);
    }

    .page-www-8k8__card-description {
      font-size: 1em;
      color: var(--page-www-8k8-dark-text-color);
      margin-bottom: 20px;
      flex-grow: 1; /* Allows description to take up available space */
      word-wrap: break-word;
    }
    
    .page-www-8k8__card-description--dark {
        color: var(--page-www-8k8-text-color);
    }

    .page-www-8k8__list {
      list-style: none;
      padding: 0;
      margin: 0 auto;
      max-width: 800px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .page-www-8k8__list-item {
      background-color: #ffffff;
      padding: 15px 25px;
      border-radius: var(--page-www-8k8-border-radius);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      font-size: 1.1em;
      font-weight: bold;
      color: var(--page-www-8k8-dark-text-color);
      box-sizing: border-box;
      flex: 1 1 auto; /* Allow items to grow and shrink */
      min-width: 200px; /* Minimum width for list items */
      max-width: 300px; /* Max width to prevent items from becoming too wide */
      word-wrap: break-word;
    }
    
    .page-www-8k8__list-item--dark {
        background-color: #2a2a2a;
        color: var(--page-www-8k8-text-color);
    }

    /* FAQ Section Styles */
    .page-www-8k8__faq-section {
      background-color: var(--page-www-8k8-light-background);
      padding: var(--page-www-8k8-padding-section);
      text-align: center;
    }

    .page-www-8k8__faq-container {
      max-width: 800px;
      margin: 0 auto;
      text-align: left;
    }

    .page-www-8k8__faq-item {
      background-color: #ffffff;
      border-radius: var(--page-www-8k8-border-radius);
      margin-bottom: 15px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      overflow: hidden;
    }

    .page-www-8k8__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: var(--page-www-8k8-primary-color);
      color: var(--page-www-8k8-text-color);
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color var(--page-www-8k8-transition-speed);
    }

    .page-www-8k8__faq-question h3 {
      margin: 0;
      font-size: 1em; /* Adjust to fit parent font size */
      pointer-events: none; /* Prevent h3 from blocking click event */
      word-wrap: break-word;
    }

    .page-www-8k8__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      transition: transform var(--page-www-8k8-transition-speed);
    }

    .page-www-8k8__faq-item.active .page-www-8k8__faq-toggle {
      transform: rotate(45deg); /* Plus sign rotates to form an 'x' or 'minus' */
    }

    .page-www-8k8__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      color: var(--page-www-8k8-dark-text-color);
      background-color: #fcfcfc;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      word-wrap: break-word;
    }

    .page-www-8k8__faq-item.active .page-www-8k8__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 25px !important;
      opacity: 1;
    }
    
    /* Sticky Register/Login Buttons */
    .page-www-8k8__sticky-buttons {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 15px;
        z-index: 1000;
        background-color: rgba(0, 0, 0, 0.7);
        padding: 10px 20px;
        border-radius: 50px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-www-8k8__sticky-button {
        background-color: var(--page-www-8k8-primary-color);
        color: var(--page-www-8k8-text-color);
        padding: 10px 20px;
        border: none;
        border-radius: 30px;
        font-size: 1em;
        font-weight: bold;
        cursor: pointer;
        transition: background-color var(--page-www-8k8-transition-speed);
        text-decoration: none;
        display: inline-block;
        box-sizing: border-box;
        word-wrap: break-word;
    }

    .page-www-8k8__sticky-button:hover {
        background-color: #c62828;
    }
    
    .page-www-8k8__sticky-button--login {
        background-color: var(--page-www-8k8-secondary-color);
        color: var(--page-www-8k8-dark-text-color);
    }

    .page-www-8k8__sticky-button--login:hover {
        background-color: #ffc107;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-www-8k8__hero-title {
        font-size: 3em;
      }
      .page-www-8k8__title {
        font-size: 2em;
      }
      .page-www-8k8__hero-subtitle {
        font-size: 1.3em;
      }
    }

    @media (max-width: 768px) {
      .page-www-8k8__section {
        padding: 40px 15px;
      }
      .page-www-8k8__hero-section {
        min-height: 60vh;
        padding-bottom: 40px;
      }
      .page-www-8k8__hero-title {
        font-size: 2.5em;
      }
      .page-www-8k8__hero-subtitle {
        font-size: 1.1em;
      }
      .page-www-8k8__cta-buttons {
        flex-direction: column;
        gap: 15px;
      }
      .page-www-8k8__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-www-8k8__title {
        font-size: 1.8em;
      }
      .page-www-8k8__subtitle {
        font-size: 1em;
      }
      .page-www-8k8__grid {
        grid-template-columns: 1fr;
      }
      .page-www-8k8__list {
        flex-direction: column;
        gap: 15px;
      }
      .page-www-8k8__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-www-8k8__card-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-www-8k8__card-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }

      .page-www-8k8__faq-question {
        padding: 15px 15px;
        font-size: 1.1em;
      }
      .page-www-8k8__faq-answer {
        padding: 0 15px;
      }
      .page-www-8k8__faq-item.active .page-www-8k8__faq-answer {
        padding: 15px 15px !important;
      }
      .page-www-8k8__sticky-buttons {
          bottom: 10px;
          gap: 10px;
          padding: 8px 15px;
      }
      .page-www-8k8__sticky-button {
          padding: 8px 15px;
          font-size: 0.9em;
      }
    }

    @media (max-width: 480px) {
      .page-www-8k8__hero-title {
        font-size: 2em;
      }
      .page-www-8k8__title {
        font-size: 1.6em;
      }
      .page-www-8k8__faq-question {
        font-size: 1em;
      }
    }
  