
    :root {
      --page-c545-primary-color: #007bff;
      --page-c545-secondary-color: #6c757d;
      --page-c545-accent-color: #ffc107;
      --page-c545-dark-bg: #1a1a2e;
      --page-c545-light-bg: #ffffff;
      --page-c545-text-color: #e0e0e0;
      --page-c545-dark-text-color: #333333;
      --page-c545-border-color: #3e2f5b;
    }

    .page-c545 {
      font-family: 'Arial', sans-serif;
      color: var(--page-c545-text-color);
      background-color: var(--page-c545-dark-bg);
      line-height: 1.6;
      padding-top: 10px; /* Small padding, assuming body handles main header offset */
    }

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

    .page-c545__section {
      padding: 60px 20px;
      margin-bottom: 20px;
      text-align: center;
      background-color: var(--page-c545-dark-bg);
      border-radius: 8px;
      overflow: hidden;
    }

    .page-c545__section--light {
      background-color: #2a2a4a;
    }

    .page-c545__section-title {
      font-size: 2.8em;
      color: var(--page-c545-accent-color);
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-c545__section-subtitle {
      font-size: 1.5em;
      color: var(--page-c545-primary-color);
      margin-bottom: 40px;
    }

    .page-c545__section-description {
      font-size: 1.1em;
      max-width: 800px;
      margin: 0 auto 30px;
      color: var(--page-c545-text-color);
    }

    /* Hero Section */
    .page-c545__hero-section {
      position: relative;
      padding: 100px 20px;
      background-size: cover;
      background-position: center;
      color: #ffffff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      text-align: center;
    }

    .page-c545__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      opacity: 0.4;
    }

    .page-c545__hero-content {
      z-index: 1;
      max-width: 900px;
    }

    .page-c545__hero-title {
      font-size: 4em;
      margin-bottom: 20px;
      color: var(--page-c545-accent-color);
      line-height: 1.2;
    }

    .page-c545__hero-description {
      font-size: 1.5em;
      margin-bottom: 40px;
      color: #f0f0f0;
    }

    .page-c545__button {
      display: inline-block;
      background-color: var(--page-c545-primary-color);
      color: #ffffff;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

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

    .page-c545__button--secondary {
      background-color: var(--page-c545-accent-color);
      color: var(--page-c545-dark-text-color);
    }

    .page-c545__button--secondary:hover {
      background-color: #e0a800;
    }

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

    .page-c545__floating-button {
      background-color: var(--page-c545-primary-color);
      color: #ffffff;
      padding: 12px 25px;
      border-radius: 30px;
      font-weight: bold;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      cursor: pointer;
      border: none;
    }

    .page-c545__floating-button:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    /* Games Grid */
    .page-c545__games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-c545__game-card {
      background-color: #2a2a4a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
      box-sizing: border-box; /* Important for responsive lists */
    }

    .page-c545__game-card:hover {
      transform: translateY(-5px);
    }

    .page-c545__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      box-sizing: border-box;
    }

    .page-c545__game-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-c545__game-title {
      font-size: 1.6em;
      color: var(--page-c545-accent-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-c545__game-description {
      font-size: 0.95em;
      color: #c0c0c0;
      margin-bottom: 15px;
    }

    /* Promotions */
    .page-c545__promotions-list {
      display: flex;
      flex-direction: column;
      gap: 25px;
      margin-top: 40px;
    }

    .page-c545__promotion-item {
      display: flex;
      align-items: center;
      background-color: #2a2a4a;
      border-radius: 10px;
      padding: 25px;
      text-align: left;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      box-sizing: border-box; /* Important for responsive lists */
    }

    .page-c545__promotion-image {
      width: 150px;
      height: 100px;
      object-fit: cover;
      border-radius: 8px;
      margin-right: 25px;
      flex-shrink: 0;
      box-sizing: border-box;
    }

    .page-c545__promotion-content {
      flex-grow: 1;
    }

    .page-c545__promotion-title {
      font-size: 1.8em;
      color: var(--page-c545-primary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-c545__promotion-description {
      font-size: 1.05em;
      color: #c0c0c0;
    }

    .page-c545__promotion-link {
      color: var(--page-c545-accent-color);
      text-decoration: none;
      font-weight: bold;
      margin-top: 15px;
      display: inline-block;
    }

    .page-c545__promotion-link:hover {
      text-decoration: underline;
    }

    /* Features List */
    .page-c545__features-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 40px;
      list-style: none;
      padding: 0;
    }

    .page-c545__feature-item {
      background-color: #2a2a4a;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      text-align: center;
      box-sizing: border-box; /* Important for responsive lists */
    }

    .page-c545__feature-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 15px;
      object-fit: contain;
      box-sizing: border-box;
    }

    .page-c545__feature-title {
      font-size: 1.5em;
      color: var(--page-c545-accent-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-c545__feature-description {
      font-size: 1em;
      color: #c0c0c0;
    }

    /* Providers & Payments */
    .page-c545__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 30px;
      margin-top: 40px;
      justify-items: center;
      align-items: center;
    }

    .page-c545__logo-item {
      background-color: #2a2a4a;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px;
      width: 100%; /* Ensure logos take full width of grid cell */
      max-width: 200px; /* Max width for individual logo item */
      box-sizing: border-box;
    }

    .page-c545__logo-image {
      max-width: 100%;
      max-height: 60px;
      object-fit: contain;
      filter: grayscale(80%); /* Example: slightly desaturate logos */
      transition: filter 0.3s ease;
      box-sizing: border-box;
    }

    .page-c545__logo-image:hover {
      filter: grayscale(0%);
    }

    /* FAQ Section */
    .page-c545__faq-section {
      padding: 60px 20px;
      background-color: var(--page-c545-dark-bg);
      border-radius: 8px;
    }

    .page-c545__faq-list {
      max-width: 800px;
      margin: 40px auto 0;
      text-align: left;
    }

    .page-c545__faq-item {
      background-color: #2a2a4a;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
    }

    .page-c545__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #3e2f5b;
      color: var(--page-c545-text-color);
      font-size: 1.2em;
      font-weight: bold;
      user-select: none;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-c545__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      color: var(--page-c545-text-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-c545__faq-question:hover {
      background-color: #4c3a72;
    }

    .page-c545__faq-toggle {
      font-size: 1.5em;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
      color: var(--page-c545-accent-color);
    }

    .page-c545__faq-item.active .page-c545__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
    }

    .page-c545__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: #c0c0c0;
      font-size: 1.0em;
      box-sizing: border-box;
    }

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

    /* Responsive Design */
    @media (max-width: 992px) {
      .page-c545__hero-title {
        font-size: 3.2em;
      }

      .page-c545__hero-description {
        font-size: 1.3em;
      }

      .page-c545__section-title {
        font-size: 2.2em;
      }

      .page-c545__promotion-item {
        flex-direction: column;
        text-align: center;
      }

      .page-c545__promotion-image {
        margin: 0 0 20px 0;
      }
    }

    @media (max-width: 768px) {
      .page-c545__hero-section {
        padding: 80px 20px;
        min-height: 400px;
      }

      .page-c545__hero-title {
        font-size: 2.5em;
      }

      .page-c545__hero-description {
        font-size: 1.1em;
      }

      .page-c545__section {
        padding: 40px 15px;
      }

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

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

      .page-c545__section-description {
        font-size: 1em;
      }

      .page-c545__button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-c545__floating-buttons {
        flex-direction: row;
        width: calc(100% - 40px);
        bottom: 10px;
        right: 20px;
        left: 20px;
        justify-content: space-around;
        gap: 10px;
      }

      .page-c545__floating-button {
        flex: 1;
        padding: 10px 15px;
        font-size: 0.9em;
        text-align: center;
      }

      .page-c545__games-grid,
      .page-c545__features-list,
      .page-c545__logo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      /* List item mobile responsiveness */
      .page-c545__games-grid .page-c545__game-card,
      .page-c545__promotions-list .page-c545__promotion-item,
      .page-c545__features-list .page-c545__feature-item,
      .page-c545__logo-grid .page-c545__logo-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-c545__games-grid,
      .page-c545__promotions-list,
      .page-c545__features-list,
      .page-c545__logo-grid,
      .page-c545__faq-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-c545__faq-question,
      .page-c545__faq-answer {
        padding-left: 15px !important;
        padding-right: 15px !important;
      }

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

      .page-c545__faq-answer {
        font-size: 0.95em;
      }

      .page-c545__promotion-image {
        width: 100%;
        height: auto;
        max-height: 150px;
      }

      .page-c545__feature-icon {
        width: 60px;
        height: 60px;
      }

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

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

      .page-c545__promotion-title {
        font-size: 1.5em;
      }
      
      .page-c545__section-description,
      .page-c545__game-description,
      .page-c545__promotion-description,
      .page-c545__feature-description {
          word-wrap: break-word !important;
          overflow-wrap: break-word !important;
          word-break: break-word !important;
      }
    }
  