@charset "utf-8";

/* ============================================
   macOS 텔레그램 프로필 꾸미기 가이드
   접두사: tg-mcp- (기존 사이트 오염 방지)
   CSS 변수 접두사: --tgmc-
   컬러 톤: 스페이스 그레이(Space Grey) + 애플 블루(Apple Blue)
============================================ */

:root {
    --tgmc-grey: #6b7280;
    --tgmc-grey-dark: #4b5563;
    --tgmc-grey-deep: #374151;
    --tgmc-grey-light: #f3f4f6;
    --tgmc-grey-border: #9ca3af;
    --tgmc-blue: #0071e3;
    --tgmc-blue-dark: #0058b0;
    --tgmc-blue-light: #eff6ff;
    --tgmc-blue-border: #60a5fa;
    --tgmc-slate-900: #0f172a;
    --tgmc-slate-700: #334155;
    --tgmc-slate-500: #64748b;
    --tgmc-slate-300: #cbd5e1;
    --tgmc-slate-200: #e2e8f0;
    --tgmc-slate-100: #f1f5f9;
    --tgmc-bg: #f5f5f7;
    --tgmc-white: #ffffff;
    --tgmc-green: #30d158;
    --tgmc-purple: #af52de;
    --tgmc-teal: #5ac8fa;
    --tgmc-radius: 14px;
}

/* ─── 래퍼 ─── */
.tg-mcp-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    color: var(--tgmc-slate-500);
    background-color: var(--tgmc-bg);
    box-sizing: border-box;
    line-height: 1.7;
    overflow: hidden;
    padding-bottom: 60px;
}

.tg-mcp-wrapper *,
.tg-mcp-wrapper *::before,
.tg-mcp-wrapper *::after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

.tg-mcp-wrapper strong {
    font-weight: 700;
    color: var(--tgmc-slate-900);
}

.tg-mcp-wrapper mark {
    background: linear-gradient(120deg, var(--tgmc-blue-light) 0%, #60a5fa80 100%);
    color: #1d4ed8;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
}

/* ─── 히어로 ─── */
.tg-mcp-hero {
    background: linear-gradient(145deg, #1d1d1f 0%, #2c2c2e 25%, #3a3a3c 55%, #6b7280 80%, #0071e3 100%);
    color: var(--tgmc-white);
    padding: 60px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tg-mcp-hero::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border: 60px solid rgba(107, 114, 128, 0.06);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.tg-mcp-hero::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border: 40px solid rgba(0, 113, 227, 0.04);
    border-radius: 50%;
    bottom: -60px;
    left: -50px;
}

.tg-mcp-hero__floating {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.tg-mcp-hero__float-icon {
    position: absolute;
    font-size: 28px;
    opacity: 0.12;
    animation: tg-mcp-float 6s ease-in-out infinite;
}

.tg-mcp-hero__float-icon i {
    color: rgba(255, 255, 255, 0.9);
}

.tg-mcp-hero__float-icon--1 {
    top: 14%;
    left: 8%;
    animation-delay: 0s;
    font-size: 34px;
}

.tg-mcp-hero__float-icon--2 {
    top: 20%;
    right: 12%;
    animation-delay: 1s;
    font-size: 24px;
}

.tg-mcp-hero__float-icon--3 {
    bottom: 22%;
    left: 15%;
    animation-delay: 2s;
}

.tg-mcp-hero__float-icon--4 {
    bottom: 16%;
    right: 8%;
    animation-delay: 3s;
    font-size: 22px;
}

.tg-mcp-hero__float-icon--5 {
    top: 55%;
    left: 4%;
    animation-delay: 4s;
    font-size: 20px;
}

.tg-mcp-hero__float-icon--6 {
    top: 10%;
    right: 30%;
    animation-delay: 5s;
    font-size: 18px;
}

@keyframes tg-mcp-float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-12px) rotate(8deg);
    }
}

.tg-mcp-hero__inner {
    position: relative;
    z-index: 1;
}

.tg-mcp-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--tgmc-grey-border);
    font-size: 14px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
}

.tg-mcp-hero__badge i {
    font-size: 18px;
}

.tg-mcp-hero__title {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.35;
    margin-bottom: 18px;
    color: var(--tgmc-white);
}

.tg-mcp-hero__desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 620px;
    margin: 0 auto;
}

