
    :root {
      --page-58win-primary-color: #e44d26; /* Cam đậm */
      --page-58win-secondary-color: #ff8c00; /* Cam sáng */
      --page-58win-text-color: #333;
      --page-58win-light-text-color: #fff;
      --page-58win-background-color: #f8f8f8;
      --page-58win-card-background: #ffffff;
      --page-58win-border-color: #eee;
    }

    .page-58win {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-58win-text-color);
      background-color: var(--page-58win-background-color);
    }

    /* Floating Login Button */
    .page-58win__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-image: linear-gradient(45deg, var(--page-58win-primary-color), var(--page-58win-secondary-color));
      color: var(--page-58win-light-text-color);
      padding: 15px 25px;
      border-radius: 50px;
      text-align: center;
      text-decoration: none;
      font-size: 18px;
      font-weight: bold;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      animation: pulse 2s infinite;
      display: flex;
      align-items: center;
      justify-content: center;
      max-width: 250px;
    }

    .page-58win__floating-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    @media (max-width: 768px) {
      .page-58win__floating-button {
        bottom: 15px;
        right: 15px;
        font-size: 16px;
        padding: 12px 20px;
        max-width: 90%;
        left: 50%;
        transform: translateX(-50%);
        animation: pulse-mobile 2s infinite;
      }
      @keyframes pulse-mobile {
        0% { transform: translateX(-50%) scale(1); }
        50% { transform: translateX(-50%) scale(1.05); }
        100% { transform: translateX(-50%) scale(1); }
      }
    }

    .page-58win__section {
      padding: 40px 20px;
      margin: 0 auto;
      max-width: 1200px;
    }

    .page-58win__hero-section {
      text-align: center;
      background-color: #333; /* Fallback for image */
      color: var(--page-58win-light-text-color);
      padding-top: 10px; /* To clear fixed header */
      position: relative;
      overflow: hidden;
    }

    .page-58win__hero-image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #222; /* Darker fallback */
    }

    .page-58win__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      width: 100%; /* Ensure it fills container */
    }

    .page-58win__hero-content {
      position: relative;
      z-index: 2;
      padding: 30px 20px;
      background: rgba(0, 0, 0, 0.4); /* Overlay for text readability */
      margin-top: -5px; /* Adjust to slightly overlap image for continuity */
    }

    .page-58win__hero-title {
      font-size: 2.8em;
      margin-bottom: 10px;
      color: var(--page-58win-light-text-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-58win__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 20px;
      color: #f0f0f0;
    }

    .page-58win__cta-button {
      display: inline-block;
      background-image: linear-gradient(to right, #4CAF50, #8BC34A);
      color: var(--page-58win-light-text-color);
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-image 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-58win__cta-button:hover {
      background-image: linear-gradient(to right, #8BC34A, #4CAF50);
      transform: translateY(-2px);
    }

    .page-58win__title {
      font-size: 2.2em;
      color: var(--page-58win-primary-color);
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-58win__title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--page-58win-secondary-color);
      border-radius: 2px;
    }

    .page-58win__text-content {
      text-align: justify;
      margin-bottom: 20px;
    }

    .page-58win__text-content p {
      margin-bottom: 15px;
      font-size: 1.05em;
    }

    .page-58win__highlight {
      color: var(--page-58win-primary-color);
      font-weight: bold;
    }

    .page-58win__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-58win__feature-item {
      background-color: var(--page-58win-card-background);
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

    .page-58win__feature-icon-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin: 0 auto 15px;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100px; /* Ensure icon area is not too small */
    }

    .page-58win__feature-icon {
      max-width: 100%;
      height: auto;
      display: block;
      width: 100px; /* Fixed width for icons, adjust as needed */
      height: 100px;
      object-fit: contain;
    }

    .page-58win__feature-title {
      font-size: 1.4em;
      color: var(--page-58win-secondary-color);
      margin-bottom: 10px;
    }

    .page-58win__game-categories-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-58win__game-category-item {
      background-color: var(--page-58win-card-background);
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-58win__game-category-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .page-58win__game-category-icon-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin: 0 auto 10px;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 80px; /* Ensure icon area is not too small */
    }

    .page-58win__game-category-icon {
      max-width: 100%;
      height: auto;
      display: block;
      width: 80px; /* Fixed width for game icons */
      height: 80px;
      object-fit: contain;
    }

    .page-58win__game-category-name {
      font-size: 1.1em;
      font-weight: bold;
      color: var(--page-58win-text-color);
    }

    .page-58win__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-58win__promotion-card {
      background-color: var(--page-58win-card-background);
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

    .page-58win__promotion-image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 200px;
      background-color: #eee;
    }

    .page-58win__promotion-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      max-width: 100%;
    }

    .page-58win__promotion-content {
      padding: 20px;
    }

    .page-58win__promotion-title {
      font-size: 1.5em;
      color: var(--page-58win-primary-color);
      margin-bottom: 10px;
    }

    .page-58win__promotion-description {
      font-size: 0.95em;
      color: var(--page-58win-text-color);
      margin-bottom: 15px;
    }

    .page-58win__promo-button {
      display: inline-block;
      background-color: var(--page-58win-secondary-color);
      color: var(--page-58win-light-text-color);
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.95em;
      transition: background-color 0.3s ease;
    }

    .page-58win__promo-button:hover {
      background-color: #ffaa33;
    }

    .page-58win__steps-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .page-58win__step-item {
      background-color: var(--page-58win-card-background);
      padding: 20px 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      display: flex;
      align-items: flex-start;
      gap: 20px;
    }

    .page-58win__step-number {
      background-color: var(--page-58win-primary-color);
      color: var(--page-58win-light-text-color);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.5em;
      font-weight: bold;
      flex-shrink: 0;
    }

    .page-58win__step-content h3 {
      margin-top: 0;
      color: var(--page-58win-secondary-color);
      font-size: 1.3em;
    }

    .page-58win__step-content p {
      margin-bottom: 0;
      font-size: 1em;
    }

    .page-58win__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-58win__provider-item {
      background-color: var(--page-58win-card-background);
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
      text-align: center;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .page-58win__provider-item:hover {
      transform: translateY(-2px);
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    }

    .page-58win__provider-logo-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 80px; /* Fixed height for provider logos */
    }

    .page-58win__provider-logo {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: contain;
      max-height: 80px;
    }

    /* FAQ Section */
    .page-58win__faq-section {
      background-color: #f0f0f0;
    }

    .page-58win__faq-container {
      margin-top: 30px;
    }

    .page-58win__faq-item {
      background-color: var(--page-58win-card-background);
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      overflow: hidden;
    }

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

    .page-58win__faq-question:hover {
      background-color: #f9f9f9;
    }

    .page-58win__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-58win-text-color);
      pointer-events: none; /* Prevent h3 from blocking click */
    }

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

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

    .page-58win__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-58win__faq-item.active .page-58win__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px !important;
      opacity: 1;
    }

    .page-58win__faq-answer p {
      margin: 0;
      line-height: 1.8;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-58win__section {
        padding: 30px 15px;
      }

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

      .page-58win__hero-subtitle {
        font-size: 1em;
      }

      .page-58win__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-58win__title {
        font-size: 1.8em;
        margin-bottom: 25px;
      }

      .page-58win__features-grid,
      .page-58win__promotions-grid,
      .page-58win__game-categories-grid,
      .page-58win__providers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-58win__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .page-58win__step-content h3 {
        margin-top: 10px;
        font-size: 1.2em;
      }

      .page-58win__step-number {
        width: 35px;
        height: 35px;
        font-size: 1.3em;
      }

      .page-58win__game-category-icon {
        width: 60px;
        height: 60px;
      }
      .page-58win__game-category-icon-container {
        min-height: 60px;
      }

      .page-58win__feature-icon {
        width: 80px;
        height: 80px;
      }
      .page-58win__feature-icon-container {
        min-height: 80px;
      }

      .page-58win__provider-logo {
        max-height: 60px;
      }
      .page-58win__provider-logo-container {
        height: 60px;
      }

      .page-58win__faq-question {
        padding: 12px 15px;
      }
      .page-58win__faq-question h3 {
        font-size: 1.1em;
      }
      .page-58win__faq-toggle {
        font-size: 1.5em;
      }
      .page-58win__faq-answer {
        padding: 0 15px;
      }
      .page-58win__faq-item.active .page-58win__faq-answer {
        padding: 15px !important;
      }

      /* Image responsive styles with !important */
      .page-58win__hero-image,
      .page-58win__feature-icon,
      .page-58win__game-category-icon,
      .page-58win__promotion-image,
      .page-58win__provider-logo {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-58win__hero-image-container,
      .page-58win__feature-icon-container,
      .page-58win__game-category-icon-container,
      .page-58win__promotion-image-container,
      .page-58win__provider-logo-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  