
    /* Base styles for the page */
    .page-linksunwin {
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding: 0;
      margin: 0;
    }

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

    @media (max-width: 768px) {
      .page-linksunwin-container {
        padding: 10px;
      }
    }

    /* Section styling */
    .page-linksunwin-section {
      background-color: #ffffff;
      padding: 30px 20px;
      margin-bottom: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    .page-linksunwin-section h1 {
        color: #D32F2F; /* Red for main heading */
        text-align: center;
        margin-bottom: 30px;
        font-size: 2.5em;
        font-weight: 800;
    }

    .page-linksunwin-section h2 {
      color: #D32F2F; /* Red for subheadings */
      text-align: center;
      margin-bottom: 25px;
      font-weight: 700;
      font-size: 2em;
    }
    
    .page-linksunwin-section h3 {
      color: #333;
      font-weight: 600;
      font-size: 1.2em;
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-linksunwin-section p {
      margin-bottom: 15px;
      text-align: justify;
      color: #555;
    }

    .page-linksunwin-section ul,
    .page-linksunwin-section ol {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-linksunwin-section ul li,
    .page-linksunwin-section ol li {
      background: #f0f0f0;
      margin-bottom: 10px;
      padding: 15px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    }

    .page-linksunwin-section ul li::before {
      content: '✓';
      color: #28a745; /* Green checkmark */
      font-weight: bold;
      margin-right: 10px;
      font-size: 1.2em;
    }

    .page-linksunwin-section ol li::before {
      content: counter(list-item) ".";
      counter-increment: list-item;
      color: #007bff; /* Blue number */
      font-weight: bold;
      margin-right: 10px;
      font-size: 1.2em;
    }

    /* Banner styling */
    .page-linksunwin-banner {
      position: relative;
      width: 100%;
      overflow: hidden;
      margin-bottom: 20px;
      border-radius: 10px;
    }

    .page-linksunwin-banner img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 10px;
    }
    
    .page-linksunwin-banner-text {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.6);
        color: #fff;
        padding: 15px 10px;
        text-align: center;
        font-size: 1.1em;
        font-weight: bold;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    @media (max-width: 768px) {
        .page-linksunwin-banner-text {
            font-size: 0.9em;
            padding: 10px 5px;
        }
    }

    /* Floating buttons */
    .page-linksunwin-floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 0;
      right: 0;
      display: flex;
      justify-content: center;
      gap: 15px;
      padding: 0 10px;
      z-index: 1000;
    }

    .page-linksunwin-btn {
      display: block;
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      text-align: center;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      white-space: nowrap; /* Prevent text wrapping */
    }

    .page-linksunwin-btn-register {
      background-color: #FFC107; /* Bright yellow for register */
      color: #333;
    }

    .page-linksunwin-btn-register:hover {
      background-color: #e0a800;
      transform: translateY(-2px);
    }

    .page-linksunwin-btn-login {
      background-color: #007bff; /* Blue for login */
      color: #fff;
    }

    .page-linksunwin-btn-login:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    @media (max-width: 768px) {
      .page-linksunwin-floating-buttons {
        bottom: 10px;
        gap: 10px;
        flex-direction: column; /* Stack buttons vertically on small screens */
        align-items: center;
      }
      .page-linksunwin-btn {
        width: 90%; /* Make buttons wider */
        max-width: 300px;
        font-size: 1em;
        padding: 12px 20px;
      }
    }
    
    /* Product display styling */
    .page-linksunwin-product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 20px;
      justify-items: center; /* Center items in the grid */
    }

    .page-linksunwin-product-item {
      text-align: center;
      background-color: #fdfdfd;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      transition: transform 0.2s ease;
    }

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

    .page-linksunwin-product-item img {
      max-width: 100%;
      height: auto;
      border-radius: 5px;
      margin-bottom: 10px;
    }

    /* Call to Action */
    .page-linksunwin-cta {
        text-align: center;
        padding: 40px 20px;
        background-color: #D32F2F; /* Red background for CTA */
        color: #fff;
        border-radius: 10px;
        margin-top: 30px;
    }

    .page-linksunwin-cta h2 {
        color: #fff;
        margin-bottom: 20px;
    }

    .page-linksunwin-cta p {
        font-size: 1.1em;
        margin-bottom: 30px;
    }

    .page-linksunwin-cta .page-linksunwin-btn {
        background-color: #FFC107; /* Bright yellow button */
        color: #333;
        padding: 15px 30px;
        font-size: 1.2em;
        border-radius: 50px;
        display: inline-block;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-linksunwin-cta .page-linksunwin-btn:hover {
        background-color: #e0a800;
        transform: translateY(-3px);
    }
  