@charset "utf-8";

/* ============================================
   텔레그램 원본 전송 가이드 (v1.0.0)
   접두사: tg-raw-
   테마: Crystal Clear Emerald & Azure
============================================ */

:root {
    --raw-primary: #10b981; /* Emerald */
    --raw-primary-dark: #059669;
    --raw-secondary: #0ea5e9; /* Sky Blue */
    --raw-bg: #f8fafc;
    --raw-midnight: #0f172a;
    --raw-slate-900: #0f172a;
    --raw-slate-800: #1e293b;
    --raw-slate-600: #475569;
    --raw-slate-100: #f1f5f9;
    
    --raw-radius: 28px;
    --raw-shadow: 0 15px 45px rgba(16, 185, 129, 0.1);
}

/* ============================================
   공통 리셋 및 기초 스타일
============================================ */
#tg-raw-wrapper,
#tg-raw-wrapper *,
#tg-raw-wrapper *::before,
#tg-raw-wrapper *::after {
    box-sizing: border-box !important;
    margin: 0; padding: 0; border: none; outline: none;
    text-decoration: none; list-style: none; font-style: normal;
    -webkit-font-smoothing: antialiased !important;
    word-break: keep-all;
}

#tg-raw-wrapper {
    max-width: 1100px !important;
    margin: 0 auto !important;
    width: 100% !important;
    font-family: 'Pretendard', sans-serif !important;
    background-color: var(--raw-bg) !important;
    color: var(--raw-slate-800) !important;
    padding-bottom: 80px !important;
    overflow: hidden !important;
}

#tg-raw-wrapper strong {
    font-weight: 800 !important;
    color: var(--raw-primary-dark) !important;
}

#tg-raw-wrapper mark {
    background: linear-gradient(120deg, #d1fae5 0%, #a7f3d0 100%) !important;
    color: #065f46 !important;
    font-weight: 700 !important;
    padding: 2px 8px !important;
    border-radius: 4px !important;
}

/* 아이콘 시스템 */
#tg-raw-wrapper .fas, 
#tg-raw-wrapper .fab, 
#tg-raw-wrapper .far {
    display: inline-block !important;
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    vertical-align: middle !important;
    color: inherit;
}

/* ============================================
   히어로 섹션
============================================ */
#tg-raw-wrapper .tg-raw-hero {
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), url('hero.png') no-repeat center center / cover !important;
    padding: 140px 24px !important;
    text-align: center !important;
}

#tg-raw-wrapper .tg-raw-hero__inner {
    max-width: 900px !important;
    margin: 0 auto !important;
}

#tg-raw-wrapper .tg-raw-hero__badge {
    display: inline-flex !important; align-items: center !important; gap: 8px !important;
    background: rgba(16, 185, 129, 0.2) !important;
    color: #ecfdf5 !important;
    border: 1px solid rgba(16, 185, 129, 0.4) !important;
    padding: 10px 24px !important; border-radius: 100px !important;
    font-size: 15px !important; font-weight: 900 !important;
    margin-bottom: 30px !important; backdrop-filter: blur(10px) !important;
}

#tg-raw-wrapper .tg-raw-hero__title {
    font-size: 48px !important; font-weight: 950 !important; line-height: 1.2 !important;
    margin-bottom: 24px !important; color: #ffffff !important;
    text-shadow: 0 4px 25px rgba(0,0,0,0.5) !important;
}

#tg-raw-wrapper .tg-raw-hero__desc {
    font-size: 22px !important; line-height: 1.7 !important;
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5) !important;
}

/* ============================================
   메인 콘텐츠
============================================ */
#tg-raw-wrapper .tg-raw-main {
    padding: 60px 24px !important;
    display: flex !important; flex-direction: column !important; gap: 60px !important;
}

#tg-raw-wrapper .tg-raw-section {
    background: #fff !important; padding: 55px 45px !important; border-radius: var(--raw-radius) !important;
    box-shadow: var(--raw-shadow) !important; border: 1px solid var(--raw-slate-100) !important;
}

#tg-raw-wrapper .tg-raw-section__head {
    display: flex !important; align-items: center !important; gap: 20px !important;
    margin-bottom: 40px !important;
}

#tg-raw-wrapper .tg-raw-section__icon-box {
    width: 64px !important; height: 64px !important;
    background: #d1fae5 !important; color: var(--raw-primary) !important;
    border-radius: 18px !important; display: flex !important; align-items: center !important; justify-content: center !important;
    font-size: 30px !important;
}

#tg-raw-wrapper .tg-raw-section__title {
    font-size: 32px !important; font-weight: 900 !important; color: var(--raw-midnight) !important;
}

/* 장점 그리드 */
#tg-raw-wrapper .tg-raw-features {
    display: grid !important; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 24px !important; margin-bottom: 40px !important;
}

