@charset "utf-8";

/* ============================================
   텔레그램 흔적 없는 삭제 가이드 (v1.0.0)
   접두사: tg-shred-
   테마: Privacy Black & Security Gold
============================================ */

:root {
    --shred-primary: #fbbf24; /* Amber 400 (Gold) */
    --shred-primary-dark: #b45309;
    --shred-secondary: #0f172a; /* Slate 900 */
    --shred-bg: #0a0a0a; /* Dark Black */
    --shred-card-bg: #171717;
    --shred-white: #ffffff;
    --shred-slate-400: #94a3b8;
    --shred-slate-800: #1e293b;
    --shred-slate-100: #f1f5f9;
    
    --shred-radius: 32px;
    --shred-shadow: 0 20px 60px rgba(251, 191, 36, 0.1);
}

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

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

#tg-shred-wrapper mark {
    background: linear-gradient(120deg, #451a03 0%, #78350f 100%) !important;
    color: #fbbf24 !important;
    font-weight: 700 !important;
    padding: 2px 8px !important;
    border-radius: 6px !important;
}

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

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

#tg-shred-wrapper .tg-shred-hero__badge {
    display: inline-flex !important; align-items: center !important; gap: 8px !important;
    background: rgba(251, 191, 36, 0.15) !important;
    color: var(--shred-primary) !important;
    border: 1px solid rgba(251, 191, 36, 0.3) !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-shred-wrapper .tg-shred-hero__title {
    font-size: 56px !important; font-weight: 950 !important; line-height: 1.2 !important;
    margin-bottom: 25px !important; color: #ffffff !important;
    text-shadow: 0 10px 40px rgba(0,0,0,0.8) !important;
}

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

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

#tg-shred-wrapper .tg-shred-section {
    background: var(--shred-card-bg) !important; padding: 60px 45px !important; border-radius: var(--shred-radius) !important;
    box-shadow: var(--shred-shadow) !important; border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

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

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

#tg-shred-wrapper .tg-shred-section__title {
    font-size: 32px !important; font-weight: 950 !important; color: #ffffff !important;
}

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

#tg-shred-wrapper .tg-shred-point-card {
    padding: 45px !important; background: rgba(255, 255, 255, 0.02) !important; border-radius: 30px !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important; text-align: center !important;
    transition: all 0.3s ease !important;
}

#tg-shred-wrapper .tg-shred-point-card:hover {
    transform: translateY(-10px) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: var(--shred-primary) !important;
}

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

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

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

/* 리스트 스타일 */
#tg-shred-wrapper .tg-shred-list {
    display: flex !important; flex-direction: column !important; gap: 15px !important;
}

#tg-shred-wrapper .tg-shred-list__item {
    display: flex !important; align-items: flex-start !important; gap: 18px !important;
    padding: 24px !important; background: rgba(255, 255, 255, 0.03) !important; border-radius: 20px !important;
}

#tg-shred-wrapper .tg-shred-list__bullet {
    width: 10px !important; height: 10px !important; background: var(--shred-primary) !important;
    border-radius: 50% !important; margin-top: 8px !important; flex-shrink: 0 !important;
}

#tg-shred-wrapper .tg-shred-list__text {
    font-size: 18px !important; line-height: 1.6 !important; color: #e2e8f0 !important;
}

/* 강조 박스 */
#tg-shred-wrapper .tg-shred-note {
    background: rgba(251, 191, 36, 0.05) !important; padding: 35px !important; border-radius: 25px !important;
    border: 1px dashed var(--shred-primary) !important; margin-top: 30px !important;
}

#tg-shred-wrapper .tg-shred-note__head {
    display: flex !important; align-items: center !important; gap: 12px !important;
    margin-bottom: 15px !important; color: var(--shred-primary) !important; font-weight: 800 !important; font-size: 18px !important;
}

/* ============================================
   요약 섹션
============================================ */
#tg-shred-wrapper .tg-shred-summary {
    background: linear-gradient(135deg, #171717 0%, #000000 100%) !important;
    padding: 100px 30px !important; border-radius: 60px !important;
    text-align: center !important; margin-top: 50px !important;
    border: 1px solid rgba(251, 191, 36, 0.2) !important;
}

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

#tg-shred-wrapper .tg-shred-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-shred-wrapper .tg-shred-summary__item {
    background: rgba(255, 255, 255, 0.02) !important; border: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 55px 40px !important; border-radius: 40px !important; transition: all 0.4s ease !important;
}

#tg-shred-wrapper .tg-shred-summary__item:hover {
    background: rgba(251, 191, 36, 0.05) !important;
    transform: scale(1.05) !important;
}

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

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