
    /* Base styles for the page-vic88vin class */
    .page-vic88vin {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f4f7f6;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 0;
      margin: 0;
    }

    .page-vic88vin__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      width: 100%;
      box-sizing: border-box;
    }

    /* Hero Section */
    .page-vic88vin__hero-section {
      position: relative;
      width: 100%;
      background-color: #0d1a26; /* Dark background for contrast */
      color: #fff;
      text-align: center;
      padding-top: 10px; /* Fixed header spacing for desktop */
      padding-bottom: 40px;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-vic88vin__hero-image {
      width: 100%;
      height: auto;
      max-width: 100%;
      display: block;
      margin: 0 auto;
      object-fit: cover;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-vic88vin__hero-content {
      position: relative; /* Ensure content is above image if needed, though image is full width */
      z-index: 2;
      padding: 20px 15px;
      box-sizing: border-box;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-vic88vin__hero-title {
      font-size: 2.5em;
      margin-bottom: 15px;
      color: #ffd700; /* Gold color for highlights */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-vic88vin__hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    /* Floating Button */
    .page-vic88vin__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #ff4500; /* Orange-red for urgency */
      color: #fff;
      padding: 15px 25px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      transition: background-color 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      border: none; /* Use button tag, so remove border */
      cursor: pointer;
      line-height: 1.2;
    }

    .page-vic88vin__floating-button:hover {
      background-color: #e63900;
    }

    /* Section Styling */
    .page-vic88vin__section {
      background-color: #ffffff;
      padding: 40px 20px;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      width: 100%;
      box-sizing: border-box;
    }
    
    .page-vic88vin__section--dark {
        background-color: #2c3e50; /* Darker background for contrast */
        color: #ecf0f1;
    }

    .page-vic88vin__section-title {
      font-size: 2em;
      color: #2c3e50;
      margin-bottom: 25px;
      text-align: center;
      position: relative;
    }

    .page-vic88vin__section--dark .page-vic88vin__section-title {
        color: #ffd700;
    }

    .page-vic88vin__section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background-color: #ff4500;
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .page-vic88vin__section-description {
      font-size: 1.1em;
      text-align: center;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: #555;
    }

    .page-vic88vin__section--dark .page-vic88vin__section-description {
        color: #bdc3c7;
    }

    /* Feature Grid */
    .page-vic88vin__feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-vic88vin__feature-item {
      background-color: #f9f9f9;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }
    
    .page-vic88vin__section--dark .page-vic88vin__feature-item {
        background-color: #34495e;
        color: #ecf0f1;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-vic88vin__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .page-vic88vin__feature-icon {
      width: 60px;
      height: 60px;
      margin-bottom: 15px;
      object-fit: contain;
    }

    .page-vic88vin__feature-title {
      font-size: 1.3em;
      color: #ff4500;
      margin-bottom: 10px;
    }
    
    .page-vic88vin__section--dark .page-vic88vin__feature-title {
        color: #ffd700;
    }

    .page-vic88vin__feature-description {
      font-size: 0.95em;
      color: #666;
    }
    
    .page-vic88vin__section--dark .page-vic88vin__feature-description {
        color: #bdc3c7;
    }

    /* Game List */
    .page-vic88vin__game-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-vic88vin__game-card {
      background-color: #ffffff;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
    }

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

    .page-vic88vin__game-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
    }

    .page-vic88vin__game-info {
      padding: 15px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-vic88vin__game-title {
      font-size: 1.2em;
      color: #2c3e50;
      margin-bottom: 10px;
    }

    .page-vic88vin__game-description {
      font-size: 0.9em;
      color: #666;
      margin-bottom: 15px;
    }

    .page-vic88vin__game-button {
      display: block;
      width: 100%;
      padding: 10px 15px;
      background-color: #ff4500;
      color: #fff;
      text-align: center;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      box-sizing: border-box;
    }

    .page-vic88vin__game-button:hover {
      background-color: #e63900;
    }

    /* CTA Section */
    .page-vic88vin__cta-section {
      background: linear-gradient(135deg, #0d1a26, #2c3e50);
      color: #fff;
      text-align: center;
      padding: 60px 20px;
      margin-top: 30px;
      border-radius: 8px;
    }

    .page-vic88vin__cta-title {
      font-size: 2.2em;
      margin-bottom: 20px;
      color: #ffd700;
    }

    .page-vic88vin__cta-text {
      font-size: 1.1em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      color: #e0e0e0;
    }

    .page-vic88vin__cta-button {
      display: inline-block;
      background-color: #ff4500;
      color: #fff;
      padding: 15px 35px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      border: none;
      cursor: pointer;
    }

    .page-vic88vin__cta-button:hover {
      background-color: #e63900;
      transform: translateY(-3px);
    }

    /* FAQ Section */
    .page-vic88vin__faq-section {
      padding: 40px 20px;
      background-color: #f0f2f5;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      width: 100%;
      box-sizing: border-box;
    }

    .page-vic88vin__faq-title {
      font-size: 2em;
      color: #2c3e50;
      margin-bottom: 25px;
      text-align: center;
      position: relative;
    }

    .page-vic88vin__faq-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background-color: #ff4500;
      margin: 10px auto 0;
      border-radius: 2px;
    }

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

    .page-vic88vin__faq-item {
      background-color: #ffffff;
      margin-bottom: 10px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      overflow: hidden;
    }

    .page-vic88vin__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #0d1a26; /* Dark background for questions */
      color: #fff;
      cursor: pointer;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .page-vic88vin__faq-question:hover {
      background-color: #1a2b3c;
    }

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

    .page-vic88vin__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
      color: #fff;
    }

    .page-vic88vin__faq-item.active .page-vic88vin__faq-toggle {
      transform: rotate(45deg); /* Change + to X (or similar) */
    }

    .page-vic88vin__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      background-color: #fefefe;
      color: #333;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      box-sizing: border-box;
    }

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

    /* General text styling */
    .page-vic88vin p {
      margin-bottom: 1em;
      color: #444;
    }
    .page-vic88vin__section--dark p {
        color: #bdc3c7;
    }
    .page-vic88vin ul {
        list-style: disc;
        padding-left: 25px;
        margin-bottom: 1em;
        color: #444;
    }
    .page-vic88vin__section--dark ul {
        color: #bdc3c7;
    }
    .page-vic88vin ul li {
        margin-bottom: 0.5em;
        box-sizing: border-box;
    }
    .page-vic88vin strong {
        color: #ff4500;
    }
    .page-vic88vin__section--dark strong {
        color: #ffd700;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-vic88vin__hero-section {
        padding-top: 10px; /* Adjusted for mobile fixed header */
        padding-bottom: 20px;
      }
      .page-vic88vin__hero-title {
        font-size: 1.8em;
      }
      .page-vic88vin__hero-subtitle {
        font-size: 1em;
      }
      .page-vic88vin__section-title {
        font-size: 1.6em;
      }
      .page-vic88vin__section-description {
        font-size: 1em;
      }
      .page-vic88vin__cta-title {
        font-size: 1.8em;
      }
      .page-vic88vin__cta-text {
        font-size: 1em;
      }
      .page-vic88vin__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-vic88vin__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
        min-width: unset;
        max-width: 150px; /* Limit width for mobile */
        width: auto; /* Allow content to dictate width */
      }
      .page-vic88vin__feature-grid {
        grid-template-columns: 1fr;
      }
      .page-vic88vin__game-list {
        grid-template-columns: 1fr;
      }
      .page-vic88vin__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }
      .page-vic88vin__faq-question h3 {
        font-size: 1em;
      }
      .page-vic88vin__faq-answer {
        padding: 0 15px;
      }
      .page-vic88vin__faq-item.active .page-vic88vin__faq-answer {
        padding: 15px !important;
      }

      /* Image responsiveness */
      .page-vic88vin__hero-image,
      .page-vic88vin__feature-icon,
      .page-vic88vin__game-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important; /* Ensure text in alt attributes breaks */
        overflow-wrap: break-word !important;
      }

      /* List item responsiveness */
      .page-vic88vin ul li {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      .page-vic88vin ul {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px !important; /* Adjust padding for mobile list containers */
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
    }
  