
    :root {
      --page-13-win-cc-primary-color: #0d1a26; /* Dark blue/black for background */
      --page-13-win-cc-secondary-color: #f7b32b; /* Gold/yellow for accents */
      --page-13-win-cc-text-color: #e0e0e0; /* Light grey for text */
      --page-13-win-cc-light-text-color: #ffffff; /* White for important text */
      --page-13-win-cc-border-color: #2a3d4f; /* Darker blue for borders */
      --page-13-win-cc-button-bg: #f7b32b;
      --page-13-win-cc-button-text: #0d1a26;
      --page-13-win-cc-hover-bg: #e6a21a;
      --page-13-win-cc-faq-bg: #1a2c3e;
      --page-13-win-cc-faq-border: #3a4f64;
    }

    .page-13-win-cc {
      font-family: 'Arial', sans-serif;
      background-color: var(--page-13-win-cc-primary-color);
      color: var(--page-13-win-cc-text-color);
      line-height: 1.6;
      overflow-x: hidden;
      padding-top: 10px; /* Small padding, assuming body has header offset */
    }

    .page-13-win-cc * {
      box-sizing: border-box;
    }

    .page-13-win-cc__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-13-win-cc__section--dark {
      background-color: var(--page-13-win-cc-faq-bg);
      border-top: 1px solid var(--page-13-win-cc-border-color);
      border-bottom: 1px solid var(--page-13-win-cc-border-color);
    }

    .page-13-win-cc__heading {
      color: var(--page-13-win-cc-light-text-color);
      margin-bottom: 20px;
      font-size: 2.5em;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .page-13-win-cc__subheading {
      color: var(--page-13-win-cc-secondary-color);
      margin-bottom: 15px;
      font-size: 1.8em;
      font-weight: 600;
    }

    .page-13-win-cc__paragraph {
      margin-bottom: 20px;
      font-size: 1.1em;
    }

    .page-13-win-cc__button {
      display: inline-block;
      padding: 12px 25px;
      background-color: var(--page-13-win-cc-button-bg);
      color: var(--page-13-win-cc-button-text);
      text-decoration: none;
      border-radius: 8px;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-13-win-cc__button:hover {
      background-color: var(--page-13-win-cc-hover-bg);
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-13-win-cc__hero-section {
      position: relative;
      padding: 80px 20px 60px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 500px;
      text-align: center;
      background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)); /* Overlay for text readability */
    }

    .page-13-win-cc__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
    }

    .page-13-win-cc__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
    }

    .page-13-win-cc__hero-title {
      font-size: 3.5em;
      color: var(--page-13-win-cc-light-text-color);
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .page-13-win-cc__hero-subtitle {
      font-size: 1.5em;
      color: var(--page-13-win-cc-secondary-color);
      margin-bottom: 30px;
      font-weight: normal;
    }

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

    .page-13-win-cc__floating-button {
      padding: 10px 20px;
      border-radius: 50px;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      font-size: 1em;
    }

    .page-13-win-cc__button-register {
      background-color: #4CAF50; /* Green for register */
      color: white;
    }

    .page-13-win-cc__button-register:hover {
      background-color: #45a049;
      transform: scale(1.05);
    }

    .page-13-win-cc__button-login {
      background-color: #2196F3; /* Blue for login */
      color: white;
    }

    .page-13-win-cc__button-login:hover {
      background-color: #1976D2;
      transform: scale(1.05);
    }

    /* Game Categories */
    .page-13-win-cc__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-13-win-cc__category-item {
      background-color: var(--page-13-win-cc-faq-bg);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      border: 1px solid var(--page-13-win-cc-border-color);
      padding-bottom: 20px;
    }

    .page-13-win-cc__category-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }

    .page-13-win-cc__category-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      margin-bottom: 15px;
    }

    .page-13-win-cc__category-title {
      color: var(--page-13-win-cc-secondary-color);
      font-size: 1.5em;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-13-win-cc__category-description {
      font-size: 0.95em;
      color: var(--page-13-win-cc-text-color);
      padding: 0 15px;
      margin-bottom: 20px;
    }

    /* Promotions */
    .page-13-win-cc__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-13-win-cc__promotion-card {
      background-color: var(--page-13-win-cc-faq-bg);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
      text-align: left;
      border: 1px solid var(--page-13-win-cc-border-color);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-13-win-cc__promotion-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }

    .page-13-win-cc__promotion-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }

    .page-13-win-cc__promotion-content {
      padding: 20px;
    }

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

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

    /* Why Choose Us */
    .page-13-win-cc__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-13-win-cc__feature-item {
      background-color: var(--page-13-win-cc-faq-bg);
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
      text-align: center;
      border: 1px solid var(--page-13-win-cc-border-color);
      transition: transform 0.3s ease;
    }
    
    .page-13-win-cc__feature-item:hover {
        transform: translateY(-5px);
    }

    .page-13-win-cc__feature-icon {
      width: 80px;
      height: 80px;
      object-fit: contain;
      margin-bottom: 20px;
    }

    .page-13-win-cc__feature-title {
      color: var(--page-13-win-cc-secondary-color);
      font-size: 1.3em;
      margin-bottom: 10px;
    }

    .page-13-win-cc__feature-description {
      font-size: 0.9em;
      color: var(--page-13-win-cc-text-color);
    }

    /* Payment and Providers */
    .page-13-win-cc__logos-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      margin-top: 30px;
      align-items: center;
      justify-items: center;
    }

    .page-13-win-cc__logo-item {
      background-color: var(--page-13-win-cc-faq-bg);
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
      border: 1px solid var(--page-13-win-cc-border-color);
      width: 100%;
      max-width: 160px; /* Limit max width for logos */
      height: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .page-13-win-cc__logo-image {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      height: auto;
    }

    /* FAQ Section */
    .page-13-win-cc__faq-list {
      margin-top: 30px;
      text-align: left;
    }

    .page-13-win-cc__faq-item {
      background-color: var(--page-13-win-cc-faq-bg);
      border: 1px solid var(--page-13-win-cc-faq-border);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
    }

    .page-13-win-cc__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: var(--page-13-win-cc-faq-bg);
      color: var(--page-13-win-cc-light-text-color);
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

    .page-13-win-cc__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
      color: inherit; /* Ensure h3 text color is inherited */
      font-size: 1em; /* Adjust to match parent font size */
    }

    .page-13-win-cc__faq-question:hover {
      background-color: #2a3d4f;
    }

    .page-13-win-cc__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click on parent */
    }

    .page-13-win-cc__faq-item.active .page-13-win-cc__faq-toggle {
      transform: rotate(45deg); /* Plus to X (minus) */
    }

    .page-13-win-cc__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: var(--page-13-win-cc-text-color);
      font-size: 0.95em;
    }

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

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-13-win-cc__hero-title {
        font-size: 3em;
      }
      .page-13-win-cc__hero-subtitle {
        font-size: 1.3em;
      }
      .page-13-win-cc__heading {
        font-size: 2em;
      }
      .page-13-win-cc__subheading {
        font-size: 1.6em;
      }
    }

    @media (max-width: 768px) {
      .page-13-win-cc__section {
        padding: 30px 15px;
      }
      .page-13-win-cc__hero-section {
        padding: 60px 15px 40px;
        min-height: 400px;
      }
      .page-13-win-cc__hero-title {
        font-size: 2.5em;
      }
      .page-13-win-cc__hero-subtitle {
        font-size: 1.1em;
      }
      .page-13-win-cc__heading {
        font-size: 1.8em;
      }
      .page-13-win-cc__subheading {
        font-size: 1.4em;
      }
      .page-13-win-cc__paragraph {
        font-size: 1em;
      }
      .page-13-win-cc__button {
        padding: 10px 20px;
        font-size: 0.95em;
      }

      /* Floating buttons */
      .page-13-win-cc__floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 8px;
      }
      .page-13-win-cc__floating-button {
        padding: 8px 18px;
        font-size: 0.9em;
      }

      /* Game Categories */
      .page-13-win-cc__game-categories,
      .page-13-win-cc__promotions-grid,
      .page-13-win-cc__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-13-win-cc__category-image,
      .page-13-win-cc__promotion-image {
        height: 180px;
      }
      .page-13-win-cc__category-title,
      .page-13-win-cc__promotion-title {
        font-size: 1.3em;
      }

      /* List item responsive requirements (applied to category/promotion/feature items) */
      .page-13-win-cc__game-categories > *,
      .page-13-win-cc__promotions-grid > *,
      .page-13-win-cc__features-grid > *,
      .page-13-win-cc__logos-grid > * {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px !important; /* Adjust padding to avoid excessive inner spacing */
        padding-right: 15px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      /* Logos grid */
      .page-13-win-cc__logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 15px;
      }
      .page-13-win-cc__logo-item {
        height: 80px;
        padding: 10px;
      }

      /* FAQ */
      .page-13-win-cc__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }
      .page-13-win-cc__faq-answer {
        padding: 0 15px;
        font-size: 0.9em;
      }
      .page-13-win-cc__faq-item.active .page-13-win-cc__faq-answer {
        padding: 15px 15px !important;
      }
    }

    @media (max-width: 480px) {
      .page-13-win-cc__hero-title {
        font-size: 2em;
      }
      .page-13-win-cc__hero-subtitle {
        font-size: 1em;
      }
      .page-13-win-cc__heading {
        font-size: 1.6em;
      }
      .page-13-win-cc__subheading {
        font-size: 1.2em;
      }
      .page-13-win-cc__button {
        padding: 8px 15px;
        font-size: 0.9em;
      }
    }
  