
    :root {
      --primary-color: #FFD700; /* Gold */
      --secondary-color: #4CAF50; /* Green */
      --dark-background: #1a1a1a;
      --light-text: #f0f0f0;
      --accent-color: #e91e63; /* Pink */
      --border-radius: 8px;
    }

    .page-spin-ph-slot-2 {
      font-family: 'Arial', sans-serif;
      color: var(--light-text);
      background-color: var(--dark-background);
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback if body padding is not set */
    }

    .page-spin-ph-slot-2__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-spin-ph-slot-2__hero-section {
      background: linear-gradient(135deg, #1a1a1a, #333333);
      padding: 60px 20px 80px;
      position: relative;
      overflow: hidden;
      padding-top: 10px; /* Small top padding for visual separation from header */
    }

    .page-spin-ph-slot-2__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 1;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-spin-ph-slot-2__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }

    .page-spin-ph-slot-2__hero-title {
      font-size: 3.5em;
      color: var(--primary-color);
      margin-bottom: 20px;
      line-height: 1.2;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-spin-ph-slot-2__hero-subtitle {
      font-size: 1.5em;
      color: var(--light-text);
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-spin-ph-slot-2__cta-button {
      background-color: var(--secondary-color);
      color: var(--dark-background);
      padding: 15px 30px;
      border-radius: var(--border-radius);
      font-size: 1.2em;
      font-weight: bold;
      text-transform: uppercase;
      transition: background-color 0.3s ease;
      display: inline-block;
      cursor: pointer;
      border: none;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-spin-ph-slot-2__cta-button:hover {
      background-color: #66BB6A;
    }

    .page-spin-ph-slot-2__section-title {
      font-size: 2.5em;
      color: var(--primary-color);
      margin-bottom: 30px;
      text-align: center;
      position: relative;
      padding-bottom: 10px;
    }

    .page-spin-ph-slot-2__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--secondary-color);
      border-radius: 2px;
    }

    .page-spin-ph-slot-2__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: var(--light-text);
      text-align: left;
    }

    .page-spin-ph-slot-2__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-spin-ph-slot-2__grid-item {
      background-color: #2a2a2a;
      padding: 25px;
      border-radius: var(--border-radius);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .page-spin-ph-slot-2__grid-item:hover {
      transform: translateY(-5px);
    }

    .page-spin-ph-slot-2__grid-item-icon {
      margin-bottom: 15px;
      width: 80px;
      height: 80px;
      max-width: 100%;
      height: auto;
      object-fit: contain;
    }

    .page-spin-ph-slot-2__grid-item-title {
      font-size: 1.5em;
      color: var(--primary-color);
      margin-bottom: 10px;
    }

    .page-spin-ph-slot-2__grid-item-description {
      font-size: 1em;
      color: var(--light-text);
    }

    .page-spin-ph-slot-2__image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin: 30px auto;
      border-radius: var(--border-radius);
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    }

    .page-spin-ph-slot-2__content-image {
      width: 100%;
      height: auto;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-spin-ph-slot-2__list {
      list-style: none;
      padding: 0;
      margin-top: 20px;
      display: grid;
      gap: 15px;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      text-align: left;
    }

    .page-spin-ph-slot-2__list-item {
      background-color: #2a2a2a;
      padding: 15px 20px;
      border-left: 5px solid var(--secondary-color);
      border-radius: var(--border-radius);
      font-size: 1.1em;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
      display: flex;
      align-items: center;
      box-sizing: border-box; /* Crucial for responsive list items */
      word-wrap: break-word !important; /* Ensure text wraps */
      overflow-wrap: break-word !important; /* Ensure text wraps */
    }

    .page-spin-ph-slot-2__list-item strong {
      color: var(--primary-color);
      margin-right: 8px;
    }

    .page-spin-ph-slot-2__faq-section {
      background-color: #222;
    }

    .page-spin-ph-slot-2__faq-container {
      margin-top: 40px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-spin-ph-slot-2__faq-item {
      background-color: #2a2a2a;
      border-radius: var(--border-radius);
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .page-spin-ph-slot-2__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #333;
      color: var(--primary-color);
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-spin-ph-slot-2__faq-question h3 {
      margin: 0;
      color: inherit;
      pointer-events: none; /* Prevent h3 from blocking click events */
    }

    .page-spin-ph-slot-2__faq-question:hover {
      background-color: #444;
    }

    .page-spin-ph-slot-2__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--secondary-color);
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle icon from blocking click events */
    }

    .page-spin-ph-slot-2__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      color: var(--light-text);
      font-size: 1em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      text-align: left;
    }

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

    .page-spin-ph-slot-2__faq-item.active .page-spin-ph-slot-2__faq-toggle {
      content: '−';
      color: var(--accent-color);
    }

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
      .page-spin-ph-slot-2__hero-title {
        font-size: 2.5em;
      }

      .page-spin-ph-slot-2__hero-subtitle {
        font-size: 1.2em;
      }

      .page-spin-ph-slot-2__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-spin-ph-slot-2__section {
        padding: 30px 15px;
      }

      .page-spin-ph-slot-2__section-title {
        font-size: 2em;
      }

      .page-spin-ph-slot-2__grid {
        grid-template-columns: 1fr;
      }

      .page-spin-ph-slot-2__list {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 0; /* Adjust padding for list container */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-spin-ph-slot-2__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 15px !important; /* Reduce padding for smaller screens */
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important; /* Ensure text wraps */
        overflow-wrap: break-word !important; /* Ensure text wraps */
      }

      .page-spin-ph-slot-2__image-container {
        margin: 20px auto;
      }

      .page-spin-ph-slot-2__content-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-spin-ph-slot-2__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }

      .page-spin-ph-slot-2__faq-answer {
        padding: 0 20px;
      }

      .page-spin-ph-slot-2__faq-item.active .page-spin-ph-slot-2__faq-answer {
        padding: 15px 20px !important;
      }
    }
  