
    :root {
      --page-79win-primary-color: #ffcc00; /* Gold */
      --page-79win-secondary-color: #333333; /* Dark Grey */
      --page-79win-background-color: #1a1a1a; /* Very Dark Grey */
      --page-79win-text-color: #f0f0f0; /* Light Grey */
      --page-79win-accent-color: #e60000; /* Red for emphasis */
      --page-79win-button-bg: #ffcc00;
      --page-79win-button-text: #1a1a1a;
    }

    .page-79win {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-79win-text-color);
      background-color: var(--page-79win-background-color);
      padding-bottom: 80px; /* Space for fixed button */
    }

    .page-79win-section {
      padding: 20px 15px;
      margin-bottom: 20px;
      background-color: var(--page-79win-secondary-color);
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-79win-section:nth-child(even) {
      background-color: #2a2a2a;
    }

    .page-79win-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-79win-header {
      text-align: center;
      padding: 20px 0;
      background-color: var(--page-79win-secondary-color);
      border-bottom: 2px solid var(--page-79win-primary-color);
      margin-bottom: 20px;
    }

    .page-79win-header h1 {
      color: var(--page-79win-primary-color);
      font-size: 2.2em;
      margin-bottom: 10px;
      line-height: 1.2;
    }

    .page-79win-header p {
      font-size: 1.1em;
      color: var(--page-79win-text-color);
    }

    .page-79win-banner {
      width: 100%;
      height: 200px; /* Adjust height for mobile */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #000;
      margin-bottom: 20px;
    }

    .page-79win-banner img {
      width: 100%;
      height: auto;
      object-fit: cover;
      min-height: 100%;
    }

    .page-79win-cta-button {
      display: inline-block;
      background-color: var(--page-79win-button-bg);
      color: var(--page-79win-button-text);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      margin-top: 15px;
      border: none;
      cursor: pointer;
    }

    .page-79win-cta-button:hover {
      background-color: #e6b800;
    }

    .page-79win-floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-79win-accent-color);
      color: #ffffff;
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      z-index: 1000;
      transition: transform 0.3s ease;
      animation: pulse 2s infinite;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .page-79win-floating-button:hover {
      transform: scale(1.05);
    }

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

    .page-79win-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 15px;
      margin-top: 20px;
    }

    .page-79win-grid-item {
      background-color: #2a2a2a;
      border-radius: 8px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      transition: transform 0.2s ease;
      text-decoration: none;
      color: var(--page-79win-text-color);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
    }

    .page-79win-grid-item:hover {
      transform: translateY(-5px);
    }

    .page-79win-grid-item img {
      width: 100%;
      height: 120px;
      object-fit: cover;
      border-bottom: 1px solid #444;
    }

    .page-79win-grid-item h3 {
      font-size: 1.1em;
      color: var(--page-79win-primary-color);
      margin: 10px 5px;
      flex-grow: 1;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .page-79win-grid-item p {
      font-size: 0.9em;
      color: #bbb;
      padding: 0 10px 10px;
    }

    .page-79win h2 {
      color: var(--page-79win-primary-color);
      text-align: center;
      margin-bottom: 25px;
      font-size: 1.8em;
      position: relative;
      padding-bottom: 10px;
    }

    .page-79win h2::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: var(--page-79win-accent-color);
      border-radius: 2px;
    }

    .page-79win h3 {
      color: var(--page-79win-primary-color);
      font-size: 1.4em;
      margin-top: 20px;
      margin-bottom: 10px;
    }

    .page-79win ul {
      list-style: none;
      padding-left: 0;
    }

    .page-79win ul li {
      margin-bottom: 8px;
      padding-left: 25px;
      position: relative;
    }

    .page-79win ul li::before {
      content: '✔️';
      position: absolute;
      left: 0;
      color: var(--page-79win-primary-color);
    }

    .page-79win-payment-providers {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      margin-top: 20px;
    }

    .page-79win-payment-providers img {
      height: 40px;
      width: auto;
      max-width: 100px;
      object-fit: contain;
      background-color: #444;
      padding: 5px 10px;
      border-radius: 5px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    @media (min-width: 768px) {
      .page-79win-header h1 {
        font-size: 3em;
      }
      .page-79win-banner {
        height: 300px;
      }
      .page-79win-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      }
      .page-79win-grid-item img {
        height: 150px;
      }
      .page-79win-floating-button {
        bottom: 30px;
        right: 30px;
        font-size: 1.3em;
        padding: 18px 30px;
      }
    }
  