@charset "utf-8";

/* ============================================
   텔레그램 꿀팁 가이드 - Fragment 익명 번호 편
   접두사: tg-t234- (기존 사이트 오염 방지)
   컬러 톤: 에메랄드(Emerald) + 청록(Teal)
   v1.0.2 - CSS 충돌 수정
============================================ */

/* ── CSS 변수 (디자인 토큰) ── */
#tg-t234-wrapper {
    /* 주요 컬러: 에메랄드/청록 계열 */
    --t234-primary:       #059669;
    --t234-primary-dark:  #047857;
    --t234-primary-deep:  #064e3b;
    --t234-primary-light: #ecfdf5;
    --t234-secondary:     #0d9488;
    --t234-accent:        #f59e0b;

    /* 모노 슬레이트 */
    --t234-slate-900:  #0f172a;
    --t234-slate-700:  #334155;
    --t234-slate-500:  #64748b;
    --t234-slate-300:  #cbd5e1;
    --t234-slate-200:  #e2e8f0;
    --t234-slate-100:  #f1f5f9;
    --t234-bg:         #f0fdf4;
    --t234-white:      #ffffff;

    /* 공통 */
    --t234-radius: 16px;
    --t234-shadow: 0 4px 20px rgba(5, 150, 105, 0.08);
}

/* ============================================
   그누보드5 완전 리셋 (CSS 충돌 방지)
   주의: color는 제외 - inherit 시 사이트 전역색 전파 방지
============================================ */
#tg-t234-wrapper,
#tg-t234-wrapper * {
    box-sizing: border-box;
    list-style: none;
    font-style: normal;
}

/* a 태그: 사이트 전역 링크 스타일 완전 차단 */
#tg-t234-wrapper a,
#tg-t234-wrapper a:link,
#tg-t234-wrapper a:visited,
#tg-t234-wrapper a:hover,
#tg-t234-wrapper a:active {
    text-decoration: none !important;
    color: inherit !important;
    font-weight: inherit !important;
    background: none !important;
}

#tg-t234-wrapper h1,
#tg-t234-wrapper h2,
#tg-t234-wrapper h3,
#tg-t234-wrapper h4,
#tg-t234-wrapper h5,
#tg-t234-wrapper h6 {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    line-height: inherit;
    margin: 0;
    padding: 0;
}

#tg-t234-wrapper p {
    margin-bottom: 16px !important;
    line-height: 1.75 !important;
    padding: 0;
}

#tg-t234-wrapper p:last-child {
    margin-bottom: 0 !important;
}

#tg-t234-wrapper strong {
    font-weight: 700;
    color: var(--t234-slate-900);
}

#tg-t234-wrapper mark {
    background: linear-gradient(120deg, #d1fae5 0%, #a7f3d0 100%) !important;
    color: var(--t234-primary-dark) !important;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
}

#tg-t234-wrapper ul,
#tg-t234-wrapper ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ============================================
   래퍼 및 레이아웃
============================================ */
#tg-t234-wrapper.tg-t234-wrapper {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    font-family: 'Pretendard', -apple-system, sans-serif;
    font-size: 15px;
    color: var(--t234-slate-700);
    background-color: var(--t234-bg) !important;
    line-height: 1.7;
    overflow: hidden;
    padding-bottom: 80px;
    text-align: left;
}

/* ============================================
   히어로 헤더
============================================ */
#tg-t234-wrapper .tg-t234-hero {
    background: linear-gradient(135deg, #064e3b 0%, #065f46 40%, #059669 100%) !important;
    color: var(--t234-white) !important;
    padding: 64px 24px 72px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#tg-t234-wrapper .tg-t234-hero * {
    color: inherit;
}

#tg-t234-wrapper .tg-t234-hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.2) 0%, transparent 70%) !important;
    top: -200px;
    right: -100px;
    pointer-events: none;
}

#tg-t234-wrapper .tg-t234-hero::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%) !important;
    bottom: -100px;
    left: -50px;
    pointer-events: none;
}

#tg-t234-wrapper .tg-t234-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

#tg-t234-wrapper .tg-t234-hero__title {
    font-size: 28px !important;
    font-weight: 900 !important;
    line-height: 1.3 !important;
    margin-bottom: 18px;
    color: #ffffff !important;
}

#tg-t234-wrapper .tg-t234-hero__title span {
    color: #6ee7b7 !important;
}

#tg-t234-wrapper .tg-t234-hero__desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75) !important;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   메인 콘텐츠 레이아웃
============================================ */
#tg-t234-wrapper .tg-t234-main {
    padding: 40px 20px 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* ============================================
   섹션 공통 스타일
============================================ */
#tg-t234-wrapper .tg-t234-section {
    background: var(--t234-white) !important;
    padding: 32px 24px;
    border-radius: var(--t234-radius);
    box-shadow: var(--t234-shadow);
    border: 1px solid #d1fae5 !important;
    color: var(--t234-slate-700);
}

#tg-t234-wrapper .tg-t234-section__title {
    font-size: 20px !important;
    font-weight: 800 !important;
    color: var(--t234-slate-900) !important;
    margin-bottom: 24px !important;
    display: flex;
    align-items: center;
    gap: 12px;
}

#tg-t234-wrapper .tg-t234-section__title i {
    color: var(--t234-primary) !important;
}

/* 도입부 */
#tg-t234-wrapper .tg-t234-intro {
    background: var(--t234-primary-light) !important;
    border-left: 5px solid var(--t234-primary) !important;
    padding: 28px;
    border-radius: 12px;
}

#tg-t234-wrapper .tg-t234-intro p {
    font-size: 15.5px;
    color: var(--t234-primary-dark) !important;
}

/* ============================================
   피처 카드 그리드
============================================ */
#tg-t234-wrapper .tg-t234-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

