
    /* Base styles for the page, black background, yellow/white text */
    .page-cmd368 {
      font-family: 'Arial', sans-serif;
      background-color: #000000;
      color: #ffffff;
      line-height: 1.6;
      padding-bottom: 50px; /* Space for footer */
    }

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

    .page-cmd368__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-cmd368__section--dark {
      background-color: #1a1a1a;
    }

    .page-cmd368__title {
      color: #ffd700; /* Gold/Yellow */
      font-size: 2.5em;
      margin-bottom: 20px;
      text-transform: uppercase;
    }

    .page-cmd368__subtitle {
      color: #ffffff;
      font-size: 1.8em;
      margin-bottom: 15px;
    }

    .page-cmd368__text {
      font-size: 1.1em;
      color: #e0e0e0;
      margin-bottom: 20px;
    }

    .page-cmd368__button {
      display: inline-block;
      background-color: #ffd700;
      color: #000000;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, color 0.3s ease;
      cursor: pointer;
      border: none;
      font-size: 1.1em;
    }

    .page-cmd368__button:hover {
      background-color: #e6c200;
      color: #333333;
    }

    /* Hero Section */
    .page-cmd368__hero-section {
      position: relative;
      background-color: #000000;
      text-align: center;
      padding-top: 10px; /* Desktop safety zone */
      padding-bottom: 40px;
      overflow: hidden; /* Ensure image doesn't overflow */
    }

    .page-cmd368__hero-image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: contain; /* Maintain aspect ratio */
      margin: 0 auto; /* Center the image */
      max-width: 100%;
    }

    .page-cmd368__hero-content {
      position: relative;
      z-index: 2;
      padding: 20px 15px;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-cmd368__hero-title {
      font-size: 2.8em;
      color: #ffd700;
      margin-top: 20px;
      margin-bottom: 15px;
      line-height: 1.2;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-cmd368__hero-description {
      font-size: 1.2em;
      color: #ffffff;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

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

    .page-cmd368__game-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      padding: 20px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 250px;
    }

    .page-cmd368__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(255, 215, 0, 0.2);
    }

    .page-cmd368__game-card-image {
      width: 100%;
      height: 150px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 15px;
      max-width: 100%;
    }
    
    .page-cmd368__game-card-title {
      color: #ffd700;
      font-size: 1.4em;
      margin-bottom: 10px;
    }

    .page-cmd368__game-card-description {
      color: #e0e0e0;
      font-size: 0.95em;
    }

    /* Game Providers Section */
    .page-cmd368__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-cmd368__provider-item {
      background-color: #1a1a1a;
      border-radius: 8px;
      padding: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-cmd368__provider-item:hover {
      transform: scale(1.05);
      box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    }

    .page-cmd368__provider-logo {
      width: 100%;
      height: auto;
      max-width: 120px;
      object-fit: contain;
      max-height: 80px;
    }

    /* How To Section */
    .page-cmd368__steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
      text-align: left;
    }

    .page-cmd368__step-item {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      position: relative;
    }

    .page-cmd368__step-icon {
      font-size: 2.5em;
      color: #ffd700;
      margin-bottom: 15px;
      display: block;
    }

    .page-cmd368__step-title {
      color: #ffd700;
      font-size: 1.5em;
      margin-bottom: 10px;
    }

    .page-cmd368__step-description {
      color: #e0e0e0;
      font-size: 1em;
    }

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

    .page-cmd368__promo-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 25px;
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-cmd368__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(255, 215, 0, 0.2);
    }

    .page-cmd368__promo-title {
      color: #ffd700;
      font-size: 1.6em;
      margin-bottom: 10px;
    }

    .page-cmd368__promo-text {
      color: #e0e0e0;
      margin-bottom: 15px;
    }

    /* FAQ Section */
    .page-cmd368__faq-container {
      margin-top: 30px;
      text-align: left;
    }

    .page-cmd368__faq-item {
      background-color: #1a1a1a;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-cmd368__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #333333;
      color: #ffd700;
      cursor: pointer;
      user-select: none;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

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

    .page-cmd368__faq-question h3 {
      margin: 0;
      color: inherit;
      font-size: 1.1em; /* Ensure consistent font size */
      pointer-events: none; /* Crucial for click event on parent */
    }

    .page-cmd368__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Crucial for click event on parent */
    }

    .page-cmd368__faq-item.active .page-cmd368__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
      content: '−'; /* Change to minus sign */
    }

    .page-cmd368__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding */
      color: #e0e0e0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-cmd368__faq-item.active .page-cmd368__faq-answer {
      max-height: 2000px !important; /* Use !important as required */
      padding: 20px 25px !important; /* Use !important as required */
      opacity: 1;
    }

    /* General Image Styles */
    .page-cmd368 img {
      max-width: 100%;
      height: auto;
      display: block; /* Remove extra space below images */
      margin: 0 auto; /* Center images if they are smaller than container */
      box-sizing: border-box; /* Include padding and border in the element's total width and height */
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-cmd368__hero-section {
        padding-top: 10px; /* Mobile safety zone */
      }
      .page-cmd368__hero-title {
        font-size: 2em;
      }

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

      .page-cmd368__title {
        font-size: 2em;
      }

      .page-cmd368__subtitle {
        font-size: 1.5em;
      }

      .page-cmd368__game-categories,
      .page-cmd368__providers-grid,
      .page-cmd368__steps-grid,
      .page-cmd368__promo-grid {
        grid-template-columns: 1fr; /* Stack columns on mobile */
      }
      
      .page-cmd368__faq-question {
        padding: 15px 20px;
        font-size: 1em;
      }

      .page-cmd368__faq-question h3 {
        font-size: 1em;
      }

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

      /* Image responsive optimization for mobile */
      .page-cmd368 img {
        max-width: 100% !important;
        height: auto !important;
        width: 100% !important; /* Force width 100% on mobile */
        object-fit: contain !important; /* Ensure image fits without cropping */
      }
    }

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