@charset "UTF-8";

/* 앱 다운로드 페이지 */
.dl-body {
    /* ↓ 이미지 경로를 교체하세요 */
    background: url(/images/bg00002.jpg) no-repeat center/cover fixed;
    min-height: 100vh;
    padding: 40px 20px;
    position: relative;
}
.dl-body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}
.dl-container {
    max-width: 480px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.dl-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    position: relative;
}

/* 닫기 버튼 */
.dl-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: var(--gray-pale, #f6f7f9);
    color: var(--gray-mid, #6f737a);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s;
}
.dl-close:hover {
    background: var(--gray-lightest, #f3f4f5);
}
.dl-close .material-symbols-sharp {
    font-size: 1.25em;
}

/* 상단 */
.dl-header {
    padding: 36px 24px 28px;
    text-align: center;
    border-bottom: 1px solid var(--gray-border, #e1e6e9);
}
.dl-logo {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: var(--primary, #0052d4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.dl-logo .material-symbols-sharp {
    font-size: 2.25em;
    color: #fff;
}
.dl-header h1 {
    font-size: 1.375em;
    font-weight: 700;
    color: var(--gray-dark, #252d3a);
    margin-bottom: 6px;
}
.dl-header p {
    font-size: 0.875em;
    color: var(--gray-mid, #6f737a);
    line-height: 1.5;
}

/* 본문 */
.dl-content {
    padding: 28px 24px 32px;
}

/* 기능 목록 */
.dl-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}
.dl-feat {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.dl-feat__icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dl-feat__icon .material-symbols-sharp {
    font-size: 1.375em;
    color: #fff;
}
.dl-feat__icon--blue { background: var(--primary, #0052d4); }
.dl-feat__icon--green { background: #16a34a; }
.dl-feat__icon--orange { background: #ea580c; }
.dl-feat__icon--purple { background: #7c3aed; }
.dl-feat__text h3 {
    font-size: 0.9375em;
    font-weight: 600;
    color: var(--gray-dark, #252d3a);
    margin-bottom: 2px;
}
.dl-feat__text p {
    font-size: 0.8125em;
    color: var(--gray-mid, #6f737a);
    line-height: 1.4;
}

/* 스토어 버튼 */
.dl-stores {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}
.dl-store {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}
.dl-store svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}
.dl-store--apple {
    background: var(--gray-dark, #252d3a);
    color: #fff;
}
.dl-store--apple:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.dl-store--google {
    background: #fff;
    color: var(--gray-dark, #252d3a);
    border: 1.5px solid var(--gray-border, #e1e6e9);
}
.dl-store--google:hover {
    background: var(--gray-pale, #f6f7f9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* QR 코드 */
.dl-qr {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-bottom: 20px;
}
.dl-qr__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.dl-qr__item canvas {
    display: block;
    border: 1px solid var(--gray-border, #e1e6e9);
    border-radius: 8px;
    padding: 6px;
}
.dl-qr__item p {
    font-size: 0.8125em;
    font-weight: 500;
    color: var(--gray-mid, #6f737a);
}

/* 준비중 배지 */
.dl-badge {
    display: inline-block;
    font-size: 0.6875em;
    font-weight: 600;
    color: var(--primary, #0052d4);
    background: #eff6ff;
    padding: 3px 10px;
    border-radius: 20px;
    margin-left: 8px;
    vertical-align: middle;
}

/* 홈 버튼 */
.dl-home {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-size: 0.9375em;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    background: var(--gray-pale, #f6f7f9);
    color: var(--gray-mid, #6f737a);
    transition: all 0.2s;
}
.dl-home:hover {
    background: var(--gray-lightest, #f3f4f5);
}
.dl-home .material-symbols-sharp {
    font-size: 1.25em;
}

/* 반응형 */
@media (max-width: 480px) {
    .dl-body {
        padding: 20px 16px;
    }
    .dl-header {
        padding: 28px 20px 24px;
    }
    .dl-content {
        padding: 24px 20px 28px;
    }
}
