
    :root {
      --primary-color: #e44d26; /* A vibrant orange-red for highlights */
      --secondary-color: #333; /* Dark text */
      --background-color: #f8f8f8; /* Light background */
      --card-background: #ffffff; /* White for cards */
      --text-light: #666; /* Lighter text for descriptions */
      --border-color: #eee; /* Light border */
    }

    .page-spin-ph-11 {
      font-family: 'Arial', sans-serif;
      color: var(--secondary-color);
      background-color: var(--background-color);
      line-height: 1.6;
      padding-top: 10px; /* Small padding to avoid content touching header, relying on body for main offset */
    }

    .page-spin-ph-11__hero-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 40px 20px;
      background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
      border-bottom: 1px solid var(--border-color);
      gap: 30px;
    }

    .page-spin-ph-11__hero-content {
      max-width: 900px;
    }

    .page-spin-ph-11__hero-title {
      font-size: 2.8em;
      color: var(--primary-color);
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .page-spin-ph-11__highlight {
      color: var(--primary-color);
      font-weight: bold;
    }

    .page-spin-ph-11__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: var(--text-light);
    }

    .page-spin-ph-11__hero-buttons {
      display: flex;
      justify-content: center;
      gap: 15px;
      flex-wrap: wrap;
    }

    .page-spin-ph-11__cta-button,
    .page-spin-ph-11__secondary-button,
    .page-spin-ph-11__promo-button,
    .page-spin-ph-11__learn-more-button,
    .page-spin-ph-11__contact-button {
      display: inline-block;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      cursor: pointer;
      border: none;
      font-size: 1em;
    }

    .page-spin-ph-11__cta-button {
      background-color: var(--primary-color);
      color: #fff;
    }

    .page-spin-ph-11__cta-button:hover {
      background-color: #c74422;
      transform: translateY(-2px);
    }

    .page-spin-ph-11__secondary-button {
      background-color: #fff;
      color: var(--primary-color);
      border: 2px solid var(--primary-color);
    }

    .page-spin-ph-11__secondary-button:hover {
      background-color: var(--primary-color);
      color: #fff;
      transform: translateY(-2px);
    }

    .page-spin-ph-11__learn-more-button,
    .page-spin-ph-11__contact-button,
    .page-spin-ph-11__promo-button {
      background-color: #5cb85c; /* Example color */
      color: #fff;
      padding: 12px 25px;
      font-size: 0.95em;
    }

    .page-spin-ph-11__contact-button {
        background-color: #007bff; /* Example color */
    }

    .page-spin-ph-11__learn-more-button:hover,
    .page-spin-ph-11__contact-button:hover,
    .page-spin-ph-11__promo-button:hover {
      opacity: 0.9;
      transform: translateY(-1px);
    }

    .page-spin-ph-11__hero-image-container {
      width: 100%;
      max-width: 800px;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .page-spin-ph-11__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .page-spin-ph-11__section-title {
      font-size: 2.2em;
      text-align: center;
      margin-bottom: 20px;
      color: var(--secondary-color);
    }

    .page-spin-ph-11__section-description {
      text-align: center;
      margin-bottom: 40px;
      color: var(--text-light);
      font-size: 1.1em;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-spin-ph-11__about-section,
    .page-spin-ph-11__games-section,
    .page-spin-ph-11__promotions-section,
    .page-spin-ph-11__payments-section,
    .page-spin-ph-11__why-choose-section,
    .page-spin-ph-11__faq-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-spin-ph-11__about-content {
      display: flex;
      flex-direction: column;
      gap: 30px;
      align-items: center;
    }

    .page-spin-ph-11__about-text {
      flex: 1;
      max-width: 700px;
    }

    .page-spin-ph-11__about-text p {
      margin-bottom: 15px;
      font-size: 1.05em;
    }

    .page-spin-ph-11__inline-link {
        color: var(--primary-color);
        text-decoration: underline;
    }

    .page-spin-ph-11__inline-link:hover {
        text-decoration: none;
    }

    .page-spin-ph-11__button-group {
        display: flex;
        gap: 15px;
        margin-top: 25px;
        flex-wrap: wrap;
    }

    .page-spin-ph-11__about-image-container {
      flex: 1;
      min-width: 300px;
      max-width: 500px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .page-spin-ph-11__about-image {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .page-spin-ph-11__game-grid,
    .page-spin-ph-11__promo-grid,
    .page-spin-ph-11__why-choose-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-spin-ph-11__game-card,
    .page-spin-ph-11__promo-card,
    .page-spin-ph-11__feature-card {
      background-color: var(--card-background);
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      text-align: center;
      padding-bottom: 20px;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-spin-ph-11__game-card:hover,
    .page-spin-ph-11__promo-card:hover,
    .page-spin-ph-11__feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

    .page-spin-ph-11__game-card-image,
    .page-spin-ph-11__promo-card-image,
    .page-spin-ph-11__feature-icon {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      margin-bottom: 20px;
    }

    .page-spin-ph-11__feature-icon {
        height: 150px; /* Smaller for icons */
        object-fit: contain; /* Ensure full icon is visible */
        padding: 20px;
    }

    .page-spin-ph-11__game-card-title,
    .page-spin-ph-11__promo-card-title,
    .page-spin-ph-11__feature-title {
      font-size: 1.4em;
      margin-bottom: 10px;
      color: var(--primary-color);
      padding: 0 15px;
    }

    .page-spin-ph-11__game-card-description,
    .page-spin-ph-11__promo-card-description,
    .page-spin-ph-11__feature-description {
      font-size: 0.95em;
      color: var(--text-light);
      padding: 0 15px;
      flex-grow: 1;
    }

    .page-spin-ph-11__promo-button-wrapper {
        margin-top: 20px;
        padding: 0 15px;
    }

    .page-spin-ph-11__view-all {
        text-align: center;
        margin-top: 50px;
    }

    .page-spin-ph-11__payments-section {
      background-color: #eef; /* Slightly different background for contrast */
      border-top: 1px solid var(--border-color);
      border-bottom: 1px solid var(--border-color);
    }

    .page-spin-ph-11__payment-methods {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 25px;
      margin-top: 40px;
    }

    .page-spin-ph-11__payment-item {
      background-color: var(--card-background);
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
      padding: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 150px;
      transition: transform 0.2s ease;
      box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-spin-ph-11__payment-item:hover {
      transform: translateY(-3px);
    }

    .page-spin-ph-11__payment-icon {
      width: 100px;
      height: 60px;
      object-fit: contain;
      margin-bottom: 10px;
    }

    .page-spin-ph-11__payment-name {
      font-weight: bold;
      color: var(--secondary-color);
      font-size: 0.95em;
    }

    .page-spin-ph-11__cta-banner {
        background: linear-gradient(to right, var(--primary-color), #ff7f50);
        color: #fff;
        padding: 80px 20px;
        text-align: center;
        margin-top: 60px;
        border-radius: 12px;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

    .page-spin-ph-11__cta-title {
        font-size: 2.5em;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .page-spin-ph-11__cta-description {
        font-size: 1.2em;
        margin-bottom: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-spin-ph-11__cta-button--large {
        padding: 18px 40px;
        font-size: 1.1em;
        background-color: #000; /* Dark button for contrast */
        color: #fff;
        border: 2px solid #000;
    }

    .page-spin-ph-11__cta-button--large:hover {
        background-color: #333;
        border-color: #333;
    }

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

    .page-spin-ph-11__faq-item {
      background-color: var(--card-background);
      border: 1px solid var(--border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

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

    .page-spin-ph-11__faq-question:hover {
      background-color: #eee;
    }

    .page-spin-ph-11__faq-question-text {
        margin: 0;
        font-size: 1.1em;
        color: var(--secondary-color);
    }

    .page-spin-ph-11__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      width: 20px;
      text-align: center;
      transition: transform 0.3s ease;
      color: var(--primary-color);
    }

    .page-spin-ph-11__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: var(--card-background);
      color: var(--text-light);
    }

    .page-spin-ph-11__faq-answer p {
        margin: 0 0 15px 0;
    }
    .page-spin-ph-11__faq-answer p:last-child {
        margin-bottom: 0;
    }

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

    .page-spin-ph-11__faq-item.active .page-spin-ph-11__faq-toggle {
      transform: rotate(45deg); /* Plus sign rotates to form an 'x' or close symbol */
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-spin-ph-11__hero-title {
        font-size: 2.4em;
      }
      .page-spin-ph-11__section-title {
        font-size: 2em;
      }
      .page-spin-ph-11__cta-title {
          font-size: 2.2em;
      }
    }

    @media (max-width: 768px) {
      .page-spin-ph-11__hero-section {
        padding: 30px 15px;
      }
      .page-spin-ph-11__hero-title {
        font-size: 2em;
      }
      .page-spin-ph-11__hero-description {
        font-size: 1.1em;
      }
      .page-spin-ph-11__hero-buttons {
        flex-direction: column;
        gap: 10px;
      }
      .page-spin-ph-11__cta-button,
      .page-spin-ph-11__secondary-button,
      .page-spin-ph-11__learn-more-button,
      .page-spin-ph-11__contact-button,
      .page-spin-ph-11__promo-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 12px 20px;
        font-size: 0.9em;
      }

      .page-spin-ph-11__about-content {
        flex-direction: column;
      }
      .page-spin-ph-11__about-text,
      .page-spin-ph-11__about-image-container {
        max-width: 100%;
      }

      .page-spin-ph-11__game-grid,
      .page-spin-ph-11__promo-grid,
      .page-spin-ph-11__why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-spin-ph-11__payment-methods {
        gap: 15px;
        padding: 0 10px;
      }

      .page-spin-ph-11__payment-item {
        width: calc(50% - 15px); /* Two columns */
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px;
      }

      .page-spin-ph-11__cta-banner {
          padding: 50px 15px;
      }

      .page-spin-ph-11__cta-title {
          font-size: 1.8em;
      }

      .page-spin-ph-11__cta-description {
          font-size: 1em;
      }

      .page-spin-ph-11__cta-button--large {
          width: 100%;
          max-width: 300px;
          margin: 0 auto;
      }

      .page-spin-ph-11__faq-question {
        padding: 15px 20px;
        font-size: 0.95em;
      }
      .page-spin-ph-11__faq-question-text {
        font-size: 1em;
      }
      .page-spin-ph-11__faq-answer {
        padding: 0 20px;
      }
      .page-spin-ph-11__faq-item.active .page-spin-ph-11__faq-answer {
        padding: 15px 20px !important;
      }

      /* General list item responsiveness for safety */
      .page-spin-ph-11 ul, .page-spin-ph-11 ol {
          width: 100% !important;
          max-width: 100% !important;
          box-sizing: border-box !important;
          padding: 0 !important;
          margin-left: 0 !important;
          margin-right: 0 !important;
      }
      .page-spin-ph-11 li {
          width: 100% !important;
          max-width: 100% !important;
          box-sizing: border-box !important;
          margin-left: 0 !important;
          margin-right: 0 !important;
          word-wrap: break-word !important;
          overflow-wrap: break-word !important;
      }
      .page-spin-ph-11 img {
          max-width: 100% !important;
          height: auto !important;
          box-sizing: border-box !important;
      }
      .page-spin-ph-11__hero-image-container,
      .page-spin-ph-11__about-image-container {
          width: 100% !important;
          max-width: 100% !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-spin-ph-11__hero-title {
        font-size: 1.8em;
      }
      .page-spin-ph-11__section-title {
        font-size: 1.6em;
      }
      .page-spin-ph-11__cta-title {
          font-size: 1.6em;
      }
      .page-spin-ph-11__payment-item {
        width: 100%; /* Single column */
      }
    }
  