.page-candy-cat-poppy-playtime-game {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
    }

    .page-candy-cat-poppy-playtime-game__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    /* Hero Section */
    .page-candy-cat-poppy-playtime-game__hero-section {
      position: relative;
      width: 100%;
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      overflow: hidden;
      padding-top: 10px; /* Small padding assuming body has header offset */
      box-sizing: border-box;
    }
    @media (max-width: 768px) {
      .page-candy-cat-poppy-playtime-game__hero-section {
        min-height: 400px;
        padding-top: 10px !important; /* Ensure consistency */
      }
    }

    .page-candy-cat-poppy-playtime-game__hero-background-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      max-width: 100%; /* Responsive image */
      height: auto; /* Responsive image */
    }

    .page-candy-cat-poppy-playtime-game__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

    .page-candy-cat-poppy-playtime-game__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 20px;
    }

    .page-candy-cat-poppy-playtime-game__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #ffe066; /* Gold/yellow for casino feel */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      line-height: 1.2;
    }
    @media (max-width: 768px) {
      .page-candy-cat-poppy-playtime-game__hero-title {
        font-size: 2em;
      }
    }

    .page-candy-cat-poppy-playtime-game__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #fff;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }
    @media (max-width: 768px) {
      .page-candy-cat-poppy-playtime-game__hero-subtitle {
        font-size: 1em;
      }
    }

    .page-candy-cat-poppy-playtime-game__hero-button {
      display: inline-block;
      background-color: #ff4500; /* Orange-red for action */
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-candy-cat-poppy-playtime-game__hero-button:hover {
      background-color: #e03e00;
      transform: translateY(-2px);
    }

    /* General Section Styling */
    .page-candy-cat-poppy-playtime-game__about-section,
    .page-candy-cat-poppy-playtime-game__promotion-section,
    .page-candy-cat-poppy-playtime-game__faq-section {
      padding: 60px 0;
      text-align: center;
    }
    @media (max-width: 768px) {
      .page-candy-cat-poppy-playtime-game__about-section,
      .page-candy-cat-poppy-playtime-game__promotion-section,
      .page-candy-cat-poppy-playtime-game__faq-section {
        padding: 40px 0;
      }
    }

    .page-candy-cat-poppy-playtime-game__section-title {
      font-size: 2.2em;
      color: #2c3e50;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }
    .page-candy-cat-poppy-playtime-game__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background-color: #ff4500;
      border-radius: 2px;
    }
    @media (max-width: 768px) {
      .page-candy-cat-poppy-playtime-game__section-title {
        font-size: 1.8em;
      }
    }

    .page-candy-cat-poppy-playtime-game__section-description {
      font-size: 1.1em;
      color: #555;
      max-width: 800px;
      margin: 0 auto 40px auto;
    }
    @media (max-width: 768px) {
      .page-candy-cat-poppy-playtime-game__section-description {
        font-size: 1em;
        margin-bottom: 30px;
      }
    }

    /* Features Grid */
    .page-candy-cat-poppy-playtime-game__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
      max-width: 100%; /* Ensure container is responsive */
      box-sizing: border-box;
      padding: 0 20px; /* Add padding to container */
    }
    @media (max-width: 768px) {
      .page-candy-cat-poppy-playtime-game__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0; /* Remove container padding if child items have full width */
      }
    }

    .page-candy-cat-poppy-playtime-game__feature-item {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive width calculations */
      width: 100%; /* Default to 100% for grid items */
    }
    .page-candy-cat-poppy-playtime-game__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }
    @media (max-width: 768px) {
      .page-candy-cat-poppy-playtime-game__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

    .page-candy-cat-poppy-playtime-game__feature-icon {
      width: 100px;
      height: auto;
      margin-bottom: 20px;
      max-width: 100%; /* Ensure images are responsive */
      height: auto; /* Ensure images are responsive */
      border-radius: 8px;
    }

    .page-candy-cat-poppy-playtime-game__feature-title {
      font-size: 1.5em;
      color: #ff4500;
      margin-bottom: 10px;
    }

    .page-candy-cat-poppy-playtime-game__feature-text {
      font-size: 1em;
      color: #666;
    }

    /* Promotion Section */
    .page-candy-cat-poppy-playtime-game__promotion-section {
      background-color: #e6f7ff; /* Light blue background */
    }

    .page-candy-cat-poppy-playtime-game__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
      max-width: 100%;
      box-sizing: border-box;
      padding: 0 20px;
    }
    @media (max-width: 768px) {
      .page-candy-cat-poppy-playtime-game__promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
      }
    }

    .page-candy-cat-poppy-playtime-game__promo-card {
      background-color: #fff;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      width: 100%;
    }
    .page-candy-cat-poppy-playtime-game__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }
    @media (max-width: 768px) {
      .page-candy-cat-poppy-playtime-game__promo-card {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

    .page-candy-cat-poppy-playtime-game__promo-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 20px;
      max-width: 100%;
      height: auto;
    }

    .page-candy-cat-poppy-playtime-game__promo-title {
      font-size: 1.6em;
      color: #2c3e50;
      margin-bottom: 10px;
    }

    .page-candy-cat-poppy-playtime-game__promo-text {
      font-size: 1em;
      color: #666;
      margin-bottom: 20px;
    }

    .page-candy-cat-poppy-playtime-game__promo-button {
      display: inline-block;
      background-color: #007bff; /* Blue for call to action */
      color: #fff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-candy-cat-poppy-playtime-game__promo-button:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    /* FAQ Section */
    .page-candy-cat-poppy-playtime-game__faq-section {
      background-color: #fcfcfc;
    }

    .page-candy-cat-poppy-playtime-game__faq-list {
      margin-top: 40px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
      width: 100%; /* For mobile responsiveness */
      box-sizing: border-box;
      padding: 0 20px; /* Add padding to container */
    }
    @media (max-width: 768px) {
      .page-candy-cat-poppy-playtime-game__faq-list {
        padding: 0; /* Remove container padding if child items have full width */
      }
    }

    .page-candy-cat-poppy-playtime-game__faq-item {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      width: 100%; /* Crucial for responsive width calculations */
      box-sizing: border-box;
    }
    @media (max-width: 768px) {
      .page-candy-cat-poppy-playtime-game__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

    .page-candy-cat-poppy-playtime-game__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #f5f5f5;
      border-bottom: 1px solid #eee;
      user-select: none;
      transition: background-color 0.3s ease;
    }
    .page-candy-cat-poppy-playtime-game__faq-question:hover {
      background-color: #eaeaea;
    }
    @media (max-width: 768px) {
      .page-candy-cat-poppy-playtime-game__faq-question {
        padding: 12px 15px;
      }
    }

    .page-candy-cat-poppy-playtime-game__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #333;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }
    @media (max-width: 768px) {
      .page-candy-cat-poppy-playtime-game__faq-question h3 {
        font-size: 1em;
      }
    }

    .page-candy-cat-poppy-playtime-game__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #ff4500;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-candy-cat-poppy-playtime-game__faq-item.active .page-candy-cat-poppy-playtime-game__faq-toggle {
      transform: rotate(45deg);
    }

    .page-candy-cat-poppy-playtime-game__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      text-align: left;
      color: #555;
    }
    .page-candy-cat-poppy-playtime-game__faq-answer p {
      margin: 0;
      padding-bottom: 15px; /* Add padding to content inside answer */
    }
    @media (max-width: 768px) {
      .page-candy-cat-poppy-playtime-game__faq-answer {
        padding: 0 15px;
      }
    }

    .page-candy-cat-poppy-playtime-game__faq-item.active .page-candy-cat-poppy-playtime-game__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px !important;
      opacity: 1;
    }
    @media (max-width: 768px) {
      .page-candy-cat-poppy-playtime-game__faq-item.active .page-candy-cat-poppy-playtime-game__faq-answer {
        padding: 15px !important;
      }
    }

    /* Floating Buttons */
    .page-candy-cat-poppy-playtime-game__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }
    @media (max-width: 768px) {
      .page-candy-cat-poppy-playtime-game__floating-buttons {
        bottom: 10px;
        right: 10px;
        flex-direction: row;
        width: calc(100% - 20px);
        justify-content: space-around;
        left: 10px;
      }
    }

    .page-candy-cat-poppy-playtime-game__floating-button {
      display: block;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, background-color 0.3s ease;
      white-space: nowrap; /* Prevent text wrapping */
    }
    .page-candy-cat-poppy-playtime-game__floating-button:hover {
      transform: translateY(-3px);
    }
    @media (max-width: 768px) {
      .page-candy-cat-poppy-playtime-game__floating-button {
        flex: 1;
        padding: 10px 15px;
        font-size: 1em;
      }
    }

    .page-candy-cat-poppy-playtime-game__register-button {
      background-color: #28a745; /* Green for register */
      color: #fff;
    }
    .page-candy-cat-poppy-playtime-game__register-button:hover {
      background-color: #218838;
    }

    .page-candy-cat-poppy-playtime-game__login-button {
      background-color: #007bff; /* Blue for login */
      color: #fff;
    }
    .page-candy-cat-poppy-playtime-game__login-button:hover {
      background-color: #0056b3;
    }