
    :root {
      --primary-color: #e0b04a; /* Golden/Amber for gambling site */
      --secondary-color: #3a3a3a; /* Dark grey */
      --background-dark: #1a1a1a; /* Very dark background */
      --text-light: #ffffff;
      --text-dark: #cccccc;
      --accent-color: #00bcd4; /* A contrasting accent */
      --border-color: #444444;
      --header-offset: 122px; /* Default offset, will be overridden by shared.css */
    }

    /* Base styles for the page-mcw-110h-9a scope */
    .page-mcw-110h-9a {
      font-family: 'Arial', sans-serif;
      color: var(--text-light);
      background-color: var(--background-dark);
      line-height: 1.6;
      padding-top: 10px; /* Small top padding for aesthetic spacing, assuming body handles main header offset */
      padding-bottom: 50px;
    }

    .page-mcw-110h-9a__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-mcw-110h-9a__section--dark {
      background-color: var(--secondary-color);
    }

    .page-mcw-110h-9a__title {
      color: var(--primary-color);
      font-size: 2.8em;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-mcw-110h-9a__subtitle {
      color: var(--text-light);
      font-size: 1.8em;
      margin-bottom: 30px;
      font-weight: normal;
    }

    .page-mcw-110h-9a__text {
      font-size: 1.1em;
      color: var(--text-dark);
      margin-bottom: 20px;
    }

    .page-mcw-110h-9a__button {
      display: inline-block;
      background-color: var(--primary-color);
      color: var(--background-dark);
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-mcw-110h-9a__button:hover {
      background-color: #f0c05a;
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-mcw-110h-9a__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:casino,gaming,abstract,mcw-110h-9a]') center center/cover no-repeat;
      padding: 80px 20px;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 400px;
    }

    .page-mcw-110h-9a__hero-title {
      font-size: 3.5em;
      color: var(--primary-color);
      margin-bottom: 15px;
      line-height: 1.2;
      font-weight: bold;
    }

    .page-mcw-110h-9a__hero-description {
      font-size: 1.3em;
      color: var(--text-light);
      max-width: 800px;
      margin-bottom: 30px;
    }

    /* Features Section */
    .page-mcw-110h-9a__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-mcw-110h-9a__feature-item {
      background-color: var(--secondary-color);
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Required for list items */
    }

    .page-mcw-110h-9a__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-mcw-110h-9a__feature-icon {
      width: 250px; /* Minimum 200px */
      height: auto;
      margin-bottom: 20px;
      border-radius: 8px;
      object-fit: cover;
      max-width: 100%; /* Responsive image */
    }

    .page-mcw-110h-9a__feature-title {
      color: var(--primary-color);
      font-size: 1.5em;
      margin-bottom: 10px;
    }

    .page-mcw-110h-9a__feature-description {
      color: var(--text-dark);
      font-size: 0.95em;
    }

    /* Game Providers Section */
    .page-mcw-110h-9a__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .page-mcw-110h-9a__provider-logo {
      background-color: var(--secondary-color);
      padding: 15px;
      border-radius: 8px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 120px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      box-sizing: border-box; /* Required for list items */
    }

    .page-mcw-110h-9a__provider-img {
      max-width: 100%;
      max-height: 90px;
      height: auto;
      object-fit: contain;
      border-radius: 4px;
      min-width: 200px; /* Enforce minimum size */
      min-height: 200px; /* Enforce minimum size */
    }

    /* Call to Action Section */
    .page-mcw-110h-9a__cta-section {
      background-color: var(--primary-color);
      padding: 50px 20px;
      text-align: center;
    }

    .page-mcw-110h-9a__cta-title {
      color: var(--background-dark);
      font-size: 2.2em;
      margin-bottom: 20px;
    }

    .page-mcw-110h-9a__cta-text {
      color: var(--background-dark);
      font-size: 1.1em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-mcw-110h-9a__cta-button {
      background-color: var(--background-dark);
      color: var(--primary-color);
      padding: 18px 40px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-mcw-110h-9a__cta-button:hover {
      background-color: #333333;
      color: #f0c05a;
      transform: translateY(-2px);
    }

    /* FAQ Section */
    .page-mcw-110h-9a__faq-section {
      padding: 60px 20px;
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }

    .page-mcw-110h-9a__faq-title {
      color: var(--primary-color);
      font-size: 2.5em;
      margin-bottom: 40px;
    }

    .page-mcw-110h-9a__faq-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-mcw-110h-9a__faq-item {
      background-color: var(--secondary-color);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      box-sizing: border-box; /* Required for list items */
    }

    .page-mcw-110h-9a__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      cursor: pointer;
      background-color: #2b2b2b;
      color: var(--primary-color);
      font-size: 1.2em;
      font-weight: bold;
      border-bottom: 1px solid var(--border-color);
      user-select: none;
    }

    .page-mcw-110h-9a__faq-question h3 {
      margin: 0;
      color: var(--primary-color);
      font-size: 1.2em; /* Ensure contrast */
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-mcw-110h-9a__faq-toggle {
      font-size: 1.5em;
      color: var(--primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

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

    .page-mcw-110h-9a__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding */
      opacity: 0;
      color: var(--text-dark);
      text-align: left;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

    .page-mcw-110h-9a__faq-item.active .page-mcw-110h-9a__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px !important; /* Final padding */
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-mcw-110h-9a__hero-title {
        font-size: 2.5em;
      }

      .page-mcw-110h-9a__hero-description {
        font-size: 1em;
      }

      .page-mcw-110h-9a__title {
        font-size: 2em;
      }

      .page-mcw-110h-9a__subtitle {
        font-size: 1.4em;
      }

      .page-mcw-110h-9a__section {
        padding: 30px 15px;
      }

      .page-mcw-110h-9a__features-grid,
      .page-mcw-110h-9a__providers-grid {
        grid-template-columns: 1fr;
      }
      
      /* List Item Responsive Requirements */
      .page-mcw-110h-9a__feature-item,
      .page-mcw-110h-9a__provider-logo,
      .page-mcw-110h-9a__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important; /* Adjust padding for mobile */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-mcw-110h-9a__feature-description,
      .page-mcw-110h-9a__faq-answer {
        word-break: break-word !important;
      }

      .page-mcw-110h-9a__feature-icon,
      .page-mcw-110h-9a__provider-img {
        max-width: 100% !important;
        height: auto !important;
        min-width: 200px !important; /* Ensure min size is kept */
        min-height: 200px !important; /* Ensure min size is kept */
      }

      .page-mcw-110h-9a__cta-title {
        font-size: 1.8em;
      }

      .page-mcw-110h-9a__faq-question {
        padding: 15px;
        font-size: 1.1em;
      }
      .page-mcw-110h-9a__faq-question h3 {
        font-size: 1.1em;
      }
      .page-mcw-110h-9a__faq-answer {
        padding: 0 15px;
      }
      .page-mcw-110h-9a__faq-item.active .page-mcw-110h-9a__faq-answer {
        padding: 15px !important;
      }
    }
  