
    :root {
      --primary-color: #FFD700; /* Gold */
      --secondary-color: #00BFFF; /* Deep Sky Blue */
      --accent-color: #FF4500; /* Orange Red */
      --text-color: #FFFFFF;
      --bg-color: #1a1a2e; /* Dark Blue */
      --card-bg: #2a2a4a;
      --border-color: #3a3a5a;
      --button-hover-color: #FFA500;
    }

    body {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--text-color);
      background-color: var(--bg-color);
      margin: 0;
      padding: 0;
      overflow-x: hidden;
    }

    .page-live-ph-t-code-cf68 {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px; /* General horizontal padding */
      padding-bottom: 80px; /* Space for floating buttons */
      padding-top: var(--header-offset, 122px); /* Fallback for fixed header */
    }

    .page-live-ph-t-code-cf68__hero-section {
      text-align: center;
      padding: 60px 20px; /* Internal padding for hero content */
      background: linear-gradient(135deg, var(--bg-color) 0%, #0f0f1a 100%);
      border-radius: 10px;
      margin-bottom: 40px;
      position: relative;
      overflow: hidden;
    }

    .page-live-ph-t-code-cf68__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      opacity: 0.3;
      filter: brightness(0.7); /* Slightly darken background image for text readability, not changing color */
    }

    .page-live-ph-t-code-cf68__hero-content {
      position: relative;
      z-index: 1;
    }

    .page-live-ph-t-code-cf68__hero-title {
      font-size: 2.8em;
      color: var(--primary-color);
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-live-ph-t-code-cf68__hero-subtitle {
      font-size: 1.3em;
      color: var(--text-color);
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-live-ph-t-code-cf68__button {
      display: inline-block;
      background-color: var(--accent-color);
      color: var(--text-color);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
      min-width: 150px;
    }

    .page-live-ph-t-code-cf68__button:hover {
      background-color: var(--button-hover-color);
      transform: translateY(-2px);
    }

    .page-live-ph-t-code-cf68__section {
      background-color: var(--card-bg);
      padding: 40px 20px;
      margin-bottom: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-live-ph-t-code-cf68__section-title {
      font-size: 2em;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    }

    .page-live-ph-t-code-cf68__text-content {
      font-size: 1.1em;
      line-height: 1.8;
      margin-bottom: 20px;
      text-align: justify;
    }

    .page-live-ph-t-code-cf68__text-content strong {
      color: var(--primary-color);
    }

    .page-live-ph-t-code-cf68__image-container {
      text-align: center;
      margin: 30px auto;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      border-radius: 8px;
    }

    .page-live-ph-t-code-cf68__image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-live-ph-t-code-cf68__steps-list {
      list-style: none;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

    .page-live-ph-t-code-cf68__step-item {
      background-color: var(--border-color);
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      flex: 1 1 calc(33% - 40px); /* 3 items per row on desktop */
      min-width: 280px;
      box-sizing: border-box;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
    }

    .page-live-ph-t-code-cf68__step-number {
      font-size: 2.5em;
      color: var(--secondary-color);
      font-weight: bold;
      margin-bottom: 15px;
    }

    .page-live-ph-t-code-cf68__step-title {
      font-size: 1.4em;
      color: var(--primary-color);
      margin-bottom: 10px;
      word-wrap: break-word; /* Ensure long titles break */
    }

    .page-live-ph-t-code-cf68__step-description {
      font-size: 1em;
      color: var(--text-color);
      flex-grow: 1;
    }

    .page-live-ph-t-code-cf68__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-live-ph-t-code-cf68__game-card {
      background-color: var(--border-color);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .page-live-ph-t-code-cf68__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .page-live-ph-t-code-cf68__game-image {
      width: 100%;
      height: 180px; /* Fixed height for consistency */
      object-fit: cover;
    }

    .page-live-ph-t-code-cf68__game-info {
      padding: 15px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-live-ph-t-code-cf68__game-title {
      font-size: 1.3em;
      color: var(--primary-color);
      margin-bottom: 10px;
      word-wrap: break-word;
    }

    .page-live-ph-t-code-cf68__game-provider {
      font-size: 0.9em;
      color: #ccc;
      margin-bottom: 15px;
    }

    .page-live-ph-t-code-cf68__promo-button {
      background-color: var(--secondary-color);
      color: var(--text-color);
      padding: 10px 15px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 0.9em;
      display: block; /* Make button full width */
      width: fit-content;
      margin: 0 auto;
    }

    .page-live-ph-t-code-cf68__promo-button:hover {
      background-color: #009ACD;
    }

    .page-live-ph-t-code-cf68__faq-section {
      background-color: var(--card-bg);
      padding: 40px 20px;
      margin-bottom: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-live-ph-t-code-cf68__faq-item {
      border-bottom: 1px solid var(--border-color);
      margin-bottom: 15px;
      padding-bottom: 15px;
    }

    .page-live-ph-t-code-cf68__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .page-live-ph-t-code-cf68__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      user-select: none;
      padding: 10px 0;
      transition: background-color 0.3s ease;
    }

    .page-live-ph-t-code-cf68__faq-question:hover {
      background-color: rgba(255, 255, 255, 0.05);
      border-radius: 5px;
    }

    .page-live-ph-t-code-cf68__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--primary-color);
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click */
      word-wrap: break-word; /* Ensure long questions break */
      padding-right: 10px; /* Space between text and icon */
    }

    .page-live-ph-t-code-cf68__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--secondary-color);
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle from blocking click */
      transition: transform 0.3s ease;
      min-width: 20px; /* Ensure toggle icon has space */
      text-align: center;
    }

    .page-live-ph-t-code-cf68__faq-item.active .page-live-ph-t-code-cf68__faq-toggle {
      transform: rotate(45deg); /* Rotate + to become X, or change to - */
    }

    .page-live-ph-t-code-cf68__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(--text-color);
      font-size: 0.95em;
      line-height: 1.7;
    }

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

    .page-live-ph-t-code-cf68__contact-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
    }

    .page-live-ph-t-code-cf68__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 1000;
    }

    .page-live-ph-t-code-cf68__floating-button {
      background-color: var(--primary-color);
      color: #1a1a2e;
      padding: 12px 20px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 120px; /* Ensure button is wide enough for text */
    }

    .page-live-ph-t-code-cf68__floating-button:hover {
      background-color: var(--button-hover-color);
      transform: translateY(-3px);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-live-ph-t-code-cf68 {
        padding: 0 10px; /* Smaller horizontal padding on mobile */
        padding-bottom: 70px; /* Adjust for floating buttons */
        padding-top: var(--header-offset, 122px); /* Fallback for fixed header */
      }

      .page-live-ph-t-code-cf68__hero-section {
        padding: 40px 15px;
      }

      .page-live-ph-t-code-cf68__hero-title {
        font-size: 2em;
      }

      .page-live-ph-t-code-cf68__hero-subtitle {
        font-size: 1em;
      }

      .page-live-ph-t-code-cf68__button {
        padding: 10px 20px;
        font-size: 0.95em;
        min-width: 130px;
      }

      .page-live-ph-t-code-cf68__section {
        padding: 30px 15px;
      }

      .page-live-ph-t-code-cf68__section-title {
        font-size: 1.8em;
      }

      .page-live-ph-t-code-cf68__text-content {
        font-size: 1em;
      }

      .page-live-ph-t-code-cf68__steps-list {
        flex-direction: column;
        gap: 15px;
      }

      .page-live-ph-t-code-cf68__step-item {
        flex: 1 1 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px;
      }
      .page-live-ph-t-code-cf68__step-title,
      .page-live-ph-t-code-cf68__step-description {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-live-ph-t-code-cf68__game-grid {
        grid-template-columns: 1fr;
      }

      .page-live-ph-t-code-cf68__game-image {
        height: 150px; /* Adjust image height for mobile */
      }

      .page-live-ph-t-code-cf68__game-title {
        font-size: 1.2em;
      }

      .page-live-ph-t-code-cf68__promo-button {
        padding: 8px 12px;
        font-size: 0.85em;
      }

      .page-live-ph-t-code-cf68__faq-question h3 {
        font-size: 1.1em;
      }

      .page-live-ph-t-code-cf68__faq-answer {
        padding: 0 10px;
        font-size: 0.9em;
      }
      .page-live-ph-t-code-cf68__faq-item.active .page-live-ph-t-code-cf68__faq-answer {
        padding: 15px 10px !important;
      }

      .page-live-ph-t-code-cf68__contact-buttons {
        flex-direction: column;
        gap: 15px;
      }

      .page-live-ph-t-code-cf68__floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
      }
      .page-live-ph-t-code-cf68__floating-button {
        padding: 10px 15px;
        font-size: 1em;
        min-width: 100px;
      }

      /* Image responsiveness */
      .page-live-ph-t-code-cf68__image-container,
      .page-live-ph-t-code-cf68__image,
      .page-live-ph-t-code-cf68__game-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }
    }
  