
    /* Base styles for the page, ensuring good contrast */
    .page-13-win {
      font-family: 'Arial', sans-serif;
      background-color: #1a1a1a; /* Dark background */
      color: #f0f0f0; /* Light text for contrast */
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-13-win__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-13-win__section {
      padding: 40px 20px;
      margin-bottom: 30px;
      border-radius: 10px;
      background-color: #2a2a2a; /* Slightly lighter dark for sections */
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-13-win__section--primary {
      background: linear-gradient(135deg, #ff4d4d, #cc0000); /* Red gradient */
      color: #fff;
    }

    .page-13-win__hero-section {
      text-align: center;
      padding: 10px 20px 60px; /* Small top padding, more bottom */
      background-image: url('[GALLERY:hero:1920x1080:betting,casino,mobile,13win]');
      background-size: cover;
      background-position: center;
      color: #fff;
      position: relative;
      overflow: hidden;
      border-radius: 0 0 20px 20px;
    }

    .page-13-win__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
      z-index: 1;
    }

    .page-13-win__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-13-win__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      color: #ffcc00; /* Gold for main title */
    }

    .page-13-win__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-13-win__cta-button {
      display: inline-block;
      background-color: #ffcc00; /* Gold button */
      color: #1a1a1a;
      padding: 15px 35px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
      border: none; /* Use button tag, so no default border */
      cursor: pointer;
    }

    .page-13-win__cta-button:hover {
      background-color: #e6b800;
      transform: translateY(-3px);
    }

    .page-13-win__text-center {
      text-align: center;
    }

    .page-13-win__heading {
      font-size: 2.5em;
      color: #ffcc00; /* Gold for section headings */
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-13-win__heading::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #ffcc00;
      border-radius: 2px;
    }

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

    .page-13-win__game-card {
      background-color: #3a3a3a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-13-win__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    .page-13-win__game-card-image-wrapper {
      width: 100%;
      max-height: 200px; /* Fixed height for consistency */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #2a2a2a;
    }

    .page-13-win__game-card-image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      min-height: 200px; /* Ensure minimum size */
      min-width: 200px; /* Ensure minimum size */
    }

    .page-13-win__game-card-content {
      padding: 20px;
      flex-grow: 1;
    }

    .page-13-win__game-card-title {
      font-size: 1.5em;
      color: #ffcc00;
      margin-bottom: 10px;
    }

    .page-13-win__game-card-description {
      font-size: 0.95em;
      color: #e0e0e0;
    }

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

    .page-13-win__list-item {
      background-color: #3a3a3a;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      display: flex;
      align-items: flex-start;
      gap: 15px;
      box-sizing: border-box; /* Crucial for mobile responsiveness */
    }

    .page-13-win__list-item-icon-wrapper {
        flex-shrink: 0;
        width: 60px; /* Larger icon wrapper */
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #ffcc00;
        border-radius: 50%;
        overflow: hidden;
    }

    .page-13-win__list-item-icon {
        width: 100%; /* Icon fills wrapper */
        height: 100%;
        object-fit: cover;
        max-width: 200px; /* Ensure minimum size adherence */
        max-height: 200px;
        min-width: 200px;
        min-height: 200px;
    }

    .page-13-win__list-item-content {
      flex-grow: 1;
    }

    .page-13-win__list-item-title {
      color: #ffcc00;
      font-size: 1.2em;
      margin-bottom: 5px;
    }

    .page-13-win__list-item-description {
      color: #e0e0e0;
      font-size: 0.9em;
    }

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

    .page-13-win__floating-button {
      background-color: #ff0000; /* Red for action */
      color: #fff;
      padding: 12px 25px;
      border-radius: 30px;
      text-align: center;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease;
      cursor: pointer;
      min-width: 120px; /* Ensure button is not too small */
      box-sizing: border-box;
    }

    .page-13-win__floating-button:hover {
      background-color: #cc0000;
    }

    /* FAQ Section Styles */
    .page-13-win__faq-section {
      background-color: #2a2a2a;
      padding: 40px 20px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      margin-top: 30px;
    }

    .page-13-win__faq-heading {
      font-size: 2.5em;
      color: #ffcc00;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-13-win__faq-heading::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #ffcc00;
      border-radius: 2px;
    }

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

    .page-13-win__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #4a4a4a;
      cursor: pointer;
      user-select: none;
      font-size: 1.1em;
      font-weight: bold;
      color: #f0f0f0;
      transition: background-color 0.3s ease;
    }

    .page-13-win__faq-question:hover {
      background-color: #5a5a5a;
    }

    .page-13-win__faq-question h3 {
      margin: 0;
      color: #f0f0f0; /* Ensure heading color is visible */
      pointer-events: none; /* Crucial for click event */
      flex-grow: 1;
    }

    .page-13-win__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      margin-left: 15px;
      color: #ffcc00;
      transition: transform 0.3s ease;
      pointer-events: none; /* Crucial for click event */
    }

    .page-13-win__faq-item.active .page-13-win__faq-toggle {
      transform: rotate(45deg); /* Rotate for minus sign effect */
    }

    .page-13-win__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;
      background-color: #3a3a3a;
      color: #e0e0e0;
    }

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

    .page-13-win__promo-banner {
      background-color: #ffcc00;
      color: #1a1a1a;
      padding: 25px 20px;
      text-align: center;
      border-radius: 10px;
      margin-top: 40px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-13-win__promo-banner h2 {
      font-size: 2em;
      margin-bottom: 10px;
      color: #1a1a1a;
    }

    .page-13-win__promo-banner p {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #333;
    }

    .page-13-win__promo-banner .page-13-win__cta-button {
      background-color: #ff0000;
      color: #fff;
    }
    .page-13-win__promo-banner .page-13-win__cta-button:hover {
      background-color: #cc0000;
    }


    /* Responsive Design */
    @media (max-width: 768px) {
      .page-13-win__hero-title {
        font-size: 2.5em;
      }

      .page-13-win__hero-subtitle {
        font-size: 1.2em;
      }

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

      .page-13-win__heading {
        font-size: 2em;
        margin-bottom: 30px;
      }

      .page-13-win__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-13-win__game-card-image-wrapper,
      .page-13-win__game-card-image {
        max-height: 180px;
        min-height: 180px;
      }

      .page-13-win__list {
        grid-template-columns: 1fr; /* Single column for list items */
        gap: 15px;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-13-win__list-item {
        flex-direction: column; /* Stack icon and content */
        align-items: center;
        text-align: center;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important; /* Ensure text wraps */
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-13-win__list-item-icon-wrapper {
        margin-bottom: 10px;
      }

      .page-13-win__faq-question {
        padding: 15px 20px;
        font-size: 1em;
      }

      .page-13-win__faq-answer {
        padding: 15px 20px !important;
      }

      .page-13-win__faq-heading {
        font-size: 2em;
      }

      .page-13-win__promo-banner h2 {
        font-size: 1.5em;
      }

      .page-13-win__promo-banner p {
        font-size: 1em;
      }

      .page-13-win__floating-buttons {
        bottom: 10px;
        right: 10px;
        flex-direction: row; /* Buttons side-by-side on mobile */
        width: calc(100% - 20px);
        justify-content: center;
      }

      .page-13-win__floating-button {
        flex: 1; /* Distribute space evenly */
        padding: 10px 15px;
        font-size: 0.9em;
        min-width: unset;
      }
    }

    @media (max-width: 480px) {
      .page-13-win__hero-title {
        font-size: 2em;
      }
      .page-13-win__hero-subtitle {
        font-size: 1em;
      }
      .page-13-win__heading {
        font-size: 1.8em;
      }
      .page-13-win__game-card-title {
        font-size: 1.3em;
      }
      .page-13-win__list-item-title {
        font-size: 1.1em;
      }
    }
  