.page-le-slick-and-kuya-barz {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-top: 10px; /* Small top padding, assuming body already has header offset */
    }

    @media (max-width: 768px) {
      .page-le-slick-and-kuya-barz {
        padding-top: var(--header-offset, 122px); /* Fallback for body padding, if not handled by shared.css */
      }
    }

    .page-le-slick-and-kuya-barz__section-title {
      font-size: 2.5em;
      color: #1a1a1a;
      text-align: center;
      margin-bottom: 20px;
      padding-top: 40px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .page-le-slick-and-kuya-barz__section-subtitle {
      font-size: 1.2em;
      color: #555;
      text-align: center;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    @media (max-width: 768px) {
      .page-le-slick-and-kuya-barz__section-title {
        font-size: 1.8em;
        padding-top: 30px;
      }
      .page-le-slick-and-kuya-barz__section-subtitle {
        font-size: 1em;
        margin-bottom: 30px;
        padding: 0 15px;
      }
    }

    /* Hero Section */
    .page-le-slick-and-kuya-barz__hero-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 60px 20px;
      background: linear-gradient(135deg, #007bff, #0056b3);
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    .page-le-slick-and-kuya-barz__hero-content {
      max-width: 900px;
      z-index: 1;
      position: relative;
    }

    .page-le-slick-and-kuya-barz__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      line-height: 1.2;
      font-weight: bold;
      color: #fff;
    }

    .page-le-slick-and-kuya-barz__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      color: #e0e0e0;
    }

    .page-le-slick-and-kuya-barz__hero-actions {
      display: flex;
      gap: 20px;
      justify-content: center;
    }

    .page-le-slick-and-kuya-barz__btn {
      display: inline-block;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      white-space: nowrap;
    }

    .page-le-slick-and-kuya-barz__btn--primary {
      background-color: #ffc107;
      color: #333;
      border: 2px solid #ffc107;
    }

    .page-le-slick-and-kuya-barz__btn--primary:hover {
      background-color: #e0a800;
      border-color: #e0a800;
      transform: translateY(-2px);
    }

    .page-le-slick-and-kuya-barz__btn--secondary {
      background-color: transparent;
      color: #fff;
      border: 2px solid #fff;
    }

    .page-le-slick-and-kuya-barz__btn--secondary:hover {
      background-color: rgba(255, 255, 255, 0.2);
      transform: translateY(-2px);
    }

    .page-le-slick-and-kuya-barz__btn--small {
      padding: 10px 20px;
      font-size: 0.9em;
      border-radius: 30px;
      background-color: #007bff;
      color: #fff;
      border: none;
    }

    .page-le-slick-and-kuya-barz__btn--small:hover {
      background-color: #0056b3;
    }

    .page-le-slick-and-kuya-barz__hero-image-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0.2;
      overflow: hidden;
    }

    .page-le-slick-and-kuya-barz__hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.7);
      max-width: 100%; /* Important for responsiveness */
    }

    @media (max-width: 768px) {
      .page-le-slick-and-kuya-barz__hero-section {
        padding: 40px 15px;
      }
      .page-le-slick-and-kuya-barz__hero-title {
        font-size: 2.2em;
      }
      .page-le-slick-and-kuya-barz__hero-description {
        font-size: 1em;
      }
      .page-le-slick-and-kuya-barz__hero-actions {
        flex-direction: column;
        gap: 15px;
      }
      .page-le-slick-and-kuya-barz__btn {
        width: 100%;
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
      }
    }

    /* About Section */
    .page-le-slick-and-kuya-barz__about-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-le-slick-and-kuya-barz__about-content {
      display: flex;
      align-items: center;
      gap: 40px;
    }

    .page-le-slick-and-kuya-barz__about-text {
      flex: 1;
    }

    .page-le-slick-and-kuya-barz__about-text p {
      margin-bottom: 15px;
      font-size: 1.1em;
      color: #444;
    }

    .page-le-slick-and-kuya-barz__about-image-wrapper {
      flex: 1;
      max-width: 50%;
      overflow: hidden;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .page-le-slick-and-kuya-barz__about-image {
      width: 100%;
      height: auto;
      display: block;
      max-width: 100%; /* Important for responsiveness */
    }

    @media (max-width: 768px) {
      .page-le-slick-and-kuya-barz__about-section {
        padding: 40px 15px;
      }
      .page-le-slick-and-kuya-barz__about-content {
        flex-direction: column;
        gap: 20px;
      }
      .page-le-slick-and-kuya-barz__about-image-wrapper {
        max-width: 100%;
      }
      .page-le-slick-and-kuya-barz__about-text p {
        font-size: 1em;
      }
    }

    /* Games Section */
    .page-le-slick-and-kuya-barz__games-section {
      padding: 60px 20px;
      background-color: #f0f0f0;
    }

    .page-le-slick-and-kuya-barz__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto 50px auto;
    }

    .page-le-slick-and-kuya-barz__game-card {
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      padding-bottom: 20px;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-sizing: border-box; /* Crucial for mobile responsive list items */
    }

    .page-le-slick-and-kuya-barz__game-card:hover {
      transform: translateY(-5px);
    }

    .page-le-slick-and-kuya-barz__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      margin-bottom: 15px;
      max-width: 100%; /* Important for responsiveness */
    }

    .page-le-slick-and-kuya-barz__game-card-title {
      font-size: 1.5em;
      color: #1a1a1a;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-le-slick-and-kuya-barz__game-card-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 20px;
      padding: 0 15px;
      flex-grow: 1;
    }

    .page-le-slick-and-kuya-barz__game-providers {
      text-align: center;
      margin-top: 40px;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-le-slick-and-kuya-barz__game-providers-title {
      font-size: 1.3em;
      color: #333;
      margin-bottom: 20px;
    }

    .page-le-slick-and-kuya-barz__provider-logos {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .page-le-slick-and-kuya-barz__provider-logo {
      height: 50px; /* Specific height for logos, width auto */
      width: auto;
      object-fit: contain;
      filter: grayscale(80%);
      opacity: 0.7;
      transition: filter 0.3s ease, opacity 0.3s ease;
      max-width: 100%; /* Important for responsiveness */
    }

    .page-le-slick-and-kuya-barz__provider-logo:hover {
      filter: grayscale(0%);
      opacity: 1;
    }

    @media (max-width: 768px) {
      .page-le-slick-and-kuya-barz__games-section {
        padding: 40px 15px;
      }
      .page-le-slick-and-kuya-barz__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-le-slick-and-kuya-barz__game-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-le-slick-and-kuya-barz__game-card-image {
        height: 180px;
      }
      .page-le-slick-and-kuya-barz__provider-logos {
        padding: 0 10px;
      }
      .page-le-slick-and-kuya-barz__provider-logo {
        height: 40px;
      }
    }

    /* Promo Section */
    .page-le-slick-and-kuya-barz__promo-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-le-slick-and-kuya-barz__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .page-le-slick-and-kuya-barz__promo-card {
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      padding-bottom: 20px;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-sizing: border-box; /* Crucial for mobile responsive list items */
    }

    .page-le-slick-and-kuya-barz__promo-card:hover {
      transform: translateY(-5px);
    }

    .page-le-slick-and-kuya-barz__promo-card-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      margin-bottom: 15px;
      max-width: 100%; /* Important for responsiveness */
    }

    .page-le-slick-and-kuya-barz__promo-card-title {
      font-size: 1.6em;
      color: #1a1a1a;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-le-slick-and-kuya-barz__promo-card-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 20px;
      padding: 0 15px;
      flex-grow: 1;
    }

    @media (max-width: 768px) {
      .page-le-slick-and-kuya-barz__promo-section {
        padding: 40px 15px;
      }
      .page-le-slick-and-kuya-barz__promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-le-slick-and-kuya-barz__promo-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-le-slick-and-kuya-barz__promo-card-image {
        height: 180px;
      }
    }

    /* Payment Section */
    .page-le-slick-and-kuya-barz__payment-section {
      padding: 60px 20px;
      background-color: #e9ecef;
      text-align: center;
    }

    .page-le-slick-and-kuya-barz__payment-methods {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-bottom: 40px;
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-le-slick-and-kuya-barz__payment-logo {
      height: 60px; /* Specific height for payment logos */
      width: auto;
      object-fit: contain;
      filter: grayscale(50%);
      opacity: 0.8;
      transition: filter 0.3s ease, opacity 0.3s ease;
      max-width: 100%; /* Important for responsiveness */
    }

    .page-le-slick-and-kuya-barz__payment-logo:hover {
      filter: grayscale(0%);
      opacity: 1;
    }

    .page-le-slick-and-kuya-barz__payment-cta {
      margin-top: 20px;
    }

    @media (max-width: 768px) {
      .page-le-slick-and-kuya-barz__payment-section {
        padding: 40px 15px;
      }
      .page-le-slick-and-kuya-barz__payment-methods {
        gap: 15px;
      }
      .page-le-slick-and-kuya-barz__payment-logo {
        height: 45px;
      }
    }

    /* FAQ Section */
    .page-le-slick-and-kuya-barz__faq-section {
      padding: 60px 20px;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-le-slick-and-kuya-barz__faq-list {
      margin-top: 30px;
    }

    .page-le-slick-and-kuya-barz__faq-item {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .page-le-slick-and-kuya-barz__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #f9f9f9;
      border-bottom: 1px solid #eee;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-le-slick-and-kuya-barz__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-le-slick-and-kuya-barz__faq-question-text {
      font-size: 1.2em;
      color: #333;
      margin: 0;
      flex-grow: 1;
      text-align: left;
    }

    .page-le-slick-and-kuya-barz__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #007bff;
      margin-left: 15px;
      transition: transform 0.3s ease;
    }

    .page-le-slick-and-kuya-barz__faq-item.active .page-le-slick-and-kuya-barz__faq-toggle {
      transform: rotate(45deg); /* Changes + to x or a dash visually */
      color: #ffc107;
    }

    .page-le-slick-and-kuya-barz__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding for collapsed state */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

    .page-le-slick-and-kuya-barz__faq-item.active .page-le-slick-and-kuya-barz__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 25px !important; /* Padding for expanded state */
      opacity: 1;
    }

    .page-le-slick-and-kuya-barz__faq-answer p {
      margin: 0;
      color: #555;
      font-size: 1em;
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
      word-break: break-word !important;
    }

    @media (max-width: 768px) {
      .page-le-slick-and-kuya-barz__faq-section {
        padding: 40px 15px;
      }
      .page-le-slick-and-kuya-barz__faq-question {
        padding: 15px 20px;
      }
      .page-le-slick-and-kuya-barz__faq-question-text {
        font-size: 1.1em;
      }
      .page-le-slick-and-kuya-barz__faq-toggle {
        font-size: 1.3em;
      }
      .page-le-slick-and-kuya-barz__faq-answer {
        padding: 0 20px; /* Initial padding for collapsed state */
      }
      .page-le-slick-and-kuya-barz__faq-item.active .page-le-slick-and-kuya-barz__faq-answer {
        padding: 15px 20px !important; /* Padding for expanded state */
      }
    }

    /* Floating Buttons */
    .page-le-slick-and-kuya-barz__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-le-slick-and-kuya-barz__floating-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 120px;
      height: 45px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      color: #fff;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-le-slick-and-kuya-barz__floating-btn--register {
      background-color: #007bff;
    }

    .page-le-slick-and-kuya-barz__floating-btn--register:hover {
      background-color: #0056b3;
      transform: translateY(-3px);
    }

    .page-le-slick-and-kuya-barz__floating-btn--login {
      background-color: #28a745;
    }

    .page-le-slick-and-kuya-barz__floating-btn--login:hover {
      background-color: #218838;
      transform: translateY(-3px);
    }

    @media (max-width: 768px) {
      .page-le-slick-and-kuya-barz__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row;
        width: auto;
        left: 15px;
        justify-content: center;
      }
      .page-le-slick-and-kuya-barz__floating-btn {
        width: 100px;
        height: 40px;
        font-size: 0.9em;
      }
    }