
    :root {
      --page-livecockfightingatcam67__primary-color: #007bff;
      --page-livecockfightingatcam67__secondary-color: #6c757d;
      --page-livecockfightingatcam67__accent-color: #28a745;
      --page-livecockfightingatcam67__text-color: #333333;
      --page-livecockfightingatcam67__heading-color: #1a1a1a;
      --page-livecockfightingatcam67__background-color: #f0f2f5;
      --page-livecockfightingatcam67__white-color: #ffffff;
      --page-livecockfightingatcam67__border-color: #e0e0e0;
    }

    .page-livecockfightingatcam67 {
      font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
      line-height: 1.6;
      color: var(--page-livecockfightingatcam67__text-color);
      background-color: var(--page-livecockfightingatcam67__background-color);
      padding-bottom: 80px; /* Space for floating button */
    }

    .page-livecockfightingatcam67__hero-section {
      position: relative;
      width: 100%;
      height: 300px; /* Adjust height for mobile first */
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: var(--page-livecockfightingatcam67__white-color);
      padding-top: 10px; /* For fixed header */
    }

    .page-livecockfightingatcam67__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
    }

    .page-livecockfightingatcam67__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 0;
    }

    .page-livecockfightingatcam67__hero-content {
      position: relative;
      z-index: 1;
      padding: 20px;
      max-width: 90%;
    }

    .page-livecockfightingatcam67__hero-title {
      font-size: 2.2em;
      margin-bottom: 10px;
      color: var(--page-livecockfightingatcam67__white-color);
    }

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

    .page-livecockfightingatcam67__floating-button {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: var(--page-livecockfightingatcam67__accent-color);
      color: var(--page-livecockfightingatcam67__white-color);
      text-align: center;
      padding: 15px 20px;
      font-size: 1.2em;
      font-weight: bold;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      cursor: pointer;
      text-decoration: none;
      display: block;
      transition: background-color 0.3s ease;
    }

    .page-livecockfightingatcam67__floating-button:hover {
      background-color: #218838;
    }

    .page-livecockfightingatcam67__section {
      padding: 30px 20px;
      margin-bottom: 20px;
      background-color: var(--page-livecockfightingatcam67__white-color);
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .page-livecockfightingatcam67__section-title {
      font-size: 1.8em;
      color: var(--page-livecockfightingatcam67__heading-color);
      text-align: center;
      margin-bottom: 25px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-livecockfightingatcam67__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: 0;
      width: 60px;
      height: 3px;
      background-color: var(--page-livecockfightingatcam67__primary-color);
      border-radius: 2px;
    }

    .page-livecockfightingatcam67__content-text {
      font-size: 1em;
      line-height: 1.7;
      margin-bottom: 15px;
    }

    .page-livecockfightingatcam67__list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-livecockfightingatcam67__list-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 10px;
      font-size: 1em;
    }

    .page-livecockfightingatcam67__list-item::before {
      content: '✓';
      color: var(--page-livecockfightingatcam67__accent-color);
      font-weight: bold;
      margin-right: 10px;
      font-size: 1.2em;
    }

    .page-livecockfightingatcam67__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 20px;
    }

    .page-livecockfightingatcam67__game-card {
      background-color: var(--page-livecockfightingatcam67__white-color);
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
    }

    .page-livecockfightingatcam67__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
    }

    .page-livecockfightingatcam67__game-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-livecockfightingatcam67__game-image {
      width: 100%;
      height: 120px;
      object-fit: cover;
      display: block;
      max-width: 100%; /* Important for responsive */
      height: auto;   /* Important for responsive */
    }

    .page-livecockfightingatcam67__game-title {
      font-size: 1.1em;
      color: var(--page-livecockfightingatcam67__heading-color);
      padding: 15px 10px;
      margin: 0;
      background-color: #f8f8f8;
      border-top: 1px solid var(--page-livecockfightingatcam67__border-color);
    }

    .page-livecockfightingatcam67__promotion-item {
      background-color: var(--page-livecockfightingatcam67__white-color);
      border: 1px solid var(--page-livecockfightingatcam67__border-color);
      border-radius: 8px;
      padding: 20px;
      margin-bottom: 15px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    }

    .page-livecockfightingatcam67__promotion-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-bottom: 15px;
    }

    .page-livecockfightingatcam67__promotion-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 6px;
      max-width: 100%; /* Important for responsive */
      height: auto;   /* Important for responsive */
    }

    .page-livecockfightingatcam67__promotion-title {
      font-size: 1.3em;
      color: var(--page-livecockfightingatcam67__primary-color);
      margin-bottom: 10px;
    }

    .page-livecockfightingatcam67__promotion-description {
      font-size: 0.95em;
      color: var(--page-livecockfightingatcam67__text-color);
      margin-bottom: 15px;
    }

    .page-livecockfightingatcam67__button {
      display: inline-block;
      background-color: var(--page-livecockfightingatcam67__primary-color);
      color: var(--page-livecockfightingatcam67__white-color);
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-livecockfightingatcam67__button:hover {
      background-color: #0056b3;
    }

    .page-livecockfightingatcam67__guide-step {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
      background-color: #f8f9fa;
      padding: 15px;
      border-radius: 8px;
      border-left: 4px solid var(--page-livecockfightingatcam67__primary-color);
    }

    .page-livecockfightingatcam67__step-number {
      background-color: var(--page-livecockfightingatcam67__primary-color);
      color: var(--page-livecockfightingatcam67__white-color);
      border-radius: 50%;
      width: 35px;
      height: 35px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 1.1em;
      margin-right: 15px;
      flex-shrink: 0;
    }

    .page-livecockfightingatcam67__step-content h3 {
      font-size: 1.2em;
      color: var(--page-livecockfightingatcam67__heading-color);
      margin-top: 0;
      margin-bottom: 5px;
    }

    .page-livecockfightingatcam67__step-content p {
      font-size: 0.95em;
      margin-bottom: 0;
    }

    /* FAQ Section */
    .page-livecockfightingatcam67__faq-section {
      background-color: var(--page-livecockfightingatcam67__white-color);
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      padding: 30px 20px;
      margin-bottom: 20px;
    }

    .page-livecockfightingatcam67__faq-item {
      border-bottom: 1px solid var(--page-livecockfightingatcam67__border-color);
      margin-bottom: 10px;
      padding-bottom: 10px;
    }

    .page-livecockfightingatcam67__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .page-livecockfightingatcam67__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      user-select: none;
      padding: 10px 0;
      color: var(--page-livecockfightingatcam67__heading-color);
      font-size: 1.1em;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .page-livecockfightingatcam67__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-livecockfightingatcam67__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      color: var(--page-livecockfightingatcam67__primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-livecockfightingatcam67__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: var(--page-livecockfightingatcam67__text-color);
      font-size: 0.95em;
      background-color: #f8f9fa;
      border-radius: 0 0 8px 8px;
      margin: 0 -15px -10px -15px; /* Adjust for padding within item */
    }

    .page-livecockfightingatcam67__faq-answer p {
      margin-top: 10px;
      margin-bottom: 10px;
    }

    .page-livecockfightingatcam67__faq-item.active .page-livecockfightingatcam67__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 15px !important;
      opacity: 1;
    }

    .page-livecockfightingatcam67__faq-item.active .page-livecockfightingatcam67__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' or '-' */
    }

    /* Responsive Design */
    @media (min-width: 768px) {
      .page-livecockfightingatcam67 {
        padding: 20px;
      }

      .page-livecockfightingatcam67__hero-section {
        height: 400px;
        padding-top: 10px; /* For fixed header */
      }

      .page-livecockfightingatcam67__hero-title {
        font-size: 3em;
      }

      .page-livecockfightingatcam67__hero-subtitle {
        font-size: 1.3em;
      }

      .page-livecockfightingatcam67__section {
        padding: 40px;
        max-width: 1000px;
        margin: 0 auto 30px auto;
      }

      .page-livecockfightingatcam67__section-title {
        font-size: 2.5em;
      }

      .page-livecockfightingatcam67__game-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .page-livecockfightingatcam67__game-image {
        height: 150px;
      }

      .page-livecockfightingatcam67__promotion-image {
        height: 200px;
      }

      .page-livecockfightingatcam67__floating-button {
        width: auto;
        border-radius: 50px;
        padding: 15px 30px;
        right: 30px;
        left: auto;
        bottom: 30px;
        max-width: 300px;
      }

      /* Ensure images are responsive on desktop too */
      .page-livecockfightingatcam67__hero-image,
      .page-livecockfightingatcam67__game-image,
      .page-livecockfightingatcam67__promotion-image {
        max-width: 100%;
        height: auto;
      }
    }

    @media (max-width: 768px) {
        .page-livecockfightingatcam67__hero-image,
        .page-livecockfightingatcam67__game-image,
        .page-livecockfightingatcam67__promotion-image {
            max-width: 100% !important;
            height: auto !important;
        }
        .page-livecockfightingatcam67__game-image-wrapper,
        .page-livecockfightingatcam67__promotion-image-wrapper {
            width: 100% !important;
            max-width: 100% !important;
            overflow: hidden !important;
            box-sizing: border-box !important;
        }
    }
  