/* ─── 메인 ─── */
.tg-mcp-main {
    padding: 30px 20px 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* ─── 도입부 ─── */
.tg-mcp-intro {
    background-color: var(--tgmc-white);
    padding: 28px 24px;
    border-radius: var(--tgmc-radius);
    border-left: 4px solid var(--tgmc-blue);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
}

.tg-mcp-intro p {
    font-size: 16px;
    margin-bottom: 14px;
}

.tg-mcp-intro p:last-child {
    margin-bottom: 0;
}

/* ─── 섹션 공통 ─── */
.tg-mcp-section {
    background-color: var(--tgmc-white);
    padding: 34px 24px;
    border-radius: var(--tgmc-radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--tgmc-slate-200);
}

.tg-mcp-section--accent {
    background: linear-gradient(135deg, var(--tgmc-blue-light) 0%, #60a5fa25 100%);
    border-color: var(--tgmc-blue-border);
}

.tg-mcp-section--info {
    background: linear-gradient(135deg, var(--tgmc-grey-light) 0%, #d1d5db25 100%);
    border-color: var(--tgmc-grey-border);
}

.tg-mcp-section--demo {
    background: linear-gradient(135deg, #1d1d1f08 0%, #3a3a3c15 50%, #0071e310 100%);
    border-color: var(--tgmc-grey-border);
}

.tg-mcp-section--dark {
    background: linear-gradient(135deg, #1d1d1f 0%, #2c2c2e 100%);
    border-color: #3a3a3c;
    color: var(--tgmc-slate-300);
}

.tg-mcp-section__head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

.tg-mcp-section__num {
    font-size: 38px;
    font-weight: 900;
    color: var(--tgmc-blue);
    opacity: 0.2;
    line-height: 1;
    flex-shrink: 0;
}

.tg-mcp-section__num--accent {
    color: var(--tgmc-grey-deep);
    opacity: 0.12;
}

.tg-mcp-section__tip-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--tgmc-blue) 0%, #2563eb 100%);
    color: var(--tgmc-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.tg-mcp-section__title {
    font-size: 20px;
    font-weight: 800;
    color: var(--tgmc-slate-900);
    line-height: 1.35;
    padding-top: 6px;
}

.tg-mcp-section__title--light {
    color: var(--tgmc-white);
}

.tg-mcp-section__desc {
    font-size: 16px;
    margin-bottom: 24px;
}

/* ─── 진입 카드 ─── */
.tg-mcp-entry-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.tg-mcp-entry-card {
    padding: 22px;
    border-radius: 12px;
    background-color: var(--tgmc-white);
    border: 1px solid var(--tgmc-slate-200);
    transition: transform 0.3s ease;
}

.tg-mcp-entry-card:hover {
    transform: translateY(-2px);
}

.tg-mcp-entry-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--tgmc-blue) 0%, var(--tgmc-blue-dark) 100%);
    color: var(--tgmc-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 10px;
}

.tg-mcp-entry-card__title {
    font-size: 16px;
    font-weight: 800;
    color: var(--tgmc-slate-900);
    margin-bottom: 4px;
}

.tg-mcp-entry-card__desc {
    font-size: 13px;
    line-height: 1.6;
}

/* ─── 타입 카드 ─── */
.tg-mcp-type-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.tg-mcp-type-card {
    padding: 24px;
    border-radius: 12px;
    background-color: var(--tgmc-white);
    border: 1px solid var(--tgmc-slate-200);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tg-mcp-type-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.tg-mcp-type-card__emoji {
    font-size: 40px;
    margin-bottom: 8px;
    display: block;
    animation: tg-mcp-bounce 2.5s ease-in-out infinite;
}

@keyframes tg-mcp-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

.tg-mcp-type-card__title {
    font-size: 16px;
    font-weight: 800;
    color: var(--tgmc-slate-900);
    margin-bottom: 4px;
}

.tg-mcp-type-card__desc {
    font-size: 13px;
    line-height: 1.6;
}

/* ─── 스텝 ─── */
.tg-mcp-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tg-mcp-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background-color: var(--tgmc-white);
    border: 1px solid var(--tgmc-slate-200);
    border-radius: 12px;
    transition: transform 0.25s ease;
}

.tg-mcp-step:hover {
    transform: translateX(4px);
}

.tg-mcp-step__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--tgmc-grey-deep) 0%, var(--tgmc-grey-dark) 100%);
    color: var(--tgmc-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.tg-mcp-step__body {
    flex: 1;
}

.tg-mcp-step__title {
    font-size: 16px;
    font-weight: 800;
    color: var(--tgmc-slate-900);
    margin-bottom: 4px;
}

.tg-mcp-step__text {
    font-size: 14px;
    line-height: 1.6;
}

/* ─── 데모 ─── */
.tg-mcp-demo {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* 편집 패널 */
.tg-mcp-demo__panel {
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--tgmc-grey-border);
    background-color: var(--tgmc-white);
}

/* 탭 */
.tg-mcp-demo__tabs {
    display: flex;
    gap: 0;
    background-color: #1d1d1f;
}

.tg-mcp-demo__tab {
    flex: 1;
    padding: 10px 8px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    white-space: nowrap;
    transition: all 0.2s ease;
    border-bottom: 2px solid transparent;
}

.tg-mcp-demo__tab:hover {
    color: rgba(255, 255, 255, 0.8);
}

.tg-mcp-demo__tab--active {
    color: var(--tgmc-white);
    border-bottom-color: var(--tgmc-blue);
}

.tg-mcp-demo__tab i {
    margin-right: 2px;
}

/* 그리드 */
.tg-mcp-demo__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    padding: 8px;
    min-height: 80px;
}

.tg-mcp-demo__grid-item {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: var(--tgmc-grey-light);
}

.tg-mcp-demo__grid-item:hover {
    background-color: var(--tgmc-blue-light);
    transform: scale(1.1);
}

.tg-mcp-demo__grid-item--active {
    background-color: var(--tgmc-blue-light);
    box-shadow: 0 0 0 2px var(--tgmc-blue);
}

/* 배경색 */
.tg-mcp-demo__bg-section {
    padding: 10px 12px;
    border-top: 1px solid var(--tgmc-slate-100);
}

.tg-mcp-demo__bg-label {
    font-size: 11px;
    font-weight: 800;
    color: var(--tgmc-slate-500);
    margin-bottom: 6px;
}

.tg-mcp-demo__bg-label i {
    margin-right: 4px;
}

.tg-mcp-demo__bg-list {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.tg-mcp-demo__bg-swatch {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tg-mcp-demo__bg-swatch:hover {
    transform: scale(1.15);
}

.tg-mcp-demo__bg-swatch--active {
    border-color: var(--tgmc-slate-900);
    box-shadow: 0 0 0 2px var(--tgmc-white), 0 0 0 4px var(--tgmc-blue);
}

/* 크기 슬라이더 */
.tg-mcp-demo__size-section {
    padding: 10px 12px;
    border-top: 1px solid var(--tgmc-slate-100);
}

.tg-mcp-demo__size-label {
    font-size: 11px;
    font-weight: 800;
    color: var(--tgmc-slate-500);
    margin-bottom: 6px;
}

.tg-mcp-demo__size-label i {
    margin-right: 4px;
}

.tg-mcp-demo__size-slider {
    width: 100%;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(90deg, var(--tgmc-blue-border) 0%, var(--tgmc-blue) 100%);
    border-radius: 2px;
    outline: none;
}

.tg-mcp-demo__size-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--tgmc-blue);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* 미리보기 */
.tg-mcp-demo__preview {
    text-align: center;
    padding: 28px 20px;
    background-color: var(--tgmc-white);
    border-radius: 12px;
    border: 2px solid var(--tgmc-blue-border);
}

.tg-mcp-demo__preview-label {
    font-size: 10px;
    font-weight: 800;
    color: var(--tgmc-slate-500);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.tg-mcp-demo__preview-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
    transition: background 0.4s ease;
}

.tg-mcp-demo__preview-emoji {
    font-size: 50px;
    animation: tg-mcp-bounce 2s ease-in-out infinite;
    transition: font-size 0.3s ease;
}

.tg-mcp-demo__preview-name {
    font-size: 16px;
    font-weight: 800;
    color: var(--tgmc-slate-900);
    margin-bottom: 2px;
}

.tg-mcp-demo__preview-status {
    font-size: 12px;
    color: var(--tgmc-green);
    font-weight: 700;
    margin-bottom: 20px;
}

/* 채팅 리스트 */
.tg-mcp-demo__chatlist {
    border-top: 1px solid var(--tgmc-slate-100);
    padding-top: 14px;
}

.tg-mcp-demo__chat-label {
    font-size: 9px;
    font-weight: 800;
    color: var(--tgmc-slate-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.tg-mcp-demo__chat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 10px;
    background-color: var(--tgmc-grey-light);
}

.tg-mcp-demo__chat-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: background 0.4s ease;
}

.tg-mcp-demo__chat-avatar span {
    font-size: 20px;
}

.tg-mcp-demo__chat-info {
    flex: 1;
    text-align: left;
    overflow: hidden;
}

.tg-mcp-demo__chat-name {
    font-size: 13px;
    font-weight: 800;
    color: var(--tgmc-slate-900);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tg-mcp-demo__chat-msg {
    font-size: 11px;
    color: var(--tgmc-slate-500);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tg-mcp-demo__chat-time {
    font-size: 9px;
    color: var(--tgmc-slate-500);
    flex-shrink: 0;
}

/* ─── 직장인 팁 ─── */
.tg-mcp-tips {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.tg-mcp-tip {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(96, 165, 250, 0.1);
    padding: 22px;
    border-radius: 10px;
    position: relative;
}

.tg-mcp-tip__number {
    position: absolute;
    top: -10px;
    left: 18px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--tgmc-blue) 0%, #2563eb 100%);
    color: var(--tgmc-white);
    font-weight: 900;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.tg-mcp-tip__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--tgmc-white);
    margin-bottom: 8px;
    padding-top: 6px;
}

.tg-mcp-tip__title i {
    color: var(--tgmc-blue-border);
    margin-right: 4px;
}

.tg-mcp-tip__text {
    font-size: 14px;
    color: var(--tgmc-slate-300);
}

.tg-mcp-tip__text strong {
    color: var(--tgmc-white);
}

/* ─── 결론 ─── */
.tg-mcp-summary {
    background: linear-gradient(145deg, #1d1d1f 0%, #2c2c2e 40%, #3a3a3c 65%, #0071e3 100%);
    color: var(--tgmc-white);
    padding: 44px 28px;
    border-radius: var(--tgmc-radius);
    text-align: center;
    box-shadow: 0 10px 30px rgba(29, 29, 31, 0.5);
}

.tg-mcp-summary__title {
    font-size: 24px;
    font-weight: 800;
    color: var(--tgmc-white);
    margin-bottom: 20px;
}

.tg-mcp-summary__body p {
    font-size: 16px;
    margin-bottom: 14px;
    color: var(--tgmc-grey-border);
}

.tg-mcp-summary strong {
    color: var(--tgmc-white);
}

.tg-mcp-summary__highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 24px 0;
}

.tg-mcp-summary__highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 12px;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(96, 165, 250, 0.1);
    border-radius: 10px;
}

.tg-mcp-summary__highlight-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--tgmc-blue) 0%, #2563eb 100%);
    color: var(--tgmc-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.tg-mcp-summary__highlight strong {
    font-size: 13px;
    color: var(--tgmc-white);
}

.tg-mcp-summary__highlight span {
    font-size: 11px;
    color: var(--tgmc-grey-border);
    text-align: center;
}

.tg-mcp-summary__checklist {
    list-style: none;
    display: inline-block;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.04);
    padding: 24px 32px;
    border-radius: 12px;
    margin: 0 0 24px;
}

.tg-mcp-summary__checklist li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--tgmc-blue-border);
}

