
    /* CSS Styles for page-b52clubs */
    .page-b52clubs {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f4f7f6;
      padding: 20px 0;
    }

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

    .page-b52clubs-hero {
      background: linear-gradient(135deg, #0a192f, #1f2f47);
      color: #fff;
      padding: 60px 20px;
      text-align: center;
      border-radius: 10px;
      margin-bottom: 40px;
      position: relative;
      overflow: hidden;
    }

    .page-b52clubs-hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('[GALLERY:background:abstract,geometric,dark_pattern]') no-repeat center center/cover;
      opacity: 0.1;
      z-index: 0;
    }

    .page-b52clubs-hero-content {
      position: relative;
      z-index: 1;
    }

    .page-b52clubs-hero h1 {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: #fddb00; /* Yellow for prominence */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-b52clubs-hero p {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: #e0e0e0;
    }

    .page-b52clubs-btn {
      display: inline-block;
      background-color: #fddb00; /* Yellow for CTA */
      color: #0a192f;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-b52clubs-btn:hover {
      background-color: #ffed5c;
      transform: translateY(-3px);
    }

    .page-b52clubs-section {
      background-color: #ffffff;
      padding: 40px;
      margin-bottom: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }

    .page-b52clubs-section h2 {
      font-size: 2em;
      color: #0a192f;
      margin-bottom: 25px;
      border-bottom: 3px solid #fddb00;
      padding-bottom: 10px;
      display: inline-block;
    }

    .page-b52clubs-section h3 {
      font-size: 1.5em;
      color: #1f2f47;
      margin-top: 30px;
      margin-bottom: 15px;
    }

    .page-b52clubs-section p {
      margin-bottom: 15px;
      color: #555;
    }

    .page-b52clubs-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-b52clubs-list li {
      background-color: #e8f0f3;
      padding: 15px 20px;
      margin-bottom: 10px;
      border-left: 5px solid #0a192f;
      border-radius: 5px;
      display: flex;
      align-items: center;
      gap: 15px;
      font-size: 1.1em;
      color: #333;
    }

    .page-b52clubs-list li::before {
      content: '✓';
      color: #fddb00;
      font-weight: bold;
      font-size: 1.2em;
    }

    .page-b52clubs-steps {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      margin-top: 30px;
    }

    .page-b52clubs-step-card {
      background-color: #f9f9f9;
      border: 1px solid #eee;
      border-radius: 8px;
      padding: 25px;
      text-align: center;
      flex: 1 1 calc(33% - 40px); /* 3 cards per row on desktop */
      min-width: 280px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-b52clubs-step-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .page-b52clubs-step-card .icon {
      font-size: 3em;
      color: #0a192f;
      margin-bottom: 15px;
    }

    .page-b52clubs-step-card h4 {
      font-size: 1.3em;
      color: #1f2f47;
      margin-bottom: 10px;
    }

    .page-b52clubs-step-card p {
      font-size: 0.95em;
      color: #666;
    }

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

    .page-b52clubs-game-card {
      background-color: #e8f0f3;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-b52clubs-game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .page-b52clubs-game-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
    }

    .page-b52clubs-game-card-content {
      padding: 20px;
    }

    .page-b52clubs-game-card h4 {
      font-size: 1.2em;
      color: #0a192f;
      margin-bottom: 10px;
    }

    .page-b52clubs-game-card p {
      font-size: 0.9em;
      color: #555;
      margin-bottom: 15px;
    }

    .page-b52clubs-game-card .page-b52clubs-btn-small {
      display: block;
      background-color: #0a192f;
      color: #fddb00;
      padding: 10px 15px;
      border-radius: 5px;
      text-align: center;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-b52clubs-game-card .page-b52clubs-btn-small:hover {
      background-color: #1f2f47;
    }

    .page-b52clubs-faq-item {
      margin-bottom: 20px;
      border: 1px solid #eee;
      border-radius: 8px;
      overflow: hidden;
    }

    .page-b52clubs-faq-question {
      background-color: #0a192f;
      color: #fddb00;
      padding: 18px 25px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

    .page-b52clubs-faq-question:hover {
      background-color: #1f2f47;
    }

    .page-b52clubs-faq-question .arrow {
      font-size: 1.2em;
      transition: transform 0.3s ease;
    }

    .page-b52clubs-faq-answer {
      background-color: #f9f9f9;
      padding: 0 25px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease-out, padding 0.5s ease-out;
      color: #555;
    }

    .page-b52clubs-faq-answer p {
      padding: 15px 0;
      margin: 0;
    }

    .page-b52clubs-faq-item.active .page-b52clubs-faq-answer {
      max-height: 200px; /* Adjust as needed */
      padding: 15px 25px;
    }

    .page-b52clubs-faq-item.active .page-b52clubs-faq-question .arrow {
      transform: rotate(180deg);
    }

    .page-b52clubs-sticky-cta {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: #ff0000; /* Red for urgency */
      color: #fff;
      padding: 15px 20px;
      text-align: center;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
    }

    .page-b52clubs-sticky-cta p {
      margin: 0;
      font-size: 1.1em;
      font-weight: bold;
    }

    .page-b52clubs-sticky-cta .page-b52clubs-btn {
      background-color: #fddb00;
      color: #ff0000;
      padding: 10px 20px;
      font-size: 1em;
      box-shadow: none;
    }

    .page-b52clubs-sticky-cta .page-b52clubs-btn:hover {
      background-color: #ffed5c;
      transform: translateY(-2px);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-b52clubs-hero {
        padding: 40px 15px;
      }
      .page-b52clubs-hero h1 {
        font-size: 2em;
      }
      .page-b52clubs-hero p {
        font-size: 1em;
      }
      .page-b52clubs-btn {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-b52clubs-section {
        padding: 25px;
      }
      .page-b52clubs-section h2 {
        font-size: 1.6em;
      }
      .page-b52clubs-section h3 {
        font-size: 1.3em;
      }
      .page-b52clubs-step-card {
        flex: 1 1 100%;
      }
      .page-b52clubs-game-grid {
        grid-template-columns: 1fr;
      }
      .page-b52clubs-sticky-cta {
        flex-direction: column;
        padding: 10px;
        gap: 10px;
      }
      .page-b52clubs-sticky-cta p {
        font-size: 0.9em;
      }
      .page-b52clubs-sticky-cta .page-b52clubs-btn {
        padding: 8px 15px;
        font-size: 0.9em;
      }
    }
  