
    :root {
      --page-123go-com-primary-color: #e44d26; /* A vibrant orange-red, common in betting sites */
      --page-123go-com-secondary-color: #ff9900; /* A brighter orange for accents */
      --page-123go-com-dark-background: #1a1a1a;
      --page-123go-com-light-text: #ffffff;
      --page-123go-com-gray-text: #cccccc;
      --page-123go-com-card-background: #2a2a2a;
      --page-123go-com-border-color: #3a3a3a;
      --page-123go-com-button-hover: #ff6600;
    }

    /* General page styling, scoped to .page-123go-com */
    .page-123go-com {
      font-family: 'Arial', sans-serif;
      color: var(--page-123go-com-light-text);
      background-color: var(--page-123go-com-dark-background);
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-123go-com__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-123go-com__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-123go-com__section--dark {
      background-color: #121212;
    }

    .page-123go-com__section-title {
      font-size: 2.5em;
      color: var(--page-123go-com-primary-color);
      margin-bottom: 30px;
      font-weight: bold;
      text-transform: uppercase;
    }

    .page-123go-com__section-subtitle {
      font-size: 1.2em;
      color: var(--page-123go-com-gray-text);
      margin-bottom: 40px;
    }

    /* Hero Section */
    .page-123go-com__hero-section {
      position: relative;
      width: 100%;
      height: 60vh; /* Responsive height */
      min-height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      padding-top: 10px; /* Small top padding, assuming body has padding-top */
    }

    .page-123go-com__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      filter: brightness(0.6); /* Darken background image for text readability */
    }

    .page-123go-com__hero-content {
      position: relative;
      z-index: 2;
      color: var(--page-123go-com-light-text);
      padding: 20px;
      max-width: 800px;
    }

    .page-123go-com__hero-title {
      font-size: 3.5em;
      margin-bottom: 10px;
      color: var(--page-123go-com-secondary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-123go-com__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: var(--page-123go-com-light-text);
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    .page-123go-com__cta-button {
      display: inline-block;
      background-color: var(--page-123go-com-primary-color);
      color: var(--page-123go-com-light-text);
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none; /* Ensure button styling */
      cursor: pointer; /* Ensure button styling */
    }

    .page-123go-com__cta-button:hover {
      background-color: var(--page-123go-com-button-hover);
    }

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

    .page-123go-com__floating-button {
      background-color: var(--page-123go-com-primary-color);
      color: var(--page-123go-com-light-text);
      padding: 12px 20px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      white-space: nowrap;
      border: none;
      cursor: pointer;
    }

    .page-123go-com__floating-button:hover {
      background-color: var(--page-123go-com-button-hover);
      transform: translateY(-2px);
    }

    /* Game Categories Section */
    .page-123go-com__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-123go-com__game-card {
      background-color: var(--page-123go-com-card-background);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-123go-com__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    .page-123go-com__game-card-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for images */
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-123go-com__game-card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .page-123go-com__game-card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-123go-com__game-card-title {
      font-size: 1.5em;
      color: var(--page-123go-com-secondary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-123go-com__game-card-description {
      font-size: 0.95em;
      color: var(--page-123go-com-gray-text);
      margin-bottom: 15px;
      flex-grow: 1;
    }
    
    .page-123go-com__game-card-button {
      display: inline-block;
      background-color: var(--page-123go-com-primary-color);
      color: var(--page-123go-com-light-text);
      padding: 10px 15px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 0.9em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      width: fit-content;
    }

    .page-123go-com__game-card-button:hover {
      background-color: var(--page-123go-com-button-hover);
    }

    /* Promotions Section */
    .page-123go-com__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-123go-com__promotion-card {
      background-color: var(--page-123go-com-card-background);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease;
      text-align: left;
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .page-123go-com__promotion-card:hover {
      transform: translateY(-5px);
    }

    .page-123go-com__promotion-image-wrapper {
      width: 100%;
      height: 220px;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-123go-com__promotion-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .page-123go-com__promotion-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .page-123go-com__promotion-title {
      font-size: 1.4em;
      color: var(--page-123go-com-secondary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-123go-com__promotion-description {
      font-size: 0.9em;
      color: var(--page-123go-com-gray-text);
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-123go-com__promotion-date {
      font-size: 0.8em;
      color: #888;
      margin-top: 10px;
    }

    /* Why Choose Us Section */
    .page-123go-com__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-123go-com__feature-item {
      background-color: var(--page-123go-com-card-background);
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      text-align: center;
      border: 1px solid var(--page-123go-com-border-color);
      height: 100%;
    }

    .page-123go-com__feature-icon {
      width: 200px; /* Minimum size 200x200px */
      height: 200px;
      margin-bottom: 20px;
      object-fit: contain;
    }

    .page-123go-com__feature-title {
      font-size: 1.3em;
      color: var(--page-123go-com-primary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-123go-com__feature-description {
      font-size: 0.9em;
      color: var(--page-123go-com-gray-text);
    }

    /* FAQ Section */
    .page-123go-com__faq-section {
      text-align: left;
    }

    .page-123go-com__faq-list {
      margin-top: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-123go-com__faq-item {
      background-color: var(--page-123go-com-card-background);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid var(--page-123go-com-border-color);
    }

    .page-123go-com__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      cursor: pointer;
      user-select: none;
      font-size: 1.1em;
      color: var(--page-123go-com-light-text);
      background-color: #333;
      transition: background-color 0.3s ease;
    }

    .page-123go-com__faq-question:hover {
      background-color: #444;
    }

    .page-123go-com__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      font-size: 1.1em;
      color: var(--page-123go-com-light-text);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-123go-com__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 */
      color: var(--page-123go-com-primary-color);
    }

    .page-123go-com__faq-item.active .page-123go-com__faq-toggle {
      transform: rotate(45deg); /* Plus to X */
    }

    .page-123go-com__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;
      color: var(--page-123go-com-gray-text);
      background-color: var(--page-123go-com-card-background);
    }

    .page-123go-com__faq-item.active .page-123go-com__faq-answer {
      max-height: 2000px !important; /* Use !important as required */
      padding: 20px !important; /* Adjust padding for expanded state */
      opacity: 1;
    }

    /* Providers & Payments Section */
    .page-123go-com__provider-grid,
    .page-123go-com__payment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-123go-com__provider-item,
    .page-123go-com__payment-item {
      background-color: var(--page-123go-com-card-background);
      border-radius: 8px;
      padding: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      height: 120px; /* Fixed height for consistency */
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .page-123go-com__provider-item:hover,
    .page-123go-com__payment-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    }

    .page-123go-com__provider-logo,
    .page-123go-com__payment-logo {
      max-width: 100px;
      max-height: 60px;
      object-fit: contain;
      margin-bottom: 10px;
      filter: brightness(0.8) grayscale(0.2); /* Slightly dim for dark theme, no color change */
      transition: filter 0.2s ease;
    }
    
    .page-123go-com__provider-item:hover .page-123go-com__provider-logo,
    .page-123go-com__payment-item:hover .page-123go-com__payment-logo {
      filter: brightness(1) grayscale(0); /* Brighten on hover */
    }

    .page-123go-com__provider-name,
    .page-123go-com__payment-name {
      font-size: 0.9em;
      color: var(--page-123go-com-gray-text);
      font-weight: bold;
      text-align: center;
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
      .page-123go-com__hero-title {
        font-size: 2.8em;
      }
      .page-123go-com__hero-subtitle {
        font-size: 1.3em;
      }
      .page-123go-com__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-123go-com__hero-section {
        height: 50vh;
      }
      .page-123go-com__hero-title {
        font-size: 2.2em;
      }
      .page-123go-com__hero-subtitle {
        font-size: 1.1em;
      }
      .page-123go-com__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-123go-com__section {
        padding: 30px 0;
      }
      .page-123go-com__section-title {
        font-size: 1.8em;
      }
      .page-123go-com__section-subtitle {
        font-size: 1em;
        margin-bottom: 30px;
      }

      /* Floating buttons for mobile */
      .page-123go-com__floating-buttons {
        flex-direction: row;
        width: 100%;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.8);
        padding: 10px 15px;
        justify-content: space-around;
        border-top: 1px solid var(--page-123go-com-border-color);
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
        border-radius: 0;
      }

      .page-123go-com__floating-button {
        flex: 1;
        margin: 0 5px;
        padding: 10px 15px;
        font-size: 0.9em;
        border-radius: 20px;
      }

      .page-123go-com__game-card-title,
      .page-123go-com__promotion-title {
        font-size: 1.3em;
      }

      .page-123go-com__feature-title {
        font-size: 1.2em;
      }

      /* List item responsive requirements for general lists like game categories, promotions, features, providers, payments */
      .page-123go-com__game-categories,
      .page-123go-com__promotions-grid,
      .page-123go-com__features-grid,
      .page-123go-com__provider-grid,
      .page-123go-com__payment-grid {
        grid-template-columns: 1fr; /* Stack items */
        gap: 20px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 10px !important; /* Adjust padding for overall container */
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-123go-com__game-card,
      .page-123go-com__promotion-card,
      .page-123go-com__feature-item,
      .page-123go-com__provider-item,
      .page-123go-com__payment-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important; /* Adjust padding as needed */
      }

      .page-123go-com__game-card-description,
      .page-123go-com__promotion-description,
      .page-123go-com__feature-description,
      .page-123go-com__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      
      .page-123go-com__faq-question {
        padding: 15px;
        font-size: 1em;
      }
      .page-123go-com__faq-question h3 {
        font-size: 1em;
      }
      .page-123go-com__faq-answer {
        padding: 0 15px;
      }
      .page-123go-com__faq-item.active .page-123go-com__faq-answer {
        padding: 15px !important;
      }
    }

    @media (max-width: 480px) {
      .page-123go-com__hero-title {
        font-size: 1.8em;
      }
      .page-123go-com__hero-subtitle {
        font-size: 0.9em;
      }
      .page-123go-com__cta-button {
        padding: 10px 20px;
        font-size: 1em;
      }
      .page-123go-com__section-title {
        font-size: 1.5em;
      }
      .page-123go-com__floating-button {
        padding: 8px 10px;
        font-size: 0.85em;
      }
    }
  