.tg-mcp-summary__checklist li:last-child {
    margin-bottom: 0;
}

.tg-mcp-summary__checklist li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 13px;
    color: var(--tgmc-green);
}

.tg-mcp-summary__checklist strong {
    color: var(--tgmc-white);
}

.tg-mcp-summary__footer {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 14px;
    color: var(--tgmc-grey-border);
    line-height: 1.8;
}

.tg-mcp-summary__footer strong {
    color: var(--tgmc-white);
}

/* ============================================
   반응형
============================================ */
@media (min-width: 768px) {
    .tg-mcp-hero {
        padding: 80px 40px;
    }

    .tg-mcp-hero__title {
        font-size: 38px;
    }

    .tg-mcp-main {
        padding: 40px 36px 0;
        gap: 40px;
    }

    .tg-mcp-intro {
        padding: 36px 32px;
    }

    .tg-mcp-section {
        padding: 40px 36px;
    }

    .tg-mcp-section__title {
        font-size: 24px;
    }

    .tg-mcp-section__num {
        font-size: 44px;
    }

    .tg-mcp-entry-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .tg-mcp-type-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .tg-mcp-tips {
        grid-template-columns: repeat(3, 1fr);
    }

    .tg-mcp-summary__highlights {
        grid-template-columns: repeat(3, 1fr);
    }

    .tg-mcp-summary {
        padding: 56px 44px;
    }

    .tg-mcp-demo__grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (min-width: 1024px) {
    .tg-mcp-hero__title {
        font-size: 44px;
    }

    .tg-mcp-main {
        gap: 46px;
    }

    .tg-mcp-demo {
        flex-direction: row;
    }

    .tg-mcp-demo__panel {
        flex: 0.55;
    }

    .tg-mcp-demo__preview {
        flex: 0.45;
    }
}

/* ============================================
   스크롤 등장 애니메이션
============================================ */
.tg-mcp-motion {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.tg-mcp-motion.is-visible {
    opacity: 1;
    transform: translateY(0);
}