
    :root {
      --page-35-win-primary-color: #FFD700; /* Gold */
      --page-35-win-secondary-color: #B22222; /* Firebrick */
      --page-35-win-dark-bg: #1A1A1A; /* Dark Grey */
      --page-35-win-light-text: #FFFFFF;
      --page-35-win-gray-text: #CCCCCC;
      --page-35-win-accent-blue: #007BFF; /* Blue for highlights */
    }

    .page-35-win {
      font-family: 'Arial', sans-serif;
      color: var(--page-35-win-light-text);
      background-color: var(--page-35-win-dark-bg);
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    /* Header offset for the first section */
    .page-35-win__hero-section {
      padding-top: 10px; /* Small decorative padding, assuming body handles main offset */
      position: relative;
      overflow: hidden;
      background: linear-gradient(180deg, var(--page-35-win-dark-bg) 0%, #333333 100%);
    }

    .page-35-win__hero-content {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 40px 20px 60px;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-35-win__hero-title {
      font-size: 2.8em;
      color: var(--page-35-win-primary-color);
      margin-bottom: 15px;
      text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
      font-weight: bold;
    }

    .page-35-win__hero-subtitle {
      font-size: 1.3em;
      color: var(--page-35-win-light-text);
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-35-win__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto; /* Center the image */
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
      object-fit: cover;
    }

    .page-35-win__cta-button {
      display: inline-block;
      background-color: var(--page-35-win-secondary-color);
      color: var(--page-35-win-light-text);
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      margin-top: 20px;
    }

    .page-35-win__cta-button:hover {
      background-color: #CD5C5C; /* Lighter Firebrick */
      transform: translateY(-3px);
    }

    .page-35-win__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: center;
      gap: 15px;
      padding: 10px 20px;
      background-color: rgba(26, 26, 26, 0.95);
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
      z-index: 1000;
      box-sizing: border-box;
    }

    .page-35-win__floating-button {
      flex: 1;
      max-width: 180px;
      padding: 12px 15px;
      border-radius: 25px;
      font-size: 1.05em;
      font-weight: bold;
      text-align: center;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      color: var(--page-35-win-light-text);
    }

    .page-35-win__floating-button--register {
      background-color: var(--page-35-win-primary-color);
      color: var(--page-35-win-dark-bg);
    }

    .page-35-win__floating-button--register:hover {
      background-color: #FFEA70;
      transform: translateY(-2px);
    }

    .page-35-win__floating-button--login {
      background-color: var(--page-35-win-secondary-color);
    }

    .page-35-win__floating-button--login:hover {
      background-color: #CD5C5C;
      transform: translateY(-2px);
    }

    .page-35-win__section {
      padding: 60px 20px;
      text-align: center;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-35-win__section-title {
      font-size: 2.2em;
      color: var(--page-35-win-primary-color);
      margin-bottom: 40px;
      position: relative;
      display: inline-block;
    }

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

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

    .page-35-win__card {
      background-color: #2A2A2A;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-35-win__card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
    }

    .page-35-win__card-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
    }

    .page-35-win__card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }

    .page-35-win__card:hover .page-35-win__card-image {
      transform: scale(1.05);
    }

    .page-35-win__card-content {
      padding: 25px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-35-win__card-title {
      font-size: 1.5em;
      color: var(--page-35-win-primary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-35-win__card-description {
      font-size: 0.95em;
      color: var(--page-35-win-gray-text);
      margin-bottom: 20px;
    }

    .page-35-win__card-link {
      display: inline-block;
      color: var(--page-35-win-secondary-color);
      font-weight: bold;
      text-decoration: none;
      transition: color 0.3s ease;
      font-size: 0.9em;
    }

    .page-35-win__card-link:hover {
      color: var(--page-35-win-primary-color);
    }

    .page-35-win__feature-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      list-style: none;
      padding: 0;
      margin: 0 auto;
      max-width: 1000px;
    }

    .page-35-win__feature-item {
      background-color: #2A2A2A;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-35-win__feature-item:hover {
      background-color: #3A3A3A;
      transform: translateY(-5px);
    }

    .page-35-win__feature-icon {
      width: 100px; /* Min size 200x200, but icon itself can be smaller in design */
      height: 100px;
      margin-bottom: 20px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      object-fit: contain;
    }

    .page-35-win__feature-title {
      font-size: 1.4em;
      color: var(--page-35-win-primary-color);
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-35-win__feature-description {
      color: var(--page-35-win-gray-text);
      font-size: 0.95em;
    }

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

    .page-35-win__promo-card {
      background-color: #2A2A2A;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-35-win__promo-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
    }

    .page-35-win__promo-image-wrapper {
      width: 100%;
      height: 220px;
      overflow: hidden;
    }

    .page-35-win__promo-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }

    .page-35-win__promo-card:hover .page-35-win__promo-image {
      transform: scale(1.05);
    }

    .page-35-win__promo-content {
      padding: 25px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-35-win__promo-title {
      font-size: 1.6em;
      color: var(--page-35-win-primary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-35-win__promo-description {
      font-size: 0.95em;
      color: var(--page-35-win-gray-text);
      margin-bottom: 20px;
    }

    .page-35-win__promo-button {
      display: inline-block;
      background-color: var(--page-35-win-secondary-color);
      color: var(--page-35-win-light-text);
      padding: 10px 20px;
      border-radius: 6px;
      font-size: 0.9em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      margin-top: 15px;
    }

    .page-35-win__promo-button:hover {
      background-color: #CD5C5C;
      transform: translateY(-2px);
    }

    .page-35-win__text-block {
      max-width: 800px;
      margin: 0 auto 30px;
      text-align: center;
      color: var(--page-35-win-gray-text);
      font-size: 1.05em;
    }

    .page-35-win__faq-section {
      padding: 60px 20px;
      text-align: center;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-35-win__faq-list {
      margin-top: 40px;
      text-align: left;
    }

    .page-35-win__faq-item {
      background-color: #2A2A2A;
      border-radius: 12px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-35-win__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #333333;
      transition: background-color 0.3s ease;
    }

    .page-35-win__faq-question:hover {
      background-color: #444444;
    }

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

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

    .page-35-win__faq-item.active .page-35-win__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' visually */
    }

    .page-35-win__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: var(--page-35-win-gray-text);
      font-size: 0.95em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    .page-35-win__faq-answer p {
      margin-top: 0;
      margin-bottom: 1em;
    }
    .page-35-win__faq-answer p:last-child {
      margin-bottom: 0;
    }

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

      .page-35-win__hero-subtitle {
        font-size: 1.1em;
      }

      .page-35-win__section-title {
        font-size: 1.8em;
      }

      .page-35-win__grid,
      .page-35-win__feature-list,
      .page-35-win__promo-grid {
        grid-template-columns: 1fr;
      }

      .page-35-win__section {
        padding: 40px 15px;
      }

      .page-35-win__floating-buttons {
        gap: 10px;
        padding: 8px 15px;
      }

      .page-35-win__floating-button {
        font-size: 0.9em;
        padding: 10px 12px;
      }

      .page-35-win__card-image-wrapper,
      .page-35-win__promo-image-wrapper {
        height: 180px;
      }

      .page-35-win__faq-question {
        padding: 15px 20px;
      }

      .page-35-win__faq-question h3 {
        font-size: 1.1em;
      }

      .page-35-win__faq-answer {
        padding: 0 20px;
      }
      .page-35-win__faq-item.active .page-35-win__faq-answer {
        padding: 15px 20px !important;
      }

      /* List item specific responsive styles */
      .page-35-win__feature-list li {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important; /* Adjusted padding for mobile */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-35-win__feature-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-35-win__card,
      .page-35-win__promo-card {
        margin: 0 auto; /* Center single column cards */
        max-width: 400px; /* Optional: limit width for single cards on mobile */
      }
    }

    @media (max-width: 480px) {
      .page-35-win__hero-title {
        font-size: 1.8em;
      }

      .page-35-win__hero-subtitle {
        font-size: 0.95em;
      }

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

      .page-35-win__floating-buttons {
        flex-direction: column;
        gap: 8px;
        padding: 10px;
      }

      .page-35-win__floating-button {
        max-width: 100%;
        font-size: 0.9em;
      }

      .page-35-win__section-title {
        font-size: 1.6em;
      }

      .page-35-win__card-title {
        font-size: 1.3em;
      }

      .page-35-win__promo-title {
        font-size: 1.4em;
      }
    }
  