#tg-raw-wrapper .tg-raw-feature-card {
    padding: 35px !important; background: var(--raw-slate-100) !important;
    border-radius: 24px !important; border: 1px solid transparent !important;
    transition: all 0.3s ease !important;
}

#tg-raw-wrapper .tg-raw-feature-card:hover {
    background: #fff !important; border-color: var(--raw-primary) !important;
    transform: translateY(-5px) !important; box-shadow: 0 20px 40px rgba(16, 185, 129, 0.1) !important;
}

#tg-raw-wrapper .tg-raw-feature-card h3 {
    font-size: 21px !important; font-weight: 850 !important; margin-bottom: 15px !important;
    display: flex !important; align-items: center !important; gap: 10px !important;
}

#tg-raw-wrapper .tg-raw-feature-card i { color: var(--raw-primary) !important; }

/* 가이드 박스 */
#tg-raw-wrapper .tg-raw-guide {
    display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 40px !important;
}

#tg-raw-wrapper .tg-raw-step {
    padding: 40px !important; background: var(--raw-slate-100) !important;
    border-radius: 32px !important;
}

#tg-raw-wrapper .tg-raw-step h3 {
    font-size: 24px !important; font-weight: 900 !important; margin-bottom: 25px !important;
    display: flex !important; align-items: center !important; gap: 12px !important;
}

#tg-raw-wrapper .tg-raw-list li {
    position: relative !important; padding-left: 32px !important; margin-bottom: 18px !important;
    font-size: 17px !important; line-height: 1.6 !important;
}

#tg-raw-wrapper .tg-raw-list li::before {
    content: "\f058" !important; font-family: "Font Awesome 5 Free" !important; font-weight: 900 !important;
    position: absolute !important; left: 0 !important; top: 2px !important; color: var(--raw-primary) !important;
    font-size: 20px !important;
}

/* 팁 박스 (어두운 배경 영역 가독성 보장) */
#tg-raw-wrapper .tg-raw-tip {
    background: linear-gradient(135deg, #064e3b 0%, #065f46 100%) !important;
    padding: 45px !important; border-radius: 35px !important;
    margin-top: 40px !important; position: relative !important;
}

#tg-raw-wrapper .tg-raw-tip__label {
    position: absolute !important; top: -18px !important; left: 45px !important;
    background: #fbbf24 !important; color: #78350f !important;
    padding: 8px 30px !important; border-radius: 50px !important;
    font-weight: 950 !important; font-size: 15px !important;
}

#tg-raw-wrapper .tg-raw-tip p {
    color: #ecfdf5 !important; font-size: 19px !important; line-height: 1.8 !important; margin-bottom: 0 !important;
}

#tg-raw-wrapper .tg-raw-tip strong {
    color: #fbbf24 !important;
}

/* ============================================
   요약 섹션
============================================ */
#tg-raw-wrapper .tg-raw-summary {
    background: linear-gradient(135deg, #0f172a 0%, #064e3b 100%) !important;
    padding: 100px 30px !important; border-radius: 50px !important;
    text-align: center !important;
}

#tg-raw-wrapper .tg-raw-summary__title {
    font-size: 42px !important; font-weight: 950 !important; margin-bottom: 60px !important;
    color: #ffffff !important;
}

#tg-raw-wrapper .tg-raw-summary__grid {
    display: grid !important; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 30px !important; max-width: 1000px !important; margin: 0 auto !important;
}

#tg-raw-wrapper .tg-raw-summary__box {
    background: rgba(255, 255, 255, 0.05) !important; border: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 45px !important; border-radius: 40px !important;
}

/* 요약 섹션 아이콘 - 초강력 명시성 부여 */
html body #tg-raw-wrapper .tg-raw-summary__box i.fas {
    font-size: 65px !important;
    color: #ffffff !important;
    display: block !important;
    margin: 0 auto 30px !important;
    text-shadow: 0 0 30px rgba(16, 185, 129, 0.8) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

#tg-raw-wrapper .tg-raw-summary__box strong {
    color: #ffffff !important; font-size: 20px !important; display: block !important; margin-bottom: 12px !important;
}

#tg-raw-wrapper .tg-raw-summary__box p {
    color: rgba(255, 255, 255, 0.7) !important; font-size: 16px !important; margin-bottom: 0 !important;
}

/* 애니메이션 */
.tg-raw-motion {
    opacity: 0 !important; transform: translateY(30px) !important;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.tg-raw-motion.is-visible {
    opacity: 1 !important; transform: translateY(0) !important;
}

/* 반응형 */
@media (max-width: 950px) {
    #tg-raw-wrapper .tg-raw-guide { grid-template-columns: 1fr !important; }
}

@media (max-width: 768px) {
    #tg-raw-wrapper .tg-raw-hero__title { font-size: 34px !important; }
    #tg-raw-wrapper .tg-raw-section { padding: 40px 24px !important; }
    #tg-raw-wrapper .tg-raw-guide { gap: 20px !important; }
}