#tg-t234-wrapper .tg-t234-card {
    background: var(--t234-slate-100) !important;
    padding: 24px;
    border-radius: 14px;
    border: 1px solid var(--t234-slate-200) !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

#tg-t234-wrapper .tg-t234-card:hover {
    background: var(--t234-white) !important;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(5, 150, 105, 0.12);
    border-color: var(--t234-primary) !important;
}

#tg-t234-wrapper .tg-t234-card__icon {
    width: 48px;
    height: 48px;
    background: var(--t234-primary) !important;
    color: var(--t234-white) !important;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

#tg-t234-wrapper .tg-t234-card__title {
    font-size: 16px;
    font-weight: 700 !important;
    color: var(--t234-slate-900) !important;
    margin-bottom: 8px !important;
}

#tg-t234-wrapper .tg-t234-card__text {
    font-size: 14px;
    color: var(--t234-slate-500) !important;
}

/* ============================================
   탭 인터페이스
============================================ */
#tg-t234-wrapper .tg-t234-tabs {
    display: flex;
    background: var(--t234-slate-100) !important;
    padding: 6px;
    border-radius: 12px;
    margin-bottom: 24px;
}

#tg-t234-wrapper .tg-t234-tab {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--t234-slate-500) !important;
    background: none !important;
}

#tg-t234-wrapper .tg-t234-tab--active {
    background: var(--t234-white) !important;
    color: var(--t234-primary) !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

#tg-t234-wrapper .tg-t234-tab-content {
    display: none;
    animation: tg-t234-in 0.4s ease forwards;
}

#tg-t234-wrapper .tg-t234-tab-content--active {
    display: block;
}

@keyframes tg-t234-in {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* 스텝 리스트 */
#tg-t234-wrapper .tg-t234-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#tg-t234-wrapper .tg-t234-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

#tg-t234-wrapper .tg-t234-step__num {
    width: 26px;
    height: 26px;
    min-width: 26px;
    background: var(--t234-primary-light) !important;
    color: var(--t234-primary) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 2px;
}

#tg-t234-wrapper .tg-t234-step__text {
    font-size: 15px;
    color: var(--t234-slate-700) !important;
}

#tg-t234-wrapper .tg-t234-step__text strong {
    color: var(--t234-slate-900) !important;
}

/* ============================================
   꿀팁 리스트
============================================ */
#tg-t234-wrapper .tg-t234-tips-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

#tg-t234-wrapper .tg-t234-tip-item {
    display: flex;
    gap: 14px;
    padding: 18px;
    background: var(--t234-primary-light) !important;
    border-radius: 12px;
    border: 1px dashed #a7f3d0 !important;
    color: var(--t234-slate-700);
}

#tg-t234-wrapper .tg-t234-tip-item > i {
    color: var(--t234-primary) !important;
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

#tg-t234-wrapper .tg-t234-tip-item strong {
    display: block;
    font-weight: 700;
    color: var(--t234-slate-900) !important;
    margin-bottom: 4px;
}

#tg-t234-wrapper .tg-t234-tip-item p {
    color: var(--t234-slate-700) !important;
    font-size: 14px;
}

/* 경고 박스 */
#tg-t234-wrapper .tg-t234-warning {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-top: 24px;
    padding: 20px;
    background: #fffbeb !important;
    border: 1px solid #fef3c7 !important;
    border-radius: 12px;
}

#tg-t234-wrapper .tg-t234-warning > i {
    color: #d97706 !important;
    font-size: 18px;
    margin-top: 4px;
    flex-shrink: 0;
}

#tg-t234-wrapper .tg-t234-warning p {
    font-size: 14.5px;
    color: #92400e !important;
    line-height: 1.65;
}

#tg-t234-wrapper .tg-t234-warning strong {
    color: #92400e !important;
}

/* ============================================
   마무리 섹션
============================================ */
#tg-t234-wrapper .tg-t234-section--summary {
    background: var(--t234-primary-deep) !important;
    color: #ffffff !important;
    text-align: center;
    border-color: transparent !important;
}

#tg-t234-wrapper .tg-t234-section--summary * {
    color: inherit;
}

#tg-t234-wrapper .tg-t234-summary__title {
    font-size: 22px !important;
    font-weight: 800 !important;
    margin-bottom: 24px !important;
    color: #6ee7b7 !important;
}

#tg-t234-wrapper .tg-t234-summary__list {
    display: inline-flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
    max-width: 540px;
}

#tg-t234-wrapper .tg-t234-summary__list-item {
    display: flex;
    gap: 10px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9) !important;
    align-items: flex-start;
}

#tg-t234-wrapper .tg-t234-summary__list-item > i {
    color: #f59e0b !important;
    margin-top: 4px;
    flex-shrink: 0;
}

#tg-t234-wrapper .tg-t234-summary__list-item span,
#tg-t234-wrapper .tg-t234-summary__list-item strong {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 700;
}

/* 저작권 텍스트 */
#tg-t234-wrapper .tg-t234-section--summary > p {
    color: rgba(255, 255, 255, 0.4) !important;
}

/* ============================================
   애니메이션 효과
============================================ */
#tg-t234-wrapper .tg-t234-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

#tg-t234-wrapper .tg-t234-animate--active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   반응형 처리
============================================ */
@media (min-width: 640px) {
    #tg-t234-wrapper .tg-t234-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 960px) {
    #tg-t234-wrapper .tg-t234-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    #tg-t234-wrapper .tg-t234-hero {
        padding: 80px 48px 100px;
    }
    #tg-t234-wrapper .tg-t234-hero__title {
        font-size: 40px !important;
    }
    #tg-t234-wrapper .tg-t234-main {
        padding: 50px 60px 0;
    }
}
