
    :root {
      --primary-color: #e44d26; /* A vibrant, energetic color */
      --secondary-color: #ffb300; /* Complementary accent */
      --dark-background: #1a1a2e; /* Dark theme for gaming */
      --light-text: #ffffff;
      --soft-grey: #f0f0f0;
      --medium-grey: #cccccc;
      --border-radius-small: 8px;
      --border-radius-large: 15px;
      --spacing-small: 10px;
      --spacing-medium: 20px;
      --spacing-large: 40px;
    }

    .page-39go99 {
      font-family: 'Arial', sans-serif;
      color: var(--light-text);
      background-color: var(--dark-background);
      line-height: 1.6;
      overflow-x: hidden;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    .page-39go99__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 var(--spacing-medium);
      box-sizing: border-box;
    }

    /* Hero Section */
    .page-39go99__hero-section {
      text-align: center;
      padding: var(--spacing-large) var(--spacing-medium) calc(var(--spacing-large) * 1.5) var(--spacing-medium);
      background: linear-gradient(135deg, var(--dark-background) 0%, #330033 100%);
      position: relative;
      overflow: hidden;
      padding-top: 10px; /* Decorative top padding after body offset */
    }

    .page-39go99__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
    }

    .page-39go99__hero-content {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 400px; /* Ensure content area is visible */
    }

    .page-39go99__hero-title {
      font-size: 3em;
      margin-bottom: var(--spacing-medium);
      color: var(--secondary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      font-weight: bold;
    }

    .page-39go99__hero-description {
      font-size: 1.2em;
      margin-bottom: var(--spacing-large);
      max-width: 800px;
      color: var(--soft-grey);
    }

    .page-39go99__hero-buttons {
      display: flex;
      gap: var(--spacing-medium);
      flex-wrap: wrap;
      justify-content: center;
    }

    .page-39go99__button {
      background-color: var(--primary-color);
      color: var(--light-text);
      padding: 12px 30px;
      border: none;
      border-radius: var(--border-radius-large);
      font-size: 1.1em;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      display: inline-block;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-39go99__button:hover {
      background-color: #d13a1e;
      transform: translateY(-2px);
    }

    .page-39go99__button--secondary {
      background-color: var(--secondary-color);
      color: var(--dark-background);
    }

    .page-39go99__button--secondary:hover {
      background-color: #e6a200;
    }

    /* Floating Buttons */
    .page-39go99__floating-buttons {
      position: fixed;
      bottom: var(--spacing-medium);
      right: var(--spacing-medium);
      display: flex;
      flex-direction: column;
      gap: var(--spacing-small);
      z-index: 1000;
    }

    .page-39go99__floating-button {
      background-color: var(--primary-color);
      color: var(--light-text);
      padding: 10px 20px;
      border-radius: var(--border-radius-large);
      text-decoration: none;
      font-weight: bold;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-align: center;
    }

    .page-39go99__floating-button:hover {
      background-color: #d13a1e;
      transform: scale(1.05);
    }

    .page-39go99__floating-button--login {
      background-color: var(--secondary-color);
      color: var(--dark-background);
    }

    .page-39go99__floating-button--login:hover {
      background-color: #e6a200;
    }

    /* Section Styling */
    .page-39go99__section {
      padding: var(--spacing-large) 0;
      text-align: center;
    }

    .page-39go99__section-title {
      font-size: 2.5em;
      margin-bottom: var(--spacing-large);
      color: var(--secondary-color);
      position: relative;
      padding-bottom: var(--spacing-small);
    }

    .page-39go99__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--primary-color);
      border-radius: 2px;
    }

    .page-39go99__section-description {
      font-size: 1.1em;
      max-width: 900px;
      margin: 0 auto var(--spacing-large);
      color: var(--medium-grey);
    }

    /* Product Display */
    .page-39go99__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: var(--spacing-medium);
      padding: var(--spacing-medium) 0;
    }

    .page-39go99__product-card {
      background-color: #2b2b40;
      border-radius: var(--border-radius-large);
      overflow: hidden;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      display: flex;
      flex-direction: column;
    }

    .page-39go99__product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    }

    .page-39go99__product-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 200px; /* Fixed height for product images */
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #1f1f30;
    }

    .page-39go99__product-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      max-width: 100% !important;
      height: auto !important;
    }

    .page-39go99__product-info {
      padding: var(--spacing-medium);
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-39go99__product-title {
      font-size: 1.5em;
      margin-bottom: var(--spacing-small);
      color: var(--secondary-color);
    }

    .page-39go99__product-description {
      font-size: 0.95em;
      color: var(--medium-grey);
      margin-bottom: var(--spacing-medium);
      flex-grow: 1;
    }

    .page-39go99__product-button {
      background-color: var(--primary-color);
      color: var(--light-text);
      padding: 10px 20px;
      border-radius: var(--border-radius-small);
      text-decoration: none;
      font-weight: bold;
      display: inline-block;
      align-self: flex-start;
      transition: background-color 0.3s ease;
    }

    .page-39go99__product-button:hover {
      background-color: #d13a1e;
    }

    /* Promotions */
    .page-39go99__promotion-card {
      background-color: #2b2b40;
      border-radius: var(--border-radius-large);
      padding: var(--spacing-medium);
      margin-bottom: var(--spacing-medium);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      text-align: left;
    }

    .page-39go99__promotion-title {
      font-size: 1.8em;
      color: var(--secondary-color);
      margin-bottom: var(--spacing-small);
    }

    .page-39go99__promotion-details {
      color: var(--medium-grey);
      margin-bottom: var(--spacing-medium);
    }

    .page-39go99__promotion-link {
      background-color: var(--primary-color);
      color: var(--light-text);
      padding: 10px 20px;
      border-radius: var(--border-radius-small);
      text-decoration: none;
      font-weight: bold;
      display: inline-block;
      transition: background-color 0.3s ease;
    }

    .page-39go99__promotion-link:hover {
      background-color: #d13a1e;
    }

    /* Providers & Payments */
    .page-39go99__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: var(--spacing-medium);
      align-items: center;
      justify-items: center;
      padding: var(--spacing-medium) 0;
    }

    .page-39go99__logo-item {
      background-color: #2b2b40;
      border-radius: var(--border-radius-small);
      padding: var(--spacing-small);
      height: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease;
    }

    .page-39go99__logo-item:hover {
      transform: translateY(-3px);
    }

    .page-39go99__logo {
      max-width: 90%;
      max-height: 80%;
      object-fit: contain;
      max-width: 100% !important;
      height: auto !important;
    }

    /* Why Choose Us */
    .page-39go99__feature-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: var(--spacing-medium);
      padding: var(--spacing-medium) 0;
    }

    .page-39go99__feature-card {
      background-color: #2b2b40;
      border-radius: var(--border-radius-large);
      padding: var(--spacing-medium);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      text-align: left;
    }

    .page-39go99__feature-icon-wrapper {
      background-color: var(--primary-color);
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: var(--spacing-small);
    }

    .page-39go99__feature-icon {
      max-width: 100% !important;
      height: auto !important;
      width: 40px;
      height: 40px;
      object-fit: contain;
    }

    .page-39go99__feature-title {
      font-size: 1.4em;
      color: var(--secondary-color);
      margin-bottom: var(--spacing-small);
    }

    .page-39go99__feature-description {
      color: var(--medium-grey);
      font-size: 0.95em;
    }

    /* FAQ Section */
    .page-39go99__faq-section {
      background-color: #2b2b40;
      border-radius: var(--border-radius-large);
      padding: var(--spacing-large);
      margin-top: var(--spacing-large);
      text-align: left;
    }

    .page-39go99__faq-title {
      text-align: center;
      font-size: 2em;
      margin-bottom: var(--spacing-large);
      color: var(--secondary-color);
    }

    .page-39go99__faq-item {
      border-bottom: 1px solid #3a3a50;
      margin-bottom: var(--spacing-small);
      padding-bottom: var(--spacing-small);
    }

    .page-39go99__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .page-39go99__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      padding: 15px 0;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-39go99__faq-question:hover {
      background-color: #3a3a50;
      border-radius: var(--border-radius-small);
    }

    .page-39go99__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--light-text);
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-39go99__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-39go99__faq-item.active .page-39go99__faq-toggle {
      transform: rotate(45deg);
    }

    .page-39go99__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(--medium-grey);
      font-size: 0.95em;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-39go99 {
        padding-top: var(--header-offset, 100px); /* Adjust header offset for mobile */
      }

      .page-39go99__hero-section {
        padding: var(--spacing-large) var(--spacing-small) calc(var(--spacing-large) * 1.5) var(--spacing-small);
      }

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

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

      .page-39go99__hero-buttons {
        flex-direction: column;
        gap: var(--spacing-small);
      }

      .page-39go99__button {
        width: 100%;
        padding: 10px 20px;
      }

      .page-39go99__floating-buttons {
        flex-direction: row;
        width: calc(100% - var(--spacing-medium) * 2);
        left: var(--spacing-medium);
        right: var(--spacing-medium);
        bottom: var(--spacing-medium);
        justify-content: space-around;
      }

      .page-39go99__floating-button {
        flex: 1;
        padding: 8px 15px;
        font-size: 0.9em;
      }

      .page-39go99__section-title {
        font-size: 2em;
      }

      .page-39go99__container {
        padding: 0 var(--spacing-small);
      }

      .page-39go99__product-grid,
      .page-39go99__logo-grid,
      .page-39go99__feature-list {
        grid-template-columns: 1fr;
        padding: var(--spacing-small) 0;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-39go99__product-card,
      .page-39go99__logo-item,
      .page-39go99__feature-card {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-39go99__product-image-wrapper,
      .page-39go99__logo-item {
        height: 150px;
      }

      .page-39go99__product-image,
      .page-39go99__logo,
      .page-39go99__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-39go99__faq-section {
        padding: var(--spacing-medium);
      }

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

      .page-39go99__faq-answer {
        font-size: 0.85em;
      }
    }
  