
    /* Global styles for vz99 page */
    .page-vz99 {
      font-family: 'Arial', sans-serif;
      background-color: #000000; /* Black background */
      color: #FFFFFF; /* White text */
      line-height: 1.6;
      overflow-x: hidden;
    }

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

    .page-vz99__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-vz99__section-title {
      font-size: 2.5em;
      color: #FFD700; /* Yellow title */
      margin-bottom: 20px;
      font-weight: bold;
      text-transform: uppercase;
    }

    .page-vz99__section-description {
      font-size: 1.1em;
      color: #FFFFFF;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-vz99__button {
      display: inline-block;
      background-color: #FFD700; /* Yellow button */
      color: #000000; /* Black text on button */
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-vz99__button:hover {
      background-color: #e6c200; /* Darker yellow on hover */
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-vz99__hero-section {
      position: relative;
      padding-top: 150px; /* Safe area for fixed header (140px-180px) */
      padding-bottom: 40px;
      background-color: #000000;
      color: #FFFFFF;
      text-align: center;
      overflow: hidden;
    }

    .page-vz99__hero-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 20px;
    }

    .page-vz99__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
    }

    .page-vz99__hero-content {
      position: relative;
      z-index: 1;
      padding: 0 15px;
    }

    .page-vz99__hero-title {
      font-size: 3em;
      color: #FFD700;
      margin-bottom: 15px;
      font-weight: bold;
      line-height: 1.2;
    }

    .page-vz99__hero-subtitle {
      font-size: 1.4em;
      color: #FFFFFF;
      margin-bottom: 30px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Floating Login Button */
    .page-vz99__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      background-color: #FFD700;
      color: #000000;
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
      animation: page-vz99__pulse 1.5s infinite;
      white-space: nowrap; /* Prevent text wrapping */
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-vz99__floating-button:hover {
      background-color: #e6c200;
      transform: translateX(-50%) translateY(-3px);
    }

    @keyframes page-vz99__pulse {
      0% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
      }
      50% {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
      }
      100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
      }
    }

    /* Game Categories */
    .page-vz99__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .page-vz99__game-item {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
    }

    .page-vz99__game-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
    }

    .page-vz99__game-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 200px; /* Fixed height for consistency */
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #000000;
    }

    .page-vz99__game-image {
      width: 100%;
      height: 100%;
      object-fit: cover; /* Ensures image covers the area without distortion */
      display: block;
    }

    .page-vz99__game-title {
      font-size: 1.5em;
      color: #FFD700;
      margin: 20px 0 10px;
      padding: 0 15px;
    }

    .page-vz99__game-description {
      font-size: 0.95em;
      color: #CCCCCC;
      padding: 0 15px;
    }

    /* Game Providers */
    .page-vz99__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .page-vz99__provider-item {
      background-color: #1a1a1a;
      border-radius: 8px;
      padding: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100px; /* Consistent height for provider logos */
      overflow: hidden;
    }

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

    .page-vz99__provider-logo {
      max-width: 100%;
      max-height: 100%;
      height: auto;
      display: block;
      object-fit: contain;
    }

    /* Promotions */
    .page-vz99__promo-list {
      list-style: none;
      padding: 0;
      max-width: 800px;
      margin: 0 auto;
      text-align: left;
    }

    .page-vz99__promo-item {
      background-color: #1a1a1a;
      border-left: 5px solid #FFD700;
      margin-bottom: 20px;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .page-vz99__promo-item h3 {
      color: #FFD700;
      margin-top: 0;
      margin-bottom: 10px;
      font-size: 1.3em;
    }

    .page-vz99__promo-item p {
      color: #CCCCCC;
      font-size: 1em;
    }

    /* Guides */
    .page-vz99__guide-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .page-vz99__guide-step {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .page-vz99__guide-step:hover {
      transform: translateY(-5px);
    }

    .page-vz99__guide-step h3 {
      color: #FFD700;
      font-size: 1.4em;
      margin-bottom: 15px;
    }

    .page-vz99__guide-step p {
      color: #CCCCCC;
      font-size: 0.95em;
    }

    /* FAQ Section */
    .page-vz99__faq-section {
      text-align: left;
    }

    .page-vz99__faq-list {
      max-width: 800px;
      margin: 0 auto;
      padding: 0;
      list-style: none;
    }

    .page-vz99__faq-item {
      background-color: #1a1a1a;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .page-vz99__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 25px;
      background-color: #2a2a2a;
      color: #FFD700;
      cursor: pointer;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-vz99__faq-question:hover {
      background-color: #3a3a3a;
    }

    .page-vz99__faq-question h3 {
      margin: 0;
      color: #FFD700;
      font-size: 1.2em;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-vz99__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #FFD700;
      line-height: 1;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-vz99__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: #CCCCCC;
      font-size: 1em;
      background-color: #1a1a1a;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    /* Why Choose Us */
    .page-vz99__feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .page-vz99__feature-item {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      text-align: center;
    }

    .page-vz99__feature-item h3 {
      color: #FFD700;
      font-size: 1.4em;
      margin-bottom: 15px;
    }

    .page-vz99__feature-item p {
      color: #CCCCCC;
      font-size: 0.95em;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-vz99__hero-section {
        padding-top: 150px; /* Ensure safe area on mobile too */
      }

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

      .page-vz99__hero-subtitle {
        font-size: 1.1em;
      }

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

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

      .page-vz99__game-grid,
      .page-vz99__provider-grid,
      .page-vz99__guide-grid,
      .page-vz99__feature-grid {
        grid-template-columns: 1fr;
      }

      .page-vz99__floating-button {
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-vz99__game-image-wrapper {
        height: 180px;
      }

      .page-vz99__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }

      .page-vz99__faq-question h3 {
        font-size: 1.1em;
      }

      .page-vz99__faq-toggle {
        font-size: 1.3em;
      }

      .page-vz99__faq-answer {
        padding: 0 20px;
      }

      .page-vz99__faq-item.active .page-vz99__faq-answer {
        padding: 15px 20px !important;
      }

      /* Force image responsiveness */
      .page-vz99__hero-image,
      .page-vz99__game-image,
      .page-vz99__provider-logo {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-vz99__hero-image-wrapper,
      .page-vz99__game-image-wrapper,
      .page-vz99__provider-item {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  