
    :root {
      --page-top-lo-primary-color: #e0b000; /* Gold/Yellow for gambling theme */
      --page-top-lo-secondary-color: #333;
      --page-top-lo-background-dark: #1a1a1a;
      --page-top-lo-background-light: #f0f0f0;
      --page-top-lo-text-light: #f0f0f0;
      --page-top-lo-text-dark: #333;
      --page-top-lo-border-color: #444;
      --page-top-lo-button-bg: var(--page-top-lo-primary-color);
      --page-top-lo-button-text: var(--page-top-lo-text-dark);
      --page-top-lo-padding-section: 40px 20px;
      --page-top-lo-border-radius: 8px;
    }

    .page-top-lo {
      font-family: 'Arial', sans-serif;
      color: var(--page-top-lo-text-light);
      background-color: var(--page-top-lo-background-dark);
      line-height: 1.6;
      overflow-x: hidden; /* Prevent horizontal scroll due to padding */
    }

    .page-top-lo__hero-section {
      text-align: center;
      padding: 10px 20px 60px; /* Small top padding, larger bottom */
      background: linear-gradient(135deg, var(--page-top-lo-background-dark), #000);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 400px;
    }

    .page-top-lo__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
    }

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

    .page-top-lo__hero-title {
      font-size: 2.8em;
      color: var(--page-top-lo-primary-color);
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      font-weight: bold;
    }

    .page-top-lo__hero-subtitle {
      font-size: 1.3em;
      color: var(--page-top-lo-text-light);
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-top-lo__button-group {
      display: flex;
      gap: 20px;
      justify-content: center;
      margin-top: 30px;
    }

    .page-top-lo__button {
      background-color: var(--page-top-lo-button-bg);
      color: var(--page-top-lo-button-text);
      padding: 12px 25px;
      border: none;
      border-radius: var(--page-top-lo-border-radius);
      font-size: 1.1em;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      font-weight: bold;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-decoration: none; /* Ensure no underline for button-like text */
      display: inline-block; /* For proper padding and width */
    }

    .page-top-lo__button:hover {
      background-color: #ffc107; /* Slightly brighter yellow */
      transform: translateY(-2px);
    }

    .page-top-lo__section {
      padding: var(--page-top-lo-padding-section);
      max-width: 1200px;
      margin: 0 auto;
      background-color: var(--page-top-lo-background-dark);
      border-bottom: 1px solid var(--page-top-lo-border-color);
    }

    .page-top-lo__section-light {
      background-color: #2a2a2a;
      border-bottom: 1px solid var(--page-top-lo-border-color);
    }

    .page-top-lo__section-title {
      font-size: 2.2em;
      color: var(--page-top-lo-primary-color);
      text-align: center;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-top-lo__section-subtitle {
      font-size: 1.6em;
      color: var(--page-top-lo-text-light);
      text-align: center;
      margin-bottom: 20px;
    }

    .page-top-lo__text-content {
      font-size: 1.1em;
      color: var(--page-top-lo-text-light);
      margin-bottom: 20px;
      text-align: justify;
    }

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

    .page-top-lo__card {
      background-color: #2a2a2a;
      padding: 25px;
      border-radius: var(--page-top-lo-border-radius);
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      height: 100%;
      box-sizing: border-box;
    }

    .page-top-lo__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
    }
    
    .page-top-lo__card-image-wrapper {
        width: 100%;
        max-width: 250px; /* Example max-width for smaller content images */
        height: auto;
        margin-bottom: 15px;
        overflow: hidden;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .page-top-lo__card-image {
        max-width: 100%;
        height: auto;
        border-radius: var(--page-top-lo-border-radius);
        object-fit: cover;
        min-width: 200px; /* Enforce min image size */
        min-height: 200px; /* Enforce min image size */
    }

    .page-top-lo__card-title {
      font-size: 1.4em;
      color: var(--page-top-lo-primary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-top-lo__card-description {
      font-size: 1em;
      color: var(--page-top-lo-text-light);
      flex-grow: 1; /* Allow description to take available space */
    }

    .page-top-lo__list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

    .page-top-lo__list-item {
      background-color: #2a2a2a;
      padding: 15px 20px;
      border-radius: var(--page-top-lo-border-radius);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      width: calc(33% - 20px); /* Three items per row */
      box-sizing: border-box;
      transition: background-color 0.3s ease;
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .page-top-lo__list-item:hover {
      background-color: #3a3a3a;
    }
    
    .page-top-lo__list-item-image-wrapper {
        width: 60px; /* Container size for list item image */
        height: 60px;
        flex-shrink: 0;
        overflow: hidden;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .page-top-lo__list-item-image {
        max-width: 100%;
        height: auto;
        border-radius: var(--page-top-lo-border-radius);
        object-fit: cover;
        min-width: 200px; /* Enforce min image size, actual display size depends on container */
        min-height: 200px; /* Enforce min image size */
    }


    .page-top-lo__list-item-text {
      font-size: 1.1em;
      color: var(--page-top-lo-text-light);
      font-weight: bold;
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word;
      word-break: break-word;
    }

    /* FAQ Section */
    .page-top-lo__faq-section {
      padding: var(--page-top-lo-padding-section);
      max-width: 900px;
      margin: 0 auto;
      background-color: #2a2a2a;
      border-bottom: 1px solid var(--page-top-lo-border-color);
    }

    .page-top-lo__faq-item {
      margin-bottom: 10px;
      border: 1px solid var(--page-top-lo-border-color);
      border-radius: var(--page-top-lo-border-radius);
      overflow: hidden;
      background-color: var(--page-top-lo-background-dark);
    }

    .page-top-lo__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #333;
      color: var(--page-top-lo-primary-color);
      cursor: pointer;
      font-size: 1.2em;
      font-weight: bold;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-top-lo__faq-question:hover {
      background-color: #444;
    }

    .page-top-lo__faq-question h3 {
      margin: 0;
      font-size: 1em; /* Ensure h3 font size matches parent */
      color: inherit; /* Inherit color from parent */
      pointer-events: none; /* Prevent h3 from blocking click event */
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
      flex-grow: 1; /* Allow h3 to take available space */
    }

    .page-top-lo__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle from blocking click event */
      transition: transform 0.3s ease;
      flex-shrink: 0; /* Prevent toggle icon from shrinking */
    }

    .page-top-lo__faq-item.active .page-top-lo__faq-toggle {
      transform: rotate(45deg); /* Rotate '+' to 'x' or similar, or just change to '-' */
    }
    
    .page-top-lo__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      color: var(--page-top-lo-text-light);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      font-size: 1em;
      text-align: justify;
    }

    .page-top-lo__faq-item.active .page-top-lo__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px !important;
      opacity: 1;
    }

    /* Floating Buttons */
    .page-top-lo__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-top-lo__floating-button {
      background-color: var(--page-top-lo-primary-color);
      color: var(--page-top-lo-text-dark);
      padding: 10px 20px;
      border-radius: 50px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      display: block; /* Ensure button takes full width of its container */
      width: 120px; /* Fixed width for consistency */
    }

    .page-top-lo__floating-button:hover {
      background-color: #ffc107;
      transform: translateY(-2px);
    }
    
    /* Ensure external links are styled */
    .page-top-lo a {
        color: var(--page-top-lo-primary-color);
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .page-top-lo a:hover {
        color: #ffc107;
        text-decoration: underline;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-top-lo__hero-title {
        font-size: 2em;
      }

      .page-top-lo__hero-subtitle {
        font-size: 1em;
      }

      .page-top-lo__button-group {
        flex-direction: column;
        gap: 15px;
      }

      .page-top-lo__button {
        width: 80%;
        margin: 0 auto;
      }

      .page-top-lo__section-title {
        font-size: 1.8em;
      }

      .page-top-lo__section-subtitle {
        font-size: 1.3em;
      }

      .page-top-lo__text-content {
        font-size: 0.95em;
      }

      .page-top-lo__grid {
        grid-template-columns: 1fr;
      }

      .page-top-lo__card {
        padding: 20px;
      }
      
      .page-top-lo__list {
        flex-direction: column; /* Stack list items vertically */
        gap: 15px;
      }

      .page-top-lo__list-item {
        width: 100% !important; /* Force full width */
        max-width: 100% !important; /* Force full width */
        box-sizing: border-box !important;
        padding: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        flex-direction: row; /* Keep icon and text in a row */
        align-items: center;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-top-lo__list-item-image-wrapper {
        flex-shrink: 0;
        width: 50px; /* Smaller container size for list item icon on mobile */
        height: 50px;
      }
      .page-top-lo__list-item-image {
        min-width: 50px; /* Still meet minimum size, but container is smaller */
        min-height: 50px;
      }

      .page-top-lo__faq-question {
        font-size: 1.1em;
        padding: 12px 15px;
      }

      .page-top-lo__faq-question h3 {
        font-size: 1.1em;
      }

      .page-top-lo__faq-answer {
        padding: 0 15px;
      }

      .page-top-lo__faq-item.active .page-top-lo__faq-answer {
        padding: 15px !important;
      }

      .page-top-lo__floating-buttons {
        right: 10px;
        bottom: 10px;
        gap: 8px;
      }

      .page-top-lo__floating-button {
        padding: 8px 15px;
        font-size: 0.9em;
        width: 100px;
      }
      
      /* Image responsiveness */
      .page-top-lo img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-top-lo__card-image-wrapper, .page-top-lo__list-item-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
      .page-top-lo__card-image, .page-top-lo__list-item-image {
        max-width: 100% !important;
        height: auto !important;
      }
    }

    @media (max-width: 480px) {
      .page-top-lo__hero-title {
        font-size: 1.8em;
      }
      .page-top-lo__section-title {
        font-size: 1.6em;
      }
      .page-top-lo__section-subtitle {
        font-size: 1.1em;
      }
    }
  