
    :root {
      --kingph-primary-color: #FFD700; /* Gold */
      --kingph-secondary-color: #2F4F4F; /* Dark Slate Gray */
      --kingph-accent-color: #DC143C; /* Crimson */
      --kingph-text-light: #FFFFFF;
      --kingph-text-dark: #333333;
      --kingph-bg-dark: #1a1a1a;
      --kingph-bg-light: #f0f0f0;
      --kingph-border-color: #444444;
    }

    .page-kingph-telegram-login {
      font-family: 'Arial', sans-serif;
      color: var(--kingph-text-light);
      background-color: var(--kingph-bg-dark);
      line-height: 1.6;
    }

    .page-kingph-telegram-login__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-kingph-telegram-login__hero-section {
      position: relative;
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('[GALLERY:hero:1920x1080:kingph,telegram,login,casino,banner]') center center no-repeat;
      background-size: cover;
      color: var(--kingph-text-light);
      text-align: center;
      padding: 100px 20px;
      padding-top: 10px; /* Small top padding, assuming body padding handles header offset */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 400px;
      border-bottom: 5px solid var(--kingph-primary-color);
      box-sizing: border-box;
    }

    .page-kingph-telegram-login__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: var(--kingph-primary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-kingph-telegram-login__hero-description {
      font-size: 1.3em;
      max-width: 800px;
      margin-bottom: 30px;
    }

    .page-kingph-telegram-login__cta-button {
      background-color: var(--kingph-accent-color);
      color: var(--kingph-text-light);
      padding: 15px 30px;
      border: none;
      border-radius: 5px;
      font-size: 1.1em;
      cursor: pointer;
      transition: background-color 0.3s ease;
      text-decoration: none;
      display: inline-block;
      font-weight: bold;
    }

    .page-kingph-telegram-login__cta-button:hover {
      background-color: #b20e2e; /* Darker crimson */
    }

    .page-kingph-telegram-login__section {
      padding: 60px 0;
      text-align: center;
      border-bottom: 1px solid var(--kingph-border-color);
    }

    .page-kingph-telegram-login__section:last-of-type {
      border-bottom: none;
    }

    .page-kingph-telegram-login__section-title {
      font-size: 2.5em;
      margin-bottom: 40px;
      color: var(--kingph-primary-color);
      position: relative;
      padding-bottom: 15px;
    }

    .page-kingph-telegram-login__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--kingph-accent-color);
      border-radius: 2px;
    }

    .page-kingph-telegram-login__content-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
      margin-top: 40px;
    }

    .page-kingph-telegram-login__step-card {
      background-color: var(--kingph-secondary-color);
      border-radius: 10px;
      padding: 30px;
      flex: 1 1 calc(33% - 40px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: left;
      min-width: 280px;
      max-width: 350px;
      box-sizing: border-box;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-kingph-telegram-login__step-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    }

    .page-kingph-telegram-login__step-number {
      font-size: 2.5em;
      color: var(--kingph-primary-color);
      font-weight: bold;
      margin-bottom: 15px;
    }

    .page-kingph-telegram-login__step-title {
      font-size: 1.5em;
      color: var(--kingph-text-light);
      margin-bottom: 10px;
    }

    .page-kingph-telegram-login__step-description {
      font-size: 1em;
      color: #cccccc;
    }

    .page-kingph-telegram-login__image-wrapper {
      margin-top: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-kingph-telegram-login__content-image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    }

    .page-kingph-telegram-login__list {
      list-style: none;
      padding: 0;
      margin: 0 auto;
      max-width: 800px;
      text-align: left;
    }

    .page-kingph-telegram-login__list-item {
      background-color: var(--kingph-secondary-color);
      margin-bottom: 15px;
      padding: 20px;
      border-radius: 8px;
      display: flex;
      align-items: flex-start;
      gap: 15px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-kingph-telegram-login__list-icon {
      color: var(--kingph-primary-color);
      font-size: 1.5em;
      font-weight: bold;
      flex-shrink: 0;
    }

    .page-kingph-telegram-login__list-text {
      font-size: 1.1em;
      color: #cccccc;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-kingph-telegram-login__faq-section {
      background-color: var(--kingph-bg-dark);
      padding: 60px 0;
      border-top: 1px solid var(--kingph-border-color);
    }

    .page-kingph-telegram-login__faq-list {
      max-width: 900px;
      margin: 40px auto 0 auto;
      padding: 0;
      list-style: none;
    }

    .page-kingph-telegram-login__faq-item {
      background-color: var(--kingph-secondary-color);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-kingph-telegram-login__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: var(--kingph-secondary-color);
      transition: background-color 0.3s ease;
    }

    .page-kingph-telegram-login__faq-question:hover {
      background-color: #3f6060; /* Lighter secondary for hover */
    }

    .page-kingph-telegram-login__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--kingph-primary-color);
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-kingph-telegram-login__faq-toggle {
      font-size: 1.8em;
      color: var(--kingph-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
      line-height: 1;
    }

    .page-kingph-telegram-login__faq-item.active .page-kingph-telegram-login__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar visually */
    }

    .page-kingph-telegram-login__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;
      color: #cccccc;
      font-size: 1em;
      text-align: left;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

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

    .page-kingph-telegram-login__cta-section {
      background-color: var(--kingph-accent-color);
      padding: 80px 20px;
      text-align: center;
      color: var(--kingph-text-light);
    }

    .page-kingph-telegram-login__cta-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: var(--kingph-text-light);
    }

    .page-kingph-telegram-login__cta-text {
      font-size: 1.2em;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-kingph-telegram-login__cta-button-alt {
      background-color: var(--kingph-primary-color);
      color: var(--kingph-text-dark);
      padding: 18px 40px;
      border: none;
      border-radius: 8px;
      font-size: 1.3em;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
      text-decoration: none;
      display: inline-block;
      font-weight: bold;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-kingph-telegram-login__cta-button-alt:hover {
      background-color: #e6b800; /* Darker gold */
      transform: translateY(-3px);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-kingph-telegram-login__hero-title {
        font-size: 3em;
      }

      .page-kingph-telegram-login__section-title {
        font-size: 2em;
      }

      .page-kingph-telegram-login__step-card {
        flex: 1 1 calc(48% - 20px);
        max-width: 45%;
      }
    }

    @media (max-width: 768px) {
      .page-kingph-telegram-login__container {
        padding: 15px;
      }

      .page-kingph-telegram-login__hero-title {
        font-size: 2.5em;
      }

      .page-kingph-telegram-login__hero-description {
        font-size: 1.1em;
      }

      .page-kingph-telegram-login__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-kingph-telegram-login__section {
        padding: 40px 0;
      }

      .page-kingph-telegram-login__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }

      .page-kingph-telegram-login__content-wrapper {
        flex-direction: column;
        gap: 20px;
      }

      .page-kingph-telegram-login__step-card {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 25px;
      }

      .page-kingph-telegram-login__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-kingph-telegram-login__list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-kingph-telegram-login__list-text {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-kingph-telegram-login__content-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-kingph-telegram-login__image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }

      .page-kingph-telegram-login__faq-question {
        padding: 15px 20px;
      }

      .page-kingph-telegram-login__faq-question h3 {
        font-size: 1.1em;
      }

      .page-kingph-telegram-login__faq-answer {
        padding: 0 20px;
      }

      .page-kingph-telegram-login__faq-item.active .page-kingph-telegram-login__faq-answer {
        padding: 15px 20px !important;
      }

      .page-kingph-telegram-login__cta-title {
        font-size: 2em;
      }

      .page-kingph-telegram-login__cta-text {
        font-size: 1em;
      }

      .page-kingph-telegram-login__cta-button-alt {
        padding: 15px 30px;
        font-size: 1.1em;
      }
    }

    @media (max-width: 480px) {
      .page-kingph-telegram-login__hero-title {
        font-size: 2em;
      }

      .page-kingph-telegram-login__hero-description {
        font-size: 0.9em;
      }

      .page-kingph-telegram-login__section-title {
        font-size: 1.5em;
      }

      .page-kingph-telegram-login__step-number {
        font-size: 2em;
      }

      .page-kingph-telegram-login__step-title {
        font-size: 1.3em;
      }

      .page-kingph-telegram-login__cta-title {
        font-size: 1.8em;
      }
    }
  