@charset "utf-8";

/* ============================================
   텔레그램 스포일러 포맷 가이드
   접두사: tg-spl- (기존 사이트 오염 방지)
   CSS 변수 접두사: --tgsp-
   컬러 톤: 차콜 블랙(Charcoal Black) + 일렉트릭 시안(Electric Cyan)
============================================ */

:root {
    --tgsp-charcoal: #1e293b;
    --tgsp-charcoal-dark: #0f172a;
    --tgsp-charcoal-deep: #020617;
    --tgsp-charcoal-light: #f1f5f9;
    --tgsp-charcoal-border: #475569;
    --tgsp-cyan: #06b6d4;
    --tgsp-cyan-dark: #0891b2;
    --tgsp-cyan-light: #ecfeff;
    --tgsp-cyan-border: #67e8f9;
    --tgsp-slate-900: #0f172a;
    --tgsp-slate-700: #334155;
    --tgsp-slate-500: #64748b;
    --tgsp-slate-300: #cbd5e1;
    --tgsp-slate-200: #e2e8f0;
    --tgsp-slate-100: #f1f5f9;
    --tgsp-bg: #f0fdfa;
    --tgsp-white: #ffffff;
    --tgsp-amber: #f59e0b;
    --tgsp-radius: 14px;
}

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

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

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

.tg-spl-wrapper mark {
    background: linear-gradient(120deg, var(--tgsp-cyan-light) 0%, #67e8f950 100%);
    color: #164e63;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
}

/* ─── 히어로 ─── */
.tg-spl-hero {
    background: linear-gradient(145deg, #020617 0%, #0f172a 25%, #1e293b 50%, #06b6d4 100%);
    color: var(--tgsp-white);
    padding: 60px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tg-spl-hero::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border: 60px solid rgba(6, 182, 212, 0.06);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.tg-spl-hero::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border: 40px solid rgba(30, 41, 59, 0.08);
    border-radius: 50%;
    bottom: -60px;
    left: -50px;
}

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

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

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

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

.tg-spl-hero__float-icon--2 {
    top: 22%;
    right: 10%;
    animation-delay: 1s;
    font-size: 26px;
}

.tg-spl-hero__float-icon--3 {
    bottom: 20%;
    left: 12%;
    animation-delay: 2s;
}

.tg-spl-hero__float-icon--4 {
    bottom: 14%;
    right: 9%;
    animation-delay: 3s;
    font-size: 22px;
}

.tg-spl-hero__float-icon--5 {
    top: 50%;
    left: 5%;
    animation-delay: 4s;
    font-size: 24px;
}

.tg-spl-hero__float-icon--6 {
    top: 10%;
    right: 26%;
    animation-delay: 5s;
    font-size: 20px;
}

@keyframes tg-spl-float {

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

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

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

.tg-spl-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(6, 182, 212, 0.2);
    color: var(--tgsp-cyan-border);
    font-size: 14px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 22px;
    border: 1px solid rgba(103, 232, 249, 0.3);
    backdrop-filter: blur(4px);
}

.tg-spl-hero__badge i {
    font-size: 16px;
}

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

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

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

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

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

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

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

.tg-spl-section--accent {
    background: linear-gradient(135deg, var(--tgsp-charcoal-light) 0%, var(--tgsp-cyan-light) 100%);
    border-color: var(--tgsp-cyan-border);
}

.tg-spl-section--info {
    background: linear-gradient(135deg, #fffbeb 0%, var(--tgsp-cyan-light) 100%);
    border-color: #fcd34d;
}

.tg-spl-section--demo {
    background: linear-gradient(135deg, var(--tgsp-charcoal-light) 0%, var(--tgsp-cyan-light) 50%, var(--tgsp-slate-100) 100%);
    border-color: var(--tgsp-cyan-border);
}

.tg-spl-section--dark {
    background: linear-gradient(135deg, #020617 0%, #1e293b 100%);
    border-color: var(--tgsp-charcoal);
    color: var(--tgsp-slate-300);
}

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

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

.tg-spl-section__num--accent {
    color: var(--tgsp-charcoal);
    opacity: 0.1;
}

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

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

.tg-spl-section__title i {
    margin-right: 6px;
}

.tg-spl-section__title--light {
    color: var(--tgsp-white);
}

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

/* ─── 스텝 ─── */
.tg-spl-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

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

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

.tg-spl-step--highlight {
    border-color: var(--tgsp-cyan-border);
    background-color: var(--tgsp-cyan-light);
}

.tg-spl-step__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--tgsp-charcoal) 0%, var(--tgsp-charcoal-dark) 100%);
    color: var(--tgsp-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.tg-spl-step__icon--key {
    background: linear-gradient(135deg, var(--tgsp-cyan) 0%, var(--tgsp-charcoal) 100%);
    width: 46px;
    height: 46px;
    font-size: 20px;
    box-shadow: 0 0 18px rgba(6, 182, 212, 0.25);
}

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

.tg-spl-step__num {
    font-size: 10px;
    font-weight: 800;
    color: var(--tgsp-charcoal);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.tg-spl-step__num--key {
    color: var(--tgsp-cyan-dark);
    font-size: 11px;
}

.tg-spl-step__title {
    font-size: 15px;
    font-weight: 800;
    color: var(--tgsp-slate-900);
    margin-bottom: 2px;
}

.tg-spl-step__text {
    font-size: 13px;
    line-height: 1.6;
}

/* 팁 박스 */
.tg-spl-tip-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 10px;
    background-color: #fffbeb;
    border: 1px solid #fcd34d;
}

.tg-spl-tip-box__icon {
    font-size: 18px;
    color: var(--tgsp-amber);
    flex-shrink: 0;
    padding-top: 2px;
}

.tg-spl-tip-box__body {
    font-size: 13px;
    line-height: 1.6;
}

/* ─── 단축키 카드 ─── */
.tg-spl-shortcut-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tg-spl-shortcut-card {
    padding: 22px;
    border-radius: 12px;
    text-align: center;
    background-color: var(--tgsp-charcoal-light);
    border: 1px solid var(--tgsp-slate-200);
}

.tg-spl-shortcut-card--primary {
    background: linear-gradient(135deg, var(--tgsp-charcoal-deep), var(--tgsp-charcoal));
    border-color: var(--tgsp-charcoal-border);
}

.tg-spl-shortcut-card__keys {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 10px;
}

.tg-spl-shortcut-card__key {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--tgsp-white);
    font-size: 16px;
    font-weight: 900;
    font-family: 'Consolas', monospace;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.tg-spl-shortcut-card__key--accent {
    background-color: var(--tgsp-cyan);
    border-color: var(--tgsp-cyan-border);
    box-shadow: 0 0 16px rgba(6, 182, 212, 0.4);
}

.tg-spl-shortcut-card__plus {
    color: var(--tgsp-cyan-border);
    font-size: 18px;
    font-weight: 900;
}

.tg-spl-shortcut-card__desc {
    font-size: 13px;
}

.tg-spl-shortcut-card--primary .tg-spl-shortcut-card__desc {
    color: var(--tgsp-slate-300);
}

.tg-spl-shortcut-card--primary .tg-spl-shortcut-card__desc strong {
    color: var(--tgsp-cyan-border);
}

.tg-spl-shortcut-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    background-color: var(--tgsp-charcoal);
    color: var(--tgsp-white);
    margin-bottom: 8px;
}

.tg-spl-shortcut-card__desc i {
    font-size: 9px;
    margin: 0 3px;
    color: var(--tgsp-cyan);
}

/* ─── 데모: 스포일러 시뮬레이션 ─── */
.tg-spl-demo {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.tg-spl-demo__chat {
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--tgsp-charcoal-border);
    background-color: var(--tgsp-white);
}

.tg-spl-demo__chat-header {
    padding: 10px 16px;
    background: linear-gradient(135deg, var(--tgsp-charcoal-deep) 0%, var(--tgsp-charcoal) 100%);
    color: var(--tgsp-white);
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tg-spl-demo__chat-members {
    margin-left: auto;
    font-size: 11px;
    color: var(--tgsp-slate-300);
}

.tg-spl-demo__chat-body {
    padding: 12px;
    min-height: 220px;
}

/* 메시지 버블 */
.tg-spl-demo__msg {
    margin-bottom: 10px;
    max-width: 88%;
}

.tg-spl-demo__msg:last-child {
    margin-bottom: 0;
}

.tg-spl-demo__msg-sender {
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 3px;
    padding-left: 2px;
}

.tg-spl-demo__msg-bubble {
    padding: 10px 14px;
    border-radius: 12px;
    border-bottom-left-radius: 4px;
    font-size: 13px;
    line-height: 1.5;
}

/* 스포일러 텍스트 */
.tg-spl-demo__spoiler {
    display: inline;
    position: relative;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.4s ease;
}

/* 숨김 상태: 반짝이는 애니메이션 */
.tg-spl-demo__spoiler--hidden {
    background: linear-gradient(90deg,
            var(--tgsp-charcoal) 0%, var(--tgsp-charcoal-border) 25%,
            var(--tgsp-cyan-dark) 50%, var(--tgsp-charcoal-border) 75%, var(--tgsp-charcoal) 100%);
    background-size: 400% 100%;
    color: transparent;
    animation: tg-spl-shimmer 2s linear infinite;
    user-select: none;
    padding: 1px 0;
}

@keyframes tg-spl-shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* 공개 상태 */
.tg-spl-demo__spoiler--revealed {
    background-color: rgba(6, 182, 212, 0.1);
    color: inherit;
    padding: 1px 4px;
}

/* 사이드 패널 */
.tg-spl-demo__side {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tg-spl-demo__info-card {
    padding: 18px;
    border-radius: 12px;
    background-color: var(--tgsp-white);
    border: 1px solid var(--tgsp-cyan-border);
}

.tg-spl-demo__info-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--tgsp-charcoal) 0%, var(--tgsp-cyan) 100%);
    color: var(--tgsp-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 10px;
}

.tg-spl-demo__info-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--tgsp-slate-900);
    margin-bottom: 8px;
}

