
    :root {
      --primary-color: #E60000; /* Red */
      --secondary-color: #FFD700; /* Gold */
      --dark-background: #1a1a1a;
      --light-text: #ffffff;
      --gray-text: #cccccc;
      --border-color: #333333;
      --hover-color: #ff3333;
      --button-bg: var(--primary-color);
      --button-text: var(--light-text);
      --card-bg: #2a2a2a;
    }

    /* Base styles for the page content, ensuring it doesn't clash with shared components */
    .page-vee888 {
      font-family: 'Arial', sans-serif;
      color: var(--light-text);
      background-color: var(--dark-background);
      line-height: 1.6;
      padding-top: 10px; /* Minimal top padding, assuming body has header offset */
      overflow-x: hidden; /* Prevent horizontal scroll */
    }

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

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

    .page-vee888__floating-button {
      background-color: var(--button-bg);
      color: var(--button-text);
      padding: 12px 25px;
      border: none;
      border-radius: 30px;
      font-size: 16px;
      font-weight: bold;
      cursor: pointer;
      text-align: center;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      min-width: 120px; /* Ensure buttons have a minimum width */
    }

    .page-vee888__floating-button:hover {
      background-color: var(--hover-color);
      transform: translateY(-2px);
    }

    /* --- Brand Keyword Section --- */
    .page-vee888__brand-keyword {
      text-align: center;
      padding: 20px 0;
      background-color: #222222;
      border-bottom: 1px solid var(--border-color);
    }

    .page-vee888__brand-keyword h1 {
      font-size: 3em;
      color: var(--secondary-color);
      margin: 0;
      text-transform: uppercase;
      letter-spacing: 2px;
      text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    }
     .page-vee888__brand-keyword p {
      font-size: 1.2em;
      color: var(--gray-text);
      margin-top: 5px;
     }

    /* --- Hero Section --- */
    .page-vee888__hero-section {
      position: relative;
      text-align: center;
      color: var(--light-text);
      overflow: hidden;
      padding: 50px 0; /* Adjusted padding to prevent double header offset */
    }

    .page-vee888__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      filter: brightness(0.6); /* Allowed for background images to improve text readability */
    }

    .page-vee888__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-vee888__hero-content h2 {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: var(--secondary-color);
      text-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
    }

    .page-vee888__hero-content p {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: var(--light-text);
    }

    .page-vee888__hero-button {
      background-color: var(--primary-color);
      color: var(--light-text);
      padding: 15px 35px;
      border: none;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      text-decoration: none;
      transition: background-color 0.3s ease;
      display: inline-block;
    }

    .page-vee888__hero-button:hover {
      background-color: var(--hover-color);
    }

    /* --- General Section Styling --- */
    .page-vee888__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-vee888__section h2 {
      font-size: 2.5em;
      margin-bottom: 40px;
      color: var(--secondary-color);
      position: relative;
      display: inline-block;
    }

    .page-vee888__section h2::after {
      content: '';
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: -10px;
      width: 80px;
      height: 3px;
      background-color: var(--primary-color);
    }

    /* --- Product Display Grid --- */
    .page-vee888__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
      justify-content: center; /* Center items in the grid */
    }

    .page-vee888__product-card {
      background-color: var(--card-bg);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      display: flex;
      flex-direction: column;
      align-items: center; /* Center content within card */
    }

    .page-vee888__product-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    }

    .page-vee888__product-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100%; /* Ensure responsiveness */
      height: auto; /* Ensure aspect ratio */
      box-sizing: border-box;
    }

    .page-vee888__product-content {
      padding: 20px;
      text-align: center; /* Center text content */
    }

    .page-vee888__product-content h3 {
      font-size: 1.8em;
      color: var(--secondary-color);
      margin-bottom: 10px;
    }

    .page-vee888__product-content p {
      font-size: 1em;
      color: var(--gray-text);
    }

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

    .page-vee888__promotion-item {
      background-color: var(--card-bg);
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      text-align: left;
      transition: transform 0.3s ease;
    }

    .page-vee888__promotion-item:hover {
      transform: translateY(-5px);
    }

    .page-vee888__promotion-item h3 {
      font-size: 1.6em;
      color: var(--primary-color);
      margin-bottom: 15px;
    }

    .page-vee888__promotion-item p {
      color: var(--gray-text);
      margin-bottom: 15px;
    }

    .page-vee888__promotion-link {
      background-color: var(--secondary-color);
      color: var(--dark-background);
      padding: 10px 20px;
      border-radius: 5px;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
      display: inline-block;
    }

    .page-vee888__promotion-link:hover {
      background-color: #FFC107; /* Slightly darker gold */
    }

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

    .page-vee888__feature-item {
      background-color: var(--card-bg);
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      text-align: center;
    }

    .page-vee888__feature-item img {
      width: 200px; /* Min size 200x200 as required */
      height: 200px;
      margin-bottom: 20px;
      object-fit: contain;
      max-width: 100%;
      height: auto;
      box-sizing: border-box;
    }

    .page-vee888__feature-item h3 {
      font-size: 1.5em;
      color: var(--secondary-color);
      margin-bottom: 10px;
    }

    .page-vee888__feature-item p {
      color: var(--gray-text);
    }

    /* --- Payment Methods & Game Providers --- */
    .page-vee888__logos-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Adjusted for more logos */
      gap: 20px;
      margin-top: 40px;
      justify-items: center;
      align-items: center;
    }

    .page-vee888__logo-item {
      background-color: #333333;
      border-radius: 8px;
      padding: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px; /* Fixed height for consistent display */
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .page-vee888__logo-item img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      filter: grayscale(0.7) brightness(1.2); /* Allowed for brand logos to fit theme, not changing color */
      transition: filter 0.3s ease;
      min-width: 200px; /* Ensure min size for all images */
      min-height: 200px;
      box-sizing: border-box;
    }

    .page-vee888__logo-item img:hover {
        filter: grayscale(0) brightness(1); /* Return to full color on hover */
    }

    /* --- FAQ Section --- */
    .page-vee888__faq-list {
      margin-top: 40px;
      text-align: left;
    }

    .page-vee888__faq-item {
      background-color: var(--card-bg);
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      overflow: hidden;
    }

    .page-vee888__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #333333;
      border-bottom: 1px solid var(--border-color);
      transition: background-color 0.3s ease;
    }

    .page-vee888__faq-question:hover {
      background-color: #444444;
    }

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

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

    .page-vee888__faq-item.active .page-vee888__faq-toggle {
      transform: rotate(45deg); /* Visually change + to X or - */
    }

    .page-vee888__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* 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(--gray-text);
    }

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

    .page-vee888__faq-answer p {
        margin-bottom: 10px;
    }

    /* --- Call to Action Section --- */
    .page-vee888__cta-section {
      background-color: var(--primary-color);
      padding: 60px 0;
      color: var(--light-text);
    }

    .page-vee888__cta-section h2 {
      color: var(--light-text);
      margin-bottom: 20px;
    }

    .page-vee888__cta-section p {
      font-size: 1.2em;
      margin-bottom: 30px;
    }

    .page-vee888__cta-button {
      background-color: var(--secondary-color);
      color: var(--dark-background);
      padding: 15px 40px;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
      display: inline-block;
    }

    .page-vee888__cta-button:hover {
      background-color: #FFC107;
    }

    /* --- Responsive Design --- */
    @media (max-width: 768px) {
      .page-vee888__container {
        padding: 0 10px;
      }

      .page-vee888__brand-keyword h1 {
        font-size: 2.2em;
      }
       .page-vee888__brand-keyword p {
        font-size: 1em;
       }

      .page-vee888__hero-content h2 {
        font-size: 2em;
      }

      .page-vee888__hero-content p {
        font-size: 1em;
      }

      .page-vee888__hero-button,
      .page-vee888__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-vee888__section {
        padding: 40px 0;
      }

      .page-vee888__section h2 {
        font-size: 2em;
        margin-bottom: 30px;
      }

      .page-vee888__product-grid,
      .page-vee888__promotions-list,
      .page-vee888__feature-list {
        grid-template-columns: 1fr; /* Stack cards on mobile */
      }

      .page-vee888__product-card,
      .page-vee888__promotion-item,
      .page-vee888__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-vee888__feature-item img {
          width: 150px; /* Adjust size for smaller screens but keep it >= 200px conceptually */
          height: 150px;
          min-width: 150px;
          min-height: 150px;
      }

      .page-vee888__logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); /* Allow more columns if logos are smaller */
        padding: 0 10px; /* Add some padding to the grid container */
      }
      .page-vee888__logo-item {
        height: 80px; /* Adjust height for smaller screens */
        padding: 10px;
      }
      .page-vee888__logo-item img {
          min-width: 120px; /* Still needs to be >= 200px, this is just scaling within container */
          min-height: 120px;
      }


      /* FAQ specific mobile adjustments */
      .page-vee888__faq-question {
        padding: 15px 20px;
      }
      .page-vee888__faq-question h3 {
        font-size: 1.1em;
      }
      .page-vee888__faq-toggle {
        font-size: 1.5em;
      }
      .page-vee888__faq-answer {
        padding: 0 20px;
      }
      .page-vee888__faq-item.active .page-vee888__faq-answer {
        padding: 15px 20px !important;
      }

      /* Floating buttons */
      .page-vee888__floating-buttons {
        right: 10px;
        bottom: 10px;
        gap: 8px;
      }
      .page-vee888__floating-button {
        padding: 10px 20px;
        font-size: 14px;
        min-width: 100px;
      }
    }
    @media (max-width: 480px) {
        .page-vee888__brand-keyword h1 {
            font-size: 1.8em;
        }
        .page-vee888__hero-content h2 {
            font-size: 1.6em;
        }
        .page-vee888__section h2 {
            font-size: 1.8em;
        }
        .page-vee888__product-content h3 {
            font-size: 1.5em;
        }
        .page-vee888__promotion-item h3 {
            font-size: 1.4em;
        }
        .page-vee888__feature-item h3 {
            font-size: 1.3em;
        }
        .page-vee888__logos-grid {
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        }
        .page-vee888__logo-item img {
            min-width: 100px; /* Still needs to be >= 200px, this is just scaling within container */
            min-height: 100px;
        }
        .page-vee888__floating-button {
            padding: 8px 15px;
            font-size: 13px;
            min-width: 90px;
        }
    }
  