
    /* General Styling for 123 Club Game Page */
    .page-123-club-game {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0; /* Light text for dark background */
      background-color: #1a1a1a; /* Dark background */
      line-height: 1.6;
      overflow-x: hidden; /* Prevent horizontal scroll */
    }

    .page-123-club-game__section-title {
      font-size: 2.2rem;
      color: #ffcc00; /* Accent color */
      text-align: center;
      margin-bottom: 1.5rem;
      padding: 0 15px;
      word-wrap: break-word;
    }

    .page-123-club-game__section-description {
      font-size: 1rem;
      text-align: center;
      max-width: 800px;
      margin: 0 auto 2rem auto;
      padding: 0 15px;
      color: #d0d0d0;
      word-wrap: break-word;
    }

    /* Hero Section */
    .page-123-club-game__hero-section {
      position: relative;
      width: 100%;
      padding-top: 10px; /* Small offset from header, assuming body has main offset */
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 500px; /* Minimum height for hero */
      overflow: hidden;
    }

    .page-123-club-game__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      filter: brightness(0.6); /* Slightly darken image for text readability */
      max-width: 100%; /* Ensure image responsiveness */
    }

    .page-123-club-game__hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 2rem 15px;
      max-width: 900px;
    }

    .page-123-club-game__hero-title {
      font-size: 2.8rem;
      color: #ffcc00;
      margin-bottom: 1rem;
      line-height: 1.2;
      word-wrap: break-word;
    }

    .page-123-club-game__hero-description {
      font-size: 1.1rem;
      color: #e0e0e0;
      margin-bottom: 2rem;
      word-wrap: break-word;
    }

    .page-123-club-game__hero-buttons {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    .page-123-club-game__button {
      display: inline-block;
      padding: 12px 25px;
      border-radius: 8px;
      font-size: 1rem;
      font-weight: bold;
      text-decoration: none;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
      white-space: nowrap;
      box-sizing: border-box;
    }

    .page-123-club-game__button--primary {
      background-color: #ffcc00;
      color: #1a1a1a;
      border: 2px solid #ffcc00;
    }

    .page-123-club-game__button--primary:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    .page-123-club-game__button--secondary {
      background-color: transparent;
      color: #ffcc00;
      border: 2px solid #ffcc00;
    }

    .page-123-club-game__button--secondary:hover {
      background-color: rgba(255, 204, 0, 0.1);
      transform: translateY(-2px);
    }

    /* Game Categories Section */
    .page-123-club-game__game-categories-section {
      padding: 4rem 20px;
      background-color: #1f1f1f;
    }

    .page-123-club-game__categories-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-123-club-game__category-card {
      background-color: #2a2a2a;
      border-radius: 12px;
      overflow: hidden;
      text-align: center;
      padding-bottom: 1.5rem;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-123-club-game__category-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-123-club-game__category-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      margin-bottom: 1rem;
      max-width: 100%; /* Ensure image responsiveness */
    }

    .page-123-club-game__category-title {
      font-size: 1.5rem;
      color: #ffcc00;
      margin-bottom: 0.5rem;
      padding: 0 15px;
      word-wrap: break-word;
    }

    .page-123-club-game__category-text {
      font-size: 0.95rem;
      color: #d0d0d0;
      padding: 0 15px;
      word-wrap: break-word;
    }

    /* About Section */
    .page-123-club-game__about-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 4rem 20px;
      background-color: #1a1a1a;
      gap: 2rem;
    }

    .page-123-club-game__about-content {
      max-width: 800px;
      text-align: center;
    }

    .page-123-club-game__about-image {
      width: 100%;
      max-width: 600px;
      height: auto;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      max-width: 100%; /* Ensure image responsiveness */
    }

    .page-123-club-game__button-wrapper {
      margin-top: 2rem;
    }

    /* Features Section */
    .page-123-club-game__features-section {
      padding: 4rem 20px;
      background-color: #1f1f1f;
    }

    .page-123-club-game__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-123-club-game__feature-item {
      background-color: #2a2a2a;
      border-radius: 12px;
      padding: 2rem;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
    }

    .page-123-club-game__feature-icon {
      width: 120px;
      height: 120px;
      object-fit: contain;
      margin-bottom: 1rem;
      max-width: 100%; /* Ensure image responsiveness */
    }

    .page-123-club-game__feature-title {
      font-size: 1.4rem;
      color: #ffcc00;
      margin-bottom: 0.8rem;
      word-wrap: break-word;
    }

    .page-123-club-game__feature-text {
      font-size: 0.95rem;
      color: #d0d0d0;
      word-wrap: break-word;
    }

    /* Payment & Providers Section */
    .page-123-club-game__payment-providers-section {
      padding: 4rem 20px;
      background-color: #1a1a1a;
    }

    .page-123-club-game__subsection {
      margin-bottom: 3rem;
    }

    .page-123-club-game__subsection-title {
      font-size: 1.8rem;
      color: #ffcc00;
      text-align: center;
      margin-bottom: 2rem;
      padding: 0 15px;
      word-wrap: break-word;
    }

    .page-123-club-game__logos-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      max-width: 1000px;
      margin: 0 auto;
      justify-items: center;
      align-items: center;
    }

    .page-123-club-game__logo-link {
      display: block;
      background-color: #2a2a2a;
      border-radius: 8px;
      padding: 1rem;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-123-club-game__logo-link:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    }

    .page-123-club-game__logo-image {
      width: 100%;
      height: 60px; /* Fixed height for logos */
      object-fit: contain;
      max-width: 100%; /* Ensure image responsiveness */
    }

    /* FAQ Section */
    .page-123-club-game__faq-section {
      padding: 4rem 20px;
      background-color: #1f1f1f;
    }

    .page-123-club-game__faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-123-club-game__faq-item {
      background-color: #2a2a2a;
      border-radius: 8px;
      margin-bottom: 1rem;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      overflow: hidden; /* Important for max-height transition */
    }

    .page-123-club-game__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #333;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-123-club-game__faq-question:hover {
      background-color: #444;
    }

    .page-123-club-game__faq-title {
      font-size: 1.1rem;
      color: #ffcc00;
      margin: 0;
      pointer-events: none; /* Prevents text from blocking click event on parent */
      word-wrap: break-word;
    }

    .page-123-club-game__faq-toggle {
      font-size: 1.5rem;
      font-weight: bold;
      color: #ffcc00;
      margin-left: 15px;
      pointer-events: none; /* Prevents icon from blocking click event on parent */
      transition: transform 0.3s ease;
    }

    .page-123-club-game__faq-item.active .page-123-club-game__faq-toggle {
      transform: rotate(45deg); /* Change + to X (or rotate to -) */
    }

    .page-123-club-game__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      box-sizing: border-box;
    }

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

    .page-123-club-game__faq-answer p {
      font-size: 0.95rem;
      color: #d0d0d0;
      margin: 0;
      word-wrap: break-word;
    }

    /* CTA Section */
    .page-123-club-game__cta-section {
      padding: 4rem 20px;
      background-color: #1a1a1a;
      text-align: center;
    }

    /* Floating Register/Login Buttons */
    .page-123-club-game__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      padding: 0 15px;
      width: 100%;
      max-width: 350px;
      box-sizing: border-box;
    }

    .page-123-club-game__floating-button {
      flex: 1;
      padding: 12px 10px;
      border-radius: 25px;
      font-size: 1rem;
      font-weight: bold;
      text-align: center;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      white-space: nowrap;
      box-sizing: border-box;
    }

    .page-123-club-game__floating-button--register {
      background-color: #007bff; /* Blue for register */
      color: #fff;
      border: 2px solid #007bff;
    }

    .page-123-club-game__floating-button--register:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    .page-123-club-game__floating-button--login {
      background-color: #28a745; /* Green for login */
      color: #fff;
      border: 2px solid #28a745;
    }

    .page-123-club-game__floating-button--login:hover {
      background-color: #1e7e34;
      transform: translateY(-2px);
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-123-club-game__hero-title {
        font-size: 2.2rem;
      }

      .page-123-club-game__hero-description {
        font-size: 1rem;
      }

      .page-123-club-game__section-title {
        font-size: 1.8rem;
      }

      .page-123-club-game__section-description {
        font-size: 0.9rem;
      }

      .page-123-club-game__category-card,
      .page-123-club-game__feature-item,
      .page-123-club-game__logo-link {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      
      .page-123-club-game__categories-grid,
      .page-123-club-game__features-grid,
      .page-123-club-game__logos-grid {
        grid-template-columns: 1fr;
        padding: 0 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-123-club-game__hero-buttons {
        flex-direction: column;
        gap: 1rem;
      }

      .page-123-club-game__button {
        width: 100%;
        max-width: 250px;
      }

      .page-123-club-game__about-section {
        flex-direction: column;
      }

      .page-123-club-game__about-content {
        order: 2;
      }

      .page-123-club-game__about-image {
        order: 1;
        margin-bottom: 2rem;
      }

      .page-123-club-game__logo-image {
        height: 50px;
      }

      .page-123-club-game__faq-question,
      .page-123-club-game__faq-answer {
        padding-left: 15px !important;
        padding-right: 15px !important;
      }

      .page-123-club-game__faq-title {
        font-size: 1rem;
      }

      .page-123-club-game__floating-buttons {
        width: calc(100% - 30px);
        max-width: none;
      }

      /* Ensure all images are responsive */
      .page-123-club-game img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      /* Text wrapping for lists and cards */
      .page-123-club-game__category-text,
      .page-123-club-game__feature-text,
      .page-123-club-game__faq-answer p,
      .page-123-club-game__category-title,
      .page-123-club-game__feature-title,
      .page-123-club-game__faq-title,
      .page-123-club-game__section-title,
      .page-123-club-game__section-description,
      .page-123-club-game__subsection-title,
      .page-123-club-game__hero-title,
      .page-123-club-game__hero-description {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-123-club-game__hero-title {
        font-size: 2rem;
      }
      .page-123-club-game__section-title {
        font-size: 1.6rem;
      }
      .page-123-club-game__floating-buttons {
        flex-direction: column;
        gap: 10px;
        bottom: 15px;
      }
      .page-123-club-game__floating-button {
        padding: 10px;
      }
    }
  