:root {
  color-scheme: light;
  --bg-a: #dbddbb;
  --bg-b: #6ba587;
  --bg-c: #d5d88d;
  --bg-d: #88b884;
  --surface: #ffffff;
  --surface-soft: #f8f9fb;
  --line: #d7dbe0;
  --ink: #1f2a36;
  --muted: #65707d;
  --accent: #1d9bf0;
  --accent-hover: #1989d2;
  --radius-card: 18px;
  --radius-pill: 999px;
  --shadow: 0 16px 50px rgba(25, 34, 44, 0.16);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
}

body {
  background: linear-gradient(140deg, var(--bg-a), var(--bg-b) 35%, var(--bg-c) 68%, var(--bg-d));
}

.tgme_background_wrap {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.tgme_background {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 16% 12%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 35%);
}

.tgme_background_pattern {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background:
    repeating-linear-gradient(
      130deg,
      rgba(255, 255, 255, 0.5) 0px,
      rgba(255, 255, 255, 0.5) 1px,
      transparent 1px,
      transparent 16px
    );
}

.tgme_page_wrap {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.tgme_head_wrap {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.86);
}

.tgme_head {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tgme_head_brand {
  color: #2a96e8;
  font-size: 21px;
  font-weight: 700;
}

.tgme_head_right_btn {
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: #2a96e8;
}

.tgme_body_wrap {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 22px 16px 34px;
  display: grid;
  gap: 14px;
}

.tgme_page,
.content_card,
.final_cta {
  border-radius: var(--radius-card);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.tgme_page {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 12px;
  padding: 28px 24px;
}

.tgme_page_photo {
  width: 124px;
  height: 124px;
}

.tgme_page_photo_image {
  width: 124px;
  height: 124px;
  border-radius: 50%;
  border: 4px solid #ffffff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0) 34%),
    linear-gradient(140deg, #1b7aca, #43c086);
  position: relative;
}

.tgme_page_photo_image::before {
  content: "SK";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.08em;
}

.tgme_page_title {
  margin: 0;
  font-size: clamp(30px, 4.2vw, 40px);
  line-height: 1.08;
}

.tgme_page_extra {
  color: var(--muted);
  font-size: 15px;
}

.tgme_page_description {
  margin: 0;
  color: #4a5664;
  max-width: 66ch;
  line-height: 1.65;
}

.tgme_page_action {
  width: 100%;
  max-width: 420px;
}

.tgme_action_button {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 20px;
  border: 1px solid transparent;
  transition: background-color 0.16s ease;
}

.tgme_action_button:hover {
  background: var(--accent-hover);
}

.tgme_page_additional {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.content_card {
  padding: 20px;
}

.content_card h2,
.final_cta h2 {
  margin: 0 0 14px;
  font-size: clamp(24px, 3.5vw, 33px);
  line-height: 1.14;
}

.content_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.content_grid_three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content_item,
.steps_list li {
  border: 1px solid #e5e8ee;
  border-radius: 12px;
  padding: 14px;
  background: var(--surface-soft);
}

.content_item h3,
.steps_list h3 {
  margin: 0;
  font-size: 18px;
}

.content_item p,
.steps_list p,
.final_cta p {
  margin: 8px 0 0;
  color: #4c5967;
  line-height: 1.55;
}

.steps_list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.steps_list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
}

.step_num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: #dff0fc;
  color: #1b88d4;
  font-size: 14px;
  font-weight: 700;
}

.final_cta {
  padding: 22px;
  text-align: center;
}

.final_cta h2 {
  margin-bottom: 10px;
}

.final_cta p {
  margin: 0 0 16px;
}

.final_cta .tgme_action_button {
  width: auto;
  min-width: 250px;
}

@media (max-width: 920px) {
  .content_grid,
  .content_grid_three {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .tgme_head {
    padding: 12px 14px;
  }

  .tgme_body_wrap {
    padding: 14px 12px 28px;
    gap: 12px;
  }

  .tgme_page,
  .content_card,
  .final_cta {
    padding: 16px;
    border-radius: 14px;
  }

  .tgme_page_photo,
  .tgme_page_photo_image {
    width: 106px;
    height: 106px;
  }

  .tgme_page_photo_image::before {
    font-size: 36px;
  }

  .tgme_action_button {
    font-size: 15px;
    padding: 12px 16px;
  }

  .final_cta .tgme_action_button {
    width: 100%;
    min-width: 0;
  }
}
