﻿    body {
      min-height: 100vh;
      background:
        linear-gradient(180deg, var(--color-bg-warm, #fbf7f3) 0%, var(--color-bg-secondary, #fafafa) 34%, var(--color-bg, #fff) 100%);
    }

    `.guide-hero {
      padding: 9.5rem 0 3.25rem;
      text-align: center;
    }

    .guide-inner {
      width: min(100% - 40px, 1120px);
      margin: 0 auto;
    }

    .guide-title {
      margin: 0;
      color: var(--color-text, #171717);
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 800;
      line-height: 1.18;
      letter-spacing: 0;
    }

    .guide-subtitle {
      max-width: 680px;
      margin: 1.25rem auto 0;
      color: var(--color-text-secondary, #5f5f5f);
      font-size: 1rem;
      line-height: 1.8;
    }

    .steps-section {
      padding: 0 0 5rem;
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
    }

    .step-card {
      position: relative;
      overflow: hidden;
      min-height: 274px;
      padding: 28px;
      border: 1px solid var(--color-border, rgba(0, 0, 0, .08));
      border-radius: 20px;
      background: rgba(255, 255, 255, .82);
      box-shadow: 0 18px 50px rgba(0, 0, 0, .04);
    }

    .step-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 85% 8%, rgba(82, 92, 255, .14), transparent 32%),
        linear-gradient(180deg, rgba(82, 92, 255, .06), transparent 42%);
      pointer-events: none;
    }

    .step-content {
      position: relative;
      z-index: 1;
      display: flex;
      min-height: 100%;
      flex-direction: column;
      align-items: flex-start;
    }

    .step-index {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 54px;
      height: 30px;
      padding: 0 13px;
      border-radius: 999px;
      color: var(--color-primary, #525CFF);
      background: color-mix(in srgb, var(--color-primary, #525CFF) 11%, transparent);
      font-size: .82rem;
      font-weight: 900;
    }

    .step-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 56px;
      height: 56px;
      margin-top: 28px;
      border-radius: 16px;
      color: var(--color-primary, #525CFF);
      background: color-mix(in srgb, var(--color-primary, #525CFF) 12%, white);
    }

    .step-title {
      margin: 20px 0 0;
      color: var(--color-text, #171717);
      font-size: 1.2rem;
      font-weight: 900;
      line-height: 1.35;
      letter-spacing: 0;
    }

    .step-desc {
      margin: 12px 0 0;
      color: var(--color-text-secondary, #5f5f5f);
      font-size: .96rem;
      line-height: 1.85;
    }

    .step-link {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      margin-top: auto;
      padding-top: 8rem;
      color: var(--color-primary, #525CFF);
      font-size: .92rem;
      font-weight: 900;
      text-decoration: none;
    }

    .guide-section-head {
      max-width: 760px;
      margin: 0 auto 34px;
      text-align: center;
    }

    .video-section {
      padding: 0 0 7rem;
    }

    .video-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
    }

    .video-card {
      min-width: 0;
      padding: 18px;
      border: 1px solid var(--color-border, rgba(0, 0, 0, .08));
      border-radius: 20px;
      background: rgba(255, 255, 255, .84);
      box-shadow: 0 16px 42px rgba(0, 0, 0, .035);
    }

    .video-title {
      margin: 0 0 14px;
      color: var(--color-text, #171717);
      font-size: 1.05rem;
      font-weight: 900;
      line-height: 1.35;
      letter-spacing: 0;
    }

    .video-placeholder {
      position: relative;
      overflow: hidden;
      aspect-ratio: 16 / 9;
      border: 1px solid var(--color-border, rgba(0, 0, 0, .08));
      border-radius: 16px;
      background:
        radial-gradient(circle at 82% 22%, rgba(82, 92, 255, .16), transparent 28%),
        linear-gradient(135deg, rgba(82, 92, 255, .12), rgba(255, 255, 255, .9) 46%, rgba(0, 0, 0, .04));
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .28);
    }

    .video-placeholder::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 34%;
      background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .58));
      pointer-events: none;
    }

    .video-badge {
      position: absolute;
      top: 18px;
      left: 18px;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      min-height: 32px;
      padding: 0 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .84);
      color: var(--color-primary, #525CFF);
      font-size: .85rem;
      font-weight: 800;
      backdrop-filter: blur(12px);
    }

    .play-button {
      position: absolute;
      top: 50%;
      left: 50%;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 64px;
      height: 64px;
      border-radius: 999px;
      background: var(--color-primary, #525CFF);
      color: #fff;
      box-shadow: 0 16px 36px rgba(82, 92, 255, .26);
      transform: translate(-50%, -50%);
    }

    .video-caption {
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 18px;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      color: #fff;
    }

    .video-caption strong {
      font-size: 1rem;
      line-height: 1.4;
    }

    .video-caption span {
      flex: 0 0 auto;
      color: rgba(255, 255, 255, .76);
      font-size: .85rem;
      font-weight: 700;
    }

    @media (max-width: 980px) {
      .steps-grid,
      .video-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 700px) {
      `.guide-hero {
        padding-top: 8rem;
      }

      .steps-grid,
      .video-grid {
        grid-template-columns: 1fr;
      }

      .step-card {
        min-height: auto;
      }

      .video-caption {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
      }
    }
  
    body.guide-page main {
      padding-top: 72px;
    }

    body.guide-page .guide-hero {
      padding: 4.5rem 0 3.25rem !important;
    }

    body.guide-page .reveal {
      opacity: 1 !important;
      transform: none !important;
    }

    @media (max-width: 700px) {
      body.guide-page .guide-hero {
        padding-top: 4rem !important;
      }
    }
  
    /* guide-title-align-fix */
    body.guide-page .guide-hero {
      display: flex !important;
      justify-content: center !important;
      text-align: center !important;
    }

    body.guide-page .guide-hero .guide-inner {
      display: flex !important;
      width: min(100% - 40px, 1120px) !important;
      margin: 0 auto !important;
      flex-direction: column !important;
      align-items: center !important;
      text-align: center !important;
    }

    body.guide-page .guide-title,
    body.guide-page .guide-subtitle {
      width: 100% !important;
      margin-left: auto !important;
      margin-right: auto !important;
      text-align: center !important;
    }

    body.guide-page .guide-title {
      max-width: 900px !important;
    }

    body.guide-page .guide-subtitle {
      max-width: 680px !important;
    }

