@charset "utf-8";

/* ============================================
   텔레그램 메시지 자동 삭제 가이드 (v1.0.0)
   접두사: tg-autodel-
   테마: Privacy Guard Purple & Midnight Slate
============================================ */

:root {
    --autodel-primary: #a855f7; /* Purple 500 */
    --autodel-primary-dark: #7e22ce;
    --autodel-secondary: #0f172a; /* Slate 900 */
    --autodel-bg: #f8fafc;
    --autodel-white: #ffffff;
    --autodel-slate-900: #0f172a;
    --autodel-slate-800: #1e293b;
    --autodel-slate-600: #475569;
    --autodel-slate-100: #f1f5f9;
    
    --autodel-radius: 32px;
    --autodel-shadow: 0 20px 60px rgba(168, 85, 247, 0.1);
}

/* ============================================
   공통 리셋 및 기초 스타일
============================================ */
#tg-autodel-wrapper,
#tg-autodel-wrapper *,
#tg-autodel-wrapper *::before,
#tg-autodel-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-autodel-wrapper {
    max-width: 1100px !important;
    margin: 0 auto !important;
    width: 100% !important;
    font-family: 'Pretendard', sans-serif !important;
    background-color: var(--autodel-bg) !important;
    color: var(--autodel-slate-800) !important;
    padding-bottom: 80px !important;
    overflow: hidden !important;
}

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

#tg-autodel-wrapper mark {
    background: linear-gradient(120deg, #f3e8ff 0%, #e9d5ff 100%) !important;
    color: #6b21a8 !important;
    font-weight: 700 !important;
    padding: 2px 8px !important;
    border-radius: 6px !important;
}

/* 아이콘 시스템 */
#tg-autodel-wrapper .fas, 
#tg-autodel-wrapper .fab, 
#tg-autodel-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-autodel-wrapper .tg-autodel-hero {
    background: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.75)), url('hero.png') no-repeat center center / cover !important;
    padding: 160px 24px !important;
    text-align: center !important;
}

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

#tg-autodel-wrapper .tg-autodel-hero__badge {
    display: inline-flex !important; align-items: center !important; gap: 8px !important;
    background: rgba(168, 85, 247, 0.2) !important;
    color: #f3e8ff !important;
    border: 1px solid rgba(168, 85, 247, 0.4) !important;
    padding: 10px 24px !important; border-radius: 100px !important;
    font-size: 15px !important; font-weight: 900 !important;
    margin-bottom: 35px !important; backdrop-filter: blur(10px) !important;
}

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

#tg-autodel-wrapper .tg-autodel-hero__desc {
    font-size: 23px !important; line-height: 1.7 !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

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

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

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

#tg-autodel-wrapper .tg-autodel-section__icon-box {
    width: 68px !important; height: 68px !important;
    background: #f3e8ff !important; color: var(--autodel-primary) !important;
    border-radius: 20px !important; display: flex !important; align-items: center !important; justify-content: center !important;
    font-size: 32px !important;
}

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

/* 포인트 그리드 */
#tg-autodel-wrapper .tg-autodel-points {
    display: grid !important; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 30px !important; margin-top: 40px !important;
}

#tg-autodel-wrapper .tg-autodel-point-card {
    padding: 40px !important; background: #fff !important; border-radius: 30px !important;
    border: 1px solid var(--autodel-slate-100) !important; text-align: center !important;
    transition: all 0.3s ease !important;
}

#tg-autodel-wrapper .tg-autodel-point-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 30px 50px rgba(168, 85, 247, 0.1) !important;
}

#tg-autodel-wrapper .tg-autodel-point-card i {
    font-size: 44px !important; color: var(--autodel-primary) !important;
    margin-bottom: 25px !important; display: block !important;
}

#tg-autodel-wrapper .tg-autodel-point-card h4 {
    font-size: 22px !important; font-weight: 950 !important; margin-bottom: 15px !important;
}

#tg-autodel-wrapper .tg-autodel-point-card p {
    font-size: 16px !important; line-height: 1.7 !important; color: var(--autodel-slate-600) !important;
}

/* 스텝 리스트 */
#tg-autodel-wrapper .tg-autodel-steps {
    display: flex !important; flex-direction: column !important; gap: 15px !important;
}

#tg-autodel-wrapper .tg-autodel-step {
    display: flex !important; align-items: center !important; gap: 25px !important;
    padding: 30px !important; background: var(--autodel-slate-100) !important;
    border-radius: 20px !important; transition: all 0.3s ease !important;
}

#tg-autodel-wrapper .tg-autodel-step:hover {
    background: #fff !important; transform: translateX(10px) !important;
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.1) !important;
    border: 1px solid var(--autodel-primary) !important;
}

#tg-autodel-wrapper .tg-autodel-step__num {
    width: 40px !important; height: 40px !important;
    background: var(--autodel-primary) !important; color: #fff !important;
    border-radius: 12px !important; display: flex !important; align-items: center !important; justify-content: center !important;
    font-weight: 900 !important; font-size: 20px !important; flex-shrink: 0 !important;
}

#tg-autodel-wrapper .tg-autodel-step__text {
    font-size: 19px !important; font-weight: 700 !important; color: var(--autodel-slate-800) !important;
}

/* 팁 박스 */
#tg-autodel-wrapper .tg-autodel-tip {
    background: #faf5ff !important; padding: 40px !important; border-radius: 30px !important;
    border: 1px solid #e9d5ff !important; margin-top: 30px !important;
}

#tg-autodel-wrapper .tg-autodel-tip__label {
    display: inline-flex !important; align-items: center !important; gap: 8px !important;
    background: var(--autodel-primary) !important; color: #white !important;
    padding: 6px 20px !important; border-radius: 100px !important;
    font-weight: 900 !important; font-size: 14px !important; margin-bottom: 20px !important;
    color: #fff !important;
}

#tg-autodel-wrapper .tg-autodel-tip p {
    font-size: 18px !important; line-height: 1.7 !important; color: var(--autodel-slate-800) !important;
}

/* ============================================
   요약 섹션
============================================ */
#tg-autodel-wrapper .tg-autodel-summary {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
    padding: 100px 30px !important; border-radius: 50px !important;
    text-align: center !important; margin-top: 50px !important; box-shadow: 0 30px 100px rgba(0,0,0,0.2) !important;
}

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

#tg-autodel-wrapper .tg-autodel-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-autodel-wrapper .tg-autodel-summary__item {
    background: rgba(255, 255, 255, 0.03) !important; border: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 50px 40px !important; border-radius: 40px !important;
    text-align: center !important;
}

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

/* 반응형 */
@media (max-width: 768px) {
    #tg-autodel-wrapper .tg-autodel-hero__title { font-size: 34px !important; }
    #tg-autodel-wrapper .tg-autodel-section { padding: 40px 25px !important; }
    #tg-autodel-wrapper .tg-autodel-summary__title { font-size: 32px !important; }
}