.tg-spl-demo__info-list {
    list-style: none;
}

.tg-spl-demo__info-list li {
    font-size: 12px;
    padding: 2px 0;
    color: var(--tgsp-slate-500);
    display: flex;
    align-items: center;
    gap: 6px;
}

.tg-spl-demo__info-list li i {
    color: var(--tgsp-cyan);
    font-size: 10px;
}

.tg-spl-demo__counter {
    padding: 14px;
    border-radius: 10px;
    background-color: var(--tgsp-charcoal-light);
    border: 1px solid var(--tgsp-slate-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tg-spl-demo__counter-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--tgsp-slate-500);
}

.tg-spl-demo__counter-value {
    font-size: 14px;
    font-weight: 900;
    color: var(--tgsp-cyan-dark);
}

.tg-spl-demo__reset-btn {
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid var(--tgsp-slate-200);
    background-color: var(--tgsp-white);
    color: var(--tgsp-slate-500);
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.tg-spl-demo__reset-btn:hover {
    background-color: var(--tgsp-slate-100);
}

/* ─── 유의사항(Notice) ─── */
.tg-spl-notice {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 22px;
    border-radius: 12px;
    background-color: var(--tgsp-white);
    border: 1px solid #fcd34d;
}

.tg-spl-notice__icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, #a3e635, #22c55e);
    color: var(--tgsp-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.tg-spl-notice__body {
    flex: 1;
}

.tg-spl-notice__title {
    font-size: 16px;
    font-weight: 800;
    color: var(--tgsp-slate-900);
    margin-bottom: 4px;
}

.tg-spl-notice__text {
    font-size: 14px;
    line-height: 1.6;
}

.tg-spl-notice__text i {
    font-size: 12px;
    margin: 0 1px;
}

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

.tg-spl-tip {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(6, 182, 212, 0.08);
    padding: 22px;
    border-radius: 10px;
    position: relative;
}

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

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

.tg-spl-tip__title i {
    color: var(--tgsp-cyan-border);
    margin-right: 4px;
}

.tg-spl-tip__text {
    font-size: 14px;
    color: var(--tgsp-slate-300);
    line-height: 1.7;
}

.tg-spl-tip__text strong {
    color: var(--tgsp-white);
}

/* ─── 결론 ─── */
.tg-spl-summary {
    background: linear-gradient(145deg, #020617 0%, #0f172a 25%, #1e293b 55%, #06b6d4 100%);
    color: var(--tgsp-white);
    padding: 44px 28px;
    border-radius: var(--tgsp-radius);
    text-align: center;
    box-shadow: 0 10px 30px rgba(2, 6, 23, 0.5);
}

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

.tg-spl-summary__body p {
    font-size: 16px;
    margin-bottom: 14px;
    color: var(--tgsp-cyan-border);
}

.tg-spl-summary strong {
    color: var(--tgsp-white);
}

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

.tg-spl-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(6, 182, 212, 0.1);
    border-radius: 10px;
}

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

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

.tg-spl-summary__highlight span {
    font-size: 11px;
    color: var(--tgsp-cyan-border);
    text-align: center;
}

.tg-spl-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-spl-summary__checklist li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #a5f3fc;
}

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

.tg-spl-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(--tgsp-cyan-border);
}

.tg-spl-summary__checklist strong {
    color: var(--tgsp-white);
}

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

.tg-spl-summary__footer strong {
    color: var(--tgsp-white);
}

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

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

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

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

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

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

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

    .tg-spl-shortcut-cards {
        flex-direction: row;
    }

    .tg-spl-shortcut-card {
        flex: 1;
    }

    .tg-spl-demo {
        grid-template-columns: 1fr 220px;
    }

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

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

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

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

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

/* ============================================
   스크롤 등장 애니메이션
============================================ */
.tg-spl-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-spl-motion.is-visible {
    opacity: 1;
    transform: translateY(0);
}