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

    /* Fixed navigation bar spacing - assuming body padding is handled by shared.css */
    .page-100vip__hero-section {
        padding-top: 10px; /* Small decorative padding, main offset from body */
    }
    
    .page-100vip__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-100vip__section--dark {
      background-color: #2a2a2a;
      color: #fff;
    }

    .page-100vip__title {
      font-size: 2.5em;
      color: #0056b3; /* A strong blue for titles */
      margin-bottom: 20px;
      text-align: center;
      font-weight: bold;
    }

    .page-100vip__title--white {
      color: #fff;
    }

    .page-100vip__subtitle {
      font-size: 1.8em;
      color: #0056b3;
      margin-bottom: 15px;
      text-align: center;
    }

    .page-100vip__subtitle--white {
      color: #fff;
    }

    .page-100vip__text {
      font-size: 1.1em;
      margin-bottom: 20px;
      text-align: center;
    }

    .page-100vip__text--white {
      color: #ddd;
    }

    .page-100vip__hero-image {
      width: 100%;
      height: auto;
      max-width: 100%;
      display: block;
      margin: 0 auto 20px auto;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-100vip__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-100vip__button {
      background-color: #ffcc00; /* Gold/Yellow for action buttons */
      color: #333;
      padding: 12px 25px;
      border: none;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none; /* Ensure no underline for button-like divs */
      text-align: center;
      display: block; /* Make it block for full width in column */
    }

    .page-100vip__button:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }
    
    .page-100vip__button--register {
        background-color: #007bff; /* Blue for Register */
        color: #fff;
    }
    .page-100vip__button--register:hover {
        background-color: #0056b3;
    }

    .page-100vip__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
      justify-items: center; /* Center items within the grid cells */
    }

    .page-100vip__game-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      max-width: 350px; /* Limit card width */
      width: 100%;
      box-sizing: border-box;
      padding-bottom: 20px; /* Space for text */
    }

    .page-100vip__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-100vip__game-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      border-bottom: 1px solid #eee;
    }

    .page-100vip__game-title {
      font-size: 1.4em;
      color: #0056b3;
      margin: 15px 10px 10px 10px;
      font-weight: bold;
    }

    .page-100vip__game-description {
      font-size: 0.95em;
      color: #555;
      padding: 0 15px;
      text-align: center;
    }

    .page-100vip__promo-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }

    .page-100vip__promo-item {
      background-color: #fff;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      text-align: left;
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-100vip__promo-item:hover {
      transform: translateY(-3px);
    }

    .page-100vip__promo-title {
      font-size: 1.3em;
      color: #d9534f; /* Red for promotions */
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-100vip__promo-description {
      font-size: 1em;
      color: #666;
    }

    .page-100vip__feature-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .page-100vip__feature-item {
      background-color: #fff;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      text-align: left;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-100vip__feature-title {
      font-size: 1.2em;
      color: #007bff;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-100vip__feature-description {
      font-size: 0.95em;
      color: #555;
    }

    .page-100vip__payment-providers,
    .page-100vip__game-providers {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-100vip__provider-logo {
      width: 150px; /* Larger size for logos */
      height: auto;
      max-width: 100%;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      transition: transform 0.2s ease;
      object-fit: contain; /* Ensure logos fit without cropping */
    }

    .page-100vip__provider-logo:hover {
      transform: scale(1.05);
    }

    /* FAQ Styles */
    .page-100vip__faq-section {
      text-align: left;
    }

    .page-100vip__faq-item {
      background-color: #fff;
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      overflow: hidden;
    }

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

    .page-100vip__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-100vip__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #0056b3;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-100vip__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #0056b3;
      pointer-events: none; /* Prevent toggle from blocking click event */
      transition: transform 0.3s ease;
    }

    .page-100vip__faq-item.active .page-100vip__faq-toggle {
      transform: rotate(45deg); /* Rotate '+' to 'x' or similar effect */
    }
    
    .page-100vip__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: #555;
      font-size: 0.95em;
    }

    .page-100vip__faq-item.active .page-100vip__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px !important; /* Final padding */
      opacity: 1;
    }

    /* Mobile responsiveness */
    @media (max-width: 768px) {
      .page-100vip__title {
        font-size: 2em;
      }

      .page-100vip__subtitle {
        font-size: 1.5em;
      }

      .page-100vip__text {
        font-size: 1em;
      }

      .page-100vip__section {
        padding: 30px 15px;
      }

      .page-100vip__floating-buttons {
        flex-direction: row;
        width: calc(100% - 40px);
        bottom: 15px;
        left: 20px;
        right: 20px;
        justify-content: space-around;
      }

      .page-100vip__button {
        flex: 1;
        padding: 10px 15px;
        font-size: 1em;
      }
      
      .page-100vip__game-grid,
      .page-100vip__promo-list,
      .page-100vip__feature-list {
        grid-template-columns: 1fr; /* Single column on mobile */
      }

      /* Mobile responsiveness for list items */
      .page-100vip__promo-item,
      .page-100vip__feature-item,
      .page-100vip__game-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important; /* Adjust padding to fit */
        padding-right: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-100vip__promo-list,
      .page-100vip__feature-list {
          padding: 0 !important;
          margin-left: 0 !important;
          margin-right: 0 !important;
          width: 100% !important;
          max-width: 100% !important;
          box-sizing: border-box !important;
      }

      .page-100vip__game-image {
        height: 180px;
      }
      
      .page-100vip__provider-logo {
        width: 120px;
      }

      .page-100vip__faq-question {
        padding: 12px 15px;
      }

      .page-100vip__faq-question h3 {
        font-size: 1em;
      }

      .page-100vip__faq-answer {
        padding: 0 15px;
      }

      .page-100vip__faq-item.active .page-100vip__faq-answer {
        padding: 15px !important;
      }
    }
  