/* /style.css */

/* 스토어 버튼 공통 래퍼 */
.store-container {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* 개별 버튼 기본 스타일 (표준 CSS) */
.store-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 180px;
    height: 58px;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.2s ease;
    text-decoration: none;
    border: 2px solid transparent;
}

/* App Store 버튼: Black */
.btn-apple {
    background-color: #000000;
    color: #ffffff !important;
    border-color: #000000;
}
.btn-apple:hover {
    background-color: #333333;
}

/* Google Play 버튼: White/Border */
.btn-google {
    background-color: #ffffff;
    color: #1e293b; /* slate-800 */
    border: 2px solid #e2e8f0;
}
.btn-google:hover {
    border-color: #6366f1;
    color: #6366f1;
}

/* 버튼 내 텍스트 라벨링 */
.store-text {
    text-align: left;
    line-height: 1.2;
}
.store-text .top-label {
    font-size: 10px;
    font-weight: 500;
    opacity: 0.7;
    text-transform: uppercase;
}
.store-text .main-label {
    font-size: 17px;
}

/* 기능 리스트 아이템 공통 스타일 */
.feature-item {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid #f1f5f9;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

/* 다국어 제어 */
[data-lang="en"] { display: none; }