
    .page-99vim {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
    }

    .page-99vim__section-title {
      font-size: 2.5em;
      color: #2c3e50;
      text-align: center;
      margin-bottom: 20px;
      font-weight: bold;
      padding-top: 40px;
      padding-bottom: 20px;
    }

    .page-99vim__section-subtitle {
      font-size: 1.2em;
      color: #555;
      text-align: center;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      padding: 0 15px;
    }

    .page-99vim__highlight {
      color: #ffcc00;
    }

    /* Hero Section */
    .page-99vim__hero-section {
      background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
      color: #fff;
      padding: 10px 20px 60px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 500px;
      position: relative;
      overflow: hidden;
    }

    .page-99vim__hero-content {
      max-width: 900px;
      margin: 0 auto;
      z-index: 1;
    }

    .page-99vim__hero-title {
      font-size: 3.2em;
      margin-bottom: 20px;
      font-weight: bold;
      line-height: 1.2;
      color: #fff;
    }

    .page-99vim__hero-description {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #eee;
    }

    .page-99vim__hero-actions {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .page-99vim__hero-button {
      display: inline-block;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: all 0.3s ease;
      white-space: nowrap;
      box-sizing: border-box;
    }

    .page-99vim__hero-button--primary {
      background-color: #ffcc00;
      color: #2c3e50;
      border: 2px solid #ffcc00;
    }

    .page-99vim__hero-button--primary:hover {
      background-color: #e6b800;
      border-color: #e6b800;
      transform: translateY(-3px);
    }

    .page-99vim__hero-button--secondary {
      background-color: transparent;
      color: #ffcc00;
      border: 2px solid #ffcc00;
    }

    .page-99vim__hero-button--secondary:hover {
      background-color: #ffcc00;
      color: #2c3e50;
      transform: translateY(-3px);
    }

    .page-99vim__hero-image-wrapper {
      margin-top: 40px;
      max-width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 1;
    }

    .page-99vim__hero-image {
      max-width: 100%;
      height: auto;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      object-fit: cover;
    }

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

    .page-99vim__floating-button {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 120px;
      height: 50px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      color: #fff;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease;
      box-sizing: border-box;
    }

    .page-99vim__floating-button--register {
      background-color: #e74c3c;
    }

    .page-99vim__floating-button--login {
      background-color: #3498db;
    }

    .page-99vim__floating-button:hover {
      transform: translateY(-5px);
    }

    /* Games Section */
    .page-99vim__games-section {
      padding: 60px 20px;
      background-color: #f0f2f5;
    }

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

    .page-99vim__game-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      text-align: center;
      padding-bottom: 20px;
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-99vim__game-card:hover {
      transform: translateY(-10px);
    }

    .page-99vim__game-image {
      max-width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 1px solid #eee;
      margin-bottom: 15px;
    }

    .page-99vim__game-title {
      font-size: 1.8em;
      color: #2c3e50;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-99vim__game-description {
      font-size: 1em;
      color: #666;
      padding: 0 15px;
    }

    /* Promotions Section */
    .page-99vim__promotions-section {
      padding: 60px 20px;
      background-color: #fff;
    }

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

    .page-99vim__promo-card {
      background-color: #fdfdfd;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease;
      padding-bottom: 20px;
      box-sizing: border-box;
    }

    .page-99vim__promo-card:hover {
      transform: translateY(-10px);
    }

    .page-99vim__promo-image {
      max-width: 100%;
      height: 250px;
      object-fit: cover;
      border-bottom: 1px solid #eee;
      margin-bottom: 15px;
    }

    .page-99vim__promo-title {
      font-size: 1.8em;
      color: #2c3e50;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-99vim__promo-description {
      font-size: 1em;
      color: #666;
      padding: 0 15px;
      margin-bottom: 20px;
    }

    .page-99vim__promo-action {
      display: flex;
      justify-content: center;
    }

    .page-99vim__promo-text {
      display: inline-block;
      padding: 10px 20px;
      background-color: #ffcc00;
      color: #2c3e50;
      border-radius: 25px;
      font-weight: bold;
      font-size: 0.9em;
      cursor: default; /* No link */
      box-sizing: border-box;
    }

    /* Benefits Section */
    .page-99vim__benefits-section {
      padding: 60px 20px;
      background-color: #f0f2f5;
    }

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

    .page-99vim__benefit-item {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      text-align: center;
      padding: 30px;
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-99vim__benefit-item:hover {
      transform: translateY(-10px);
    }

    .page-99vim__benefit-icon {
      max-width: 150px; /* Adjust size based on image type, but keep >200px if content image */
      height: auto;
      margin-bottom: 20px;
      object-fit: contain;
    }

    .page-99vim__benefit-title {
      font-size: 1.6em;
      color: #2c3e50;
      margin-bottom: 10px;
    }

    .page-99vim__benefit-description {
      font-size: 0.95em;
      color: #666;
    }

    /* FAQ Section */
    .page-99vim__faq-section {
      padding: 60px 20px;
      background-color: #fff;
    }

    .page-99vim__faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-99vim__faq-item {
      background-color: #fdfdfd;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-99vim__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #f5f5f5;
      color: #2c3e50;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-99vim__faq-question:hover {
      background-color: #eee;
    }

    .page-99vim__faq-question-text {
      font-size: 1.2em;
      margin: 0;
      color: #2c3e50;
      pointer-events: none; /* Prevent text from blocking click event */
    }

    .page-99vim__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      transition: transform 0.3s ease;
    }

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

    .page-99vim__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555;
    }

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

    .page-99vim__faq-answer p {
      margin: 0;
      padding: 0;
    }

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
      .page-99vim__hero-title {
        font-size: 2.8em;
      }
      .page-99vim__hero-description {
        font-size: 1.3em;
      }
      .page-99vim__section-title {
        font-size: 2em;
      }
      .page-99vim__section-subtitle {
        font-size: 1.1em;
      }
    }

    @media (max-width: 768px) {
      .page-99vim__hero-section {
        padding-bottom: 40px;
        min-height: 400px;
      }
      .page-99vim__hero-title {
        font-size: 2.2em;
      }
      .page-99vim__hero-description {
        font-size: 1.1em;
      }
      .page-99vim__hero-actions {
        flex-direction: column;
        gap: 15px;
      }
      .page-99vim__hero-button {
        width: 100%;
        max-width: 280px;
      }

      .page-99vim__floating-buttons {
        bottom: 15px;
        right: 15px;
      }
      .page-99vim__floating-button {
        width: 100px;
        height: 45px;
        font-size: 0.9em;
      }

      .page-99vim__section-title {
        font-size: 1.8em;
        padding-top: 30px;
      }
      .page-99vim__section-subtitle {
        font-size: 1em;
        margin-bottom: 30px;
      }

      .page-99vim__game-grid, .page-99vim__promo-grid, .page-99vim__benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      /* List items (e.g., game cards, promo cards, benefit items) responsive */
      .page-99vim__game-card, .page-99vim__promo-card, .page-99vim__benefit-item, .page-99vim__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important; /* Adjust padding for smaller screens */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-99vim__game-image, .page-99vim__promo-image, .page-99vim__benefit-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-99vim__faq-question {
        padding: 12px 15px;
      }
      .page-99vim__faq-question-text {
        font-size: 1.1em;
      }
      .page-99vim__faq-answer {
        padding: 0 15px;
      }
      .page-99vim__faq-item.active .page-99vim__faq-answer {
        padding: 15px !important;
      }
    }

    @media (max-width: 480px) {
      .page-99vim__hero-title {
        font-size: 1.8em;
      }
      .page-99vim__hero-description {
        font-size: 1em;
      }
      .page-99vim__section-title {
        font-size: 1.6em;
      }
      .page-99vim__section-subtitle {
        font-size: 0.9em;
      }
      .page-99vim__floating-buttons {
        bottom: 10px;
        right: 10px;
        flex-direction: row;
        width: calc(100% - 20px);
        justify-content: space-around;
      }
      .page-99vim__floating-button {
        width: 48%;
        max-width: 120px;
      }
    }
  