
    :root {
      --page-b52clubhome__primary-color: #007bff; /* Blue for buttons, links */
      --page-b52clubhome__secondary-color: #28a745; /* Green for success/highlights */
      --page-b52clubhome__text-color: #333;
      --page-b52clubhome__background-color: #f8f9fa;
      --page-b52clubhome__card-background: #ffffff;
      --page-b52clubhome__border-color: #e9ecef;
      --page-b52clubhome__shadow-color: rgba(0, 0, 0, 0.1);
      --page-b52clubhome__hover-color: #0056b3;
    }

    body {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-b52clubhome__text-color);
      background-color: var(--page-b52clubhome__background-color);
    }

    .page-b52clubhome {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-b52clubhome__section {
      background-color: var(--page-b52clubhome__card-background);
      margin-bottom: 30px;
      padding: 30px 20px;
      border-radius: 8px;
      box-shadow: 0 4px 12px var(--page-b52clubhome__shadow-color);
    }

    .page-b52clubhome__section-title {
      text-align: center;
      color: var(--page-b52clubhome__primary-color);
      margin-bottom: 30px;
      font-size: 2.2em;
      font-weight: bold;
    }

    .page-b52clubhome__section-subtitle {
      text-align: center;
      color: var(--page-b52clubhome__secondary-color);
      margin-top: -20px;
      margin-bottom: 30px;
      font-size: 1.2em;
    }

    .page-b52clubhome__text-center {
      text-align: center;
    }

    /* Hero Section */
    .page-b52clubhome__hero-section {
      position: relative;
      background-color: #1a2a4b; /* Dark background for contrast */
      color: #fff;
      padding: 10px 0 60px 0; /* Important: padding-top for fixed header */
      text-align: center;
      overflow: hidden;
      border-radius: 0 0 15px 15px;
      margin-bottom: 30px;
    }

    .page-b52clubhome__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin-bottom: 20px;
      border-radius: 8px;
    }

    .page-b52clubhome__hero-content {
      padding: 0 15px;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-b52clubhome__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      color: #ffd700; /* Gold for highlight */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

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

    .page-b52clubhome__cta-button {
      display: inline-block;
      background-color: var(--page-b52clubhome__secondary-color);
      color: #fff;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
    }

    .page-b52clubhome__cta-button:hover {
      background-color: var(--page-b52clubhome__hover-color);
      transform: translateY(-3px);
    }

    /* Floating Login Button */
    .page-b52clubhome__floating-login {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      animation: page-b52clubhome__pulse 2s infinite;
    }

    .page-b52clubhome__floating-login-button {
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #ffc107; /* Amber for attention */
      color: #333;
      padding: 12px 20px;
      border-radius: 30px;
      text-decoration: none;
      font-size: 1.1em;
      font-weight: bold;
      box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
      transition: background-color 0.3s ease;
    }

    .page-b52clubhome__floating-login-button:hover {
      background-color: #e0a800;
    }

    @keyframes page-b52clubhome__pulse {
      0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
      }
      70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(255, 193, 7, 0);
      }
      100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
      }
    }

    /* Grid for games and features */
    .page-b52clubhome__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 20px;
    }

    .page-b52clubhome__grid-item {
      background-color: var(--page-b52clubhome__card-background);
      border: 1px solid var(--page-b52clubhome__border-color);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px var(--page-b52clubhome__shadow-color);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .page-b52clubhome__grid-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px var(--page-b52clubhome__shadow-color);
    }

    .page-b52clubhome__grid-item-image {
      width: 100%;
      max-width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      border-bottom: 1px solid var(--page-b52clubhome__border-color);
    }

    .page-b52clubhome__grid-item-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-b52clubhome__grid-item-title {
      font-size: 1.5em;
      color: var(--page-b52clubhome__primary-color);
      margin-bottom: 10px;
    }

    .page-b52clubhome__grid-item-description {
      font-size: 0.95em;
      color: #555;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-b52clubhome__grid-item-button {
      display: inline-block;
      background-color: var(--page-b52clubhome__primary-color);
      color: #fff;
      padding: 10px 20px;
      border-radius: 25px;
      text-decoration: none;
      font-size: 1em;
      transition: background-color 0.3s ease;
      margin-top: 10px;
    }

    .page-b52clubhome__grid-item-button:hover {
      background-color: var(--page-b52clubhome__hover-color);
    }

    /* Game Categories specific styling */
    .page-b52clubhome__game-category-grid {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    /* FAQ Section */
    .page-b52clubhome__faq-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-b52clubhome__faq-item {
      background-color: var(--page-b52clubhome__card-background);
      border: 1px solid var(--page-b52clubhome__border-color);
      margin-bottom: 10px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px var(--page-b52clubhome__shadow-color);
    }

    .page-b52clubhome__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #f1f1f1;
      font-weight: bold;
      color: var(--page-b52clubhome__primary-color);
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-b52clubhome__faq-question:hover {
      background-color: #e2e6ea;
    }

    .page-b52clubhome__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      pointer-events: none; /* Prevent h3 from blocking click event */
      flex-grow: 1;
      text-align: left;
    }

    .page-b52clubhome__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
      width: 20px; /* Fixed width for consistent alignment */
      text-align: center;
    }

    .page-b52clubhome__faq-item.active .page-b52clubhome__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' or similar effect */
    }

    .page-b52clubhome__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: var(--page-b52clubhome__text-color);
    }

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

    /* General lists */
    .page-b52clubhome__info-list {
      list-style: disc;
      padding-left: 20px;
      margin-bottom: 20px;
    }

    .page-b52clubhome__info-list li {
      margin-bottom: 10px;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-b52clubhome__hero-section {
        padding-top: 10px; /* Consistent with desktop */
        padding-bottom: 40px;
      }

      .page-b52clubhome__hero-title {
        font-size: 2.2em;
      }

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

      .page-b52clubhome__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

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

      .page-b52clubhome__grid {
        grid-template-columns: 1fr; /* Single column on mobile */
      }

      .page-b52clubhome__grid-item {
        margin: 0 auto;
        width: 100%;
        max-width: 350px; /* Optional: constrain width for better readability */
      }

      .page-b52clubhome__grid-item-image {
        height: 180px;
      }

      /* Floating button adjustments */
      .page-b52clubhome__floating-login {
        bottom: 15px;
        right: 15px;
      }
      .page-b52clubhome__floating-login-button {
        padding: 10px 18px;
        font-size: 1em;
      }

      /* List item specific mobile styles */
      .page-b52clubhome__info-list,
      .page-b52clubhome__faq-list {
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-b52clubhome__info-list li,
      .page-b52clubhome__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-b52clubhome__faq-question {
        padding: 12px 15px;
      }

      .page-b52clubhome__faq-question h3 {
        font-size: 1em;
      }

      .page-b52clubhome__faq-answer {
        padding: 15px 15px !important;
      }

      .page-b52clubhome__section {
        padding: 20px 15px;
      }
    }

    @media (max-width: 480px) {
      .page-b52clubhome__hero-title {
        font-size: 1.8em;
      }
      .page-b52clubhome__hero-description {
        font-size: 0.9em;
      }
      .page-b52clubhome__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
      }
      .page-b52clubhome__section-title {
        font-size: 1.5em;
      }
    }
  