/* ✨ 스크롤바 숨기기 (기능은 유지됨) */
::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}
body {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* style.css - v141 */

/* ---- 1. 기본 설정 ---- */
:root { --text-scale: 1; --brand-color: #5f27cd; }
* { box-sizing: border-box; margin: 0; padding: 0; font-family: "Pretendard Variable", Pretendard, sans-serif; -webkit-tap-highlight-color: transparent; }
body { background-color: #F5F6F8; display: flex; justify-content: center; min-height: 100vh; padding: 0; margin: 0; }

/* 로딩 스크린 */
#loading-screen {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: #ffffff;
    z-index: 99999;
    display: flex; justify-content: center; align-items: center;
    transition: opacity 0.4s ease-out;
}
.loading-icon-box {
    width: 70px; height: 70px;
    position: absolute; top: 50%; left: 50%; margin-top: -35px; margin-left: -35px;
    display: flex; justify-content: center; align-items: center;
    animation: pulse-soft 2s infinite ease-in-out;
    z-index: 1;
}
.loading-icon { width: 60px; height: 60px; border-radius: 14px; }

@keyframes pulse-soft {
    0% { transform: scale(0.95); opacity: 0.9; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.9; }
}

/* ---- 2. 인앱 브라우저 ---- */
.internal-browser {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: #fff;
    z-index: 5000;
    display: none; flex-direction: column;
}
.internal-browser.show { display: flex; }

/* 브라우저 헤더 (크롬 스타일) */
.browser-header {
    height: 56px;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    z-index: 5002;
}

/* 네비게이션 버튼 그룹 (뒤로, 앞으로, 새로고침) */
.nav-group {
    display: flex;
    gap: 4px;
}
.nav-btn {
    background: transparent;
    border: none;
    width: 32px; height: 32px;
    border-radius: 50%;
    font-size: 18px;
    color: #444;
    cursor: pointer;
    display: flex; justify-content: center; align-items: center;
    transition: background 0.2s;
}
.nav-btn:hover { background: #f0f0f0; }

/* 주소창 */
.url-bar {
    flex: 1;
    background: #f1f3f5;
    height: 36px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    gap: 8px;
    overflow: hidden;
}
.lock-icon { font-size: 12px; color: #888; }
.url-text {
    font-size: 13px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}

/* 홈 버튼 (닫기 역할) */
.nav-home-btn {
    background: transparent;
    border: none;
    width: 36px; height: 36px;
    font-size: 20px;
    cursor: pointer;
    display: flex; justify-content: center; align-items: center;
    border-radius: 50%;
    color: #444;
}
.nav-home-btn:hover { background: #f0f0f0; }

.floating-close-btn-bottom {
    position: absolute;
    bottom: 25px; /* 위치 살짝 조정 */
    left: 50%;
    transform: translateX(-50%);
    width: 36px;    /* 크기 축소 46->36 */
    height: 36px;
    background: rgba(0,0,0,0.3); /* 투명도 증가 0.5->0.3 */
    color: white;
    border-radius: 50%;
    border: none;
    font-size: 16px; /* 아이콘 축소 */
    z-index: 5003;
    display: none;
    justify-content: center; align-items: center;
    backdrop-filter: blur(2px);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15); /* 그림자 은은하게 */
    transition: background 0.2s, transform 0.2s;
}
.floating-close-btn-bottom:active {
    transform: translateX(-50%) scale(0.9);
    background: rgba(0,0,0,0.5);
}

.browser-content { flex: 1; position: relative; width: 100%; height: 100%; overflow: hidden; display: flex; justify-content: center; align-items: center; background: #fff; }
#browser-frame { width: 100%; height: 100%; border: none; background: #fff; position: relative; z-index: 2; }

/* ---- 3. 메인 레이아웃 ---- */
.mobile-wrapper {
    width: 100%; max-width: 100%; background: #F5F6F8; min-height: 100vh;
    box-shadow: none; transition: max-width 0.3s ease;
    padding: 20px 16px; margin: 0 auto; position: relative; z-index: 1; padding-bottom: 140px;
}

.hero-banner { background: linear-gradient(135deg, #341f97 0%, #5f27cd 50%, #9980FA 100%); border-radius: 32px; padding: 40px 32px; color: white; position: relative; overflow: hidden; box-shadow: 0 20px 40px rgba(95, 39, 205, 0.25), 0 10px 10px rgba(95, 39, 205, 0.1); margin-bottom: 24px; display: flex; align-items: center; border: 1px solid rgba(255, 255, 255, 0.1); width: 100%; }
.hero-banner::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 50%; background: linear-gradient(to bottom, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 100%); pointer-events: none; z-index: 1; }
.banner-content { position: relative; z-index: 2; width: 100%; }
.hero-banner h1 { font-size: 40px; font-weight: 900; margin-bottom: 8px; letter-spacing: -1px; text-shadow: 0 2px 10px rgba(0,0,0,0.1); line-height: 1; }
.dot { color: #C445FF; }
.hero-banner p { font-size: 15px; opacity: 0.95; line-height: 1.4; font-weight: 500; }
.banner-graphic { position: absolute; right: 0; top: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
.light-bloom-1 { position: absolute; width: 200px; height: 200px; background: radial-gradient(circle, rgba(153, 128, 250, 0.4) 0%, rgba(255,255,255,0) 70%); top: -80px; right: -50px; filter: blur(30px); mix-blend-mode: screen; }
.light-bloom-2 { position: absolute; width: 180px; height: 180px; background: radial-gradient(circle, rgba(217, 128, 250, 0.3) 0%, rgba(255,255,255,0) 70%); bottom: -60px; right: 20px; filter: blur(40px); mix-blend-mode: screen; }

.tabs-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; width: 100%; gap: 10px; }
.tabs-container { display: flex; gap: 8px; overflow-x: auto; flex-grow: 1; padding-bottom: 2px; }
.tab { background: white; border: none; padding: 8px 18px; border-radius: 20px; font-size: calc(14px * var(--text-scale)); font-weight: 700; color: #8898AA; cursor: pointer; transition: 0.2s; box-shadow: 0 2px 8px rgba(0,0,0,0.02); white-space: nowrap; }
.tab.active { background: #111; color: white; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.header-buttons { display: flex; gap: 8px; }
.icon-btn { background: white; border: none; width: 36px; height: 36px; border-radius: 50%; font-size: 18px; cursor: pointer; display: flex; justify-content: center; align-items: center; box-shadow: 0 2px 8px rgba(0,0,0,0.05); flex-shrink: 0; transition: all 0.2s; }
.icon-btn.active { background: #111; color: white; }

/* ---- 4. 리스트 및 카드 스타일 ---- */
.list-container { display: flex; flex-direction: column; gap: 8px; padding-bottom: 40px; width: 100%; }
.list-card { display: flex; align-items: center; background: white; padding: 12px 14px; border-radius: 24px; box-shadow: 0 4px 15px rgba(0,0,0,0.02); border: 1px solid rgba(0,0,0,0.03); cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; width: 100%; touch-action: pan-y; }
.list-card:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.06); }
.share-card { background: #FFFDE7; border: 1px solid rgba(255, 200, 0, 0.2); }

.app-icon-img { width: 46px; height: 46px; border-radius: 22px; margin-right: 14px; object-fit: cover; box-shadow: 0 4px 10px rgba(0,0,0,0.08); flex-shrink: 0; }
.icon-box { width: 46px; height: 46px; border-radius: 22px; display: flex; justify-content: center; align-items: center; font-size: 22px; margin-right: 14px; color: white; flex-shrink: 0; box-shadow: 0 6px 14px rgba(0,0,0,0.05); }

.text-box { flex-grow: 1; }
.text-box h3 { font-size: calc(16px * var(--text-scale)); font-weight: 800; color: #111; margin-bottom: 3px; }
.text-box p { font-size: calc(12px * var(--text-scale)); color: #8898AA; font-weight: 500; }
.btn-go { width: 34px; height: 34px; border-radius: 50%; background: #F5F7FA; border: none; color: #111; font-size: 14px; font-weight: bold; cursor: pointer; display: flex; justify-content: center; align-items: center; transition: 0.2s; }
.list-card:hover .btn-go { background: #111; color: white; }

.list-container.grid-view { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px 8px; padding: 10px 0 40px 0; }
.list-container.grid-view .list-card { flex-direction: column; padding: 0; background: transparent; box-shadow: none; border: none; align-items: center; }
.list-container.grid-view .list-card:hover { transform: translateY(-3px); box-shadow: none; }
.list-container.grid-view .app-icon-img, .list-container.grid-view .icon-box { width: 60px; height: 60px; margin: 0 0 8px 0; border-radius: 22px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.list-container.grid-view .text-box { width: 100%; text-align: center; }
.list-container.grid-view .text-box h3 { font-size: 11px; font-weight: 400; margin: 0; color: #333; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }
.list-container.grid-view .text-box p, .list-container.grid-view .btn-go { display: none; }

.sortable-ghost { opacity: 0.4; background: #e9ecef; border: 2px dashed #ccc; box-shadow: none; }
.sortable-drag { opacity: 1; background: white; box-shadow: 0 15px 30px rgba(0,0,0,0.2); transform: scale(1.05); z-index: 9999; }
body.hide-mode .list-card { animation: wiggle 0.25s infinite alternate ease-in-out; }
body.hide-mode .list-card { border: none; opacity: 1; }
body.hide-mode .app-icon-img, body.hide-mode .icon-box { border: 2px dashed #ff6b6b; }
body.hide-mode .btn-go { display: none; }
.list-card.user-hidden { display: none !important; }
body.hide-mode .list-card.user-hidden { display: flex !important; opacity: 0.4; filter: grayscale(100%); animation: none; }
body.hide-mode #card-share, body.hide-mode #card-market { animation: none; opacity: 1; filter: none; cursor: default; }
body.hide-mode #card-share .app-icon-img, body.hide-mode #card-share .icon-box, body.hide-mode #card-market .app-icon-img, body.hide-mode #card-market .icon-box { border: none; }
@keyframes wiggle { 0% { transform: rotate(-2deg); } 100% { transform: rotate(2deg); } }

/* ---- 5. 설치 배너 ---- */
.install-banner { position: fixed; bottom: -150px; left: 0; right: 0; width: 100%; max-width: 500px; margin: 0 auto; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); border-top-left-radius: 24px; border-top-right-radius: 24px; box-shadow: 0 -5px 30px rgba(0,0,0,0.15); padding: 20px; z-index: 9000; transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); border: 1px solid rgba(0,0,0,0.05); }
.install-banner.show { bottom: 0; }
.install-content { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.install-text { strong { display: block; font-size: 16px; font-weight: 800; color: #111; margin-bottom: 4px; } }
.install-text p { font-size: 13px; color: #666; margin: 0; }
.banner-btn { padding: 10px 20px; border-radius: 20px; border: none; font-weight: 700; font-size: 14px; cursor: pointer; }
.banner-btn.primary { background: var(--brand-color); color: white; box-shadow: 0 4px 12px rgba(95, 39, 205, 0.3); }
.install-footer { display: flex; justify-content: center; align-items: center; gap: 10px; font-size: 12px; color: #999; }
.text-btn { background: none; border: none; color: #888; font-size: 12px; cursor: pointer; padding: 5px; text-decoration: underline; }
.divider { color: #ddd; }

/* ---- 6. 모달 및 플레이어 ---- */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); z-index: 20000; display: none; justify-content: center; align-items: center; opacity: 0; transition: opacity 0.3s ease; pointer-events: none; }
.modal-overlay.show { opacity: 1; pointer-events: auto; }
.modal-content { background: white; width: 90%; max-width: 400px; border-radius: 32px; padding: 30px; box-shadow: 0 10px 40px rgba(0,0,0,0.2); text-align: center; transform: translateY(20px); transition: transform 0.3s ease; }
.modal-overlay.show .modal-content { transform: translateY(0); }
.modal-header h3 { font-size: 20px; font-weight: 800; color: #111; margin-bottom: 8px; }
.modal-header p { font-size: 14px; color: #666; margin-bottom: 24px; }
.modal-close-btn { background: #111; color: white; border: none; padding: 12px 30px; border-radius: 30px; font-weight: 700; cursor: pointer; font-size: 14px; }
.modal-close-btn.secondary { background: #eee; color: #333; margin-top: 10px; }

.player-header { margin-bottom: 16px; }
.video-container { position: relative; width: 100%; padding-bottom: 56.25%; height: 0; background: #000; border-radius: 12px; overflow: hidden; margin-bottom: 20px; }
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.player-info { margin-bottom: 20px; font-size: 12px; color: #666; line-height: 1.5; }
.player-info p { margin-bottom: 8px; }
.copyright-notice { font-size: 13px; color: #999; letter-spacing: -0.5px; margin-top: 10px; }

.player-buttons { display: flex; gap: 10px; justify-content: center; width: 100%; margin-top: 20px; }
.action-btn { flex: 1; padding: 14px; border-radius: 20px; border: none; font-weight: 700; font-size: 14px; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: center; gap: 6px; }
#shuffle-play-btn { background: var(--brand-color); color: white; box-shadow: 0 4px 12px rgba(95, 39, 205, 0.3); }
#shuffle-play-btn:hover { background: #4a1eb8; transform: translateY(-2px); }
#back-to-menu-btn { background: #F1F3F5; color: #444; border: 1px solid #E9ECEF; }
#back-to-menu-btn:hover { background: #E9ECEF; }

.float-icon-btn {
    width: 100%; height: 40px; margin-top: 10px;
    background: #E0E7FF; color: var(--brand-color);
    border: none; border-radius: 12px;
    cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 6px;
    font-size: 13px; font-weight: 700; box-shadow: 0 2px 8px rgba(95, 39, 205, 0.3); transition: background 0.2s;
}
.float-icon-btn:hover { background: #d0dbfc; }

.header-settings-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #8898AA;
    padding: 5px;
    transition: 0.2s;
}
.header-settings-btn:hover { color: #111; transform: rotate(45deg); }

/* 미니 모드 스타일 */
.modal-overlay.mini-mode { background: transparent; pointer-events: none; align-items: flex-end; justify-content: flex-end; }
.modal-overlay.mini-mode .modal-content {
    width: 280px; padding: 0 !important; border-radius: 12px; margin: 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    pointer-events: auto; position: fixed; bottom: 20px; right: 20px;
    touch-action: none; border: none; overflow: hidden;
}

/* 미니 모드일 때 숨길 요소들 */
.modal-overlay.mini-mode .player-info,
.modal-overlay.mini-mode .player-buttons,
.modal-overlay.mini-mode .modal-close-btn,
.modal-overlay.mini-mode #player-title,
.modal-overlay.mini-mode .player-header,
.modal-overlay.mini-mode .float-icon-btn { display: none !important; }

.modal-overlay.mini-mode .video-container { margin-bottom: 0 !important; border-radius: 0; }

.mini-controls { display: none; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1000; }
.modal-overlay.mini-mode .mini-controls { display: block; }

.mini-btn {
    position: absolute;
    background: transparent;
    color: white;
    border: none;
    width: 36px; height: 36px;
    font-size: 18px;
    cursor: pointer;
    z-index: 1002;
    display: flex; justify-content: center; align-items: center;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}
.mini-btn.left-top { top: 5px; left: 5px; }
.mini-btn.right-top { top: 5px; right: 5px; }
#maximize-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1001; cursor: move; }


/* ---- 7. 설정 및 기타 ---- */
.mood-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.mood-btn { background: #F5F7FA; border: 1px solid #EEF0F5; border-radius: 20px; padding: 20px 10px; cursor: pointer; transition: 0.2s; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.mood-btn:hover { background: #E0E7FF; border-color: #5f27cd; transform: translateY(-2px); }
.mood-emoji { font-size: 28px; }
.mood-btn span:last-child { font-size: 13px; font-weight: 700; color: #444; }
.ios-guide { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 24px; font-size: 20px; }
.guide-text { font-size: 14px; font-weight: 800; color: #5f27cd; }
.guide-icon { font-size: 24px; }
.settings-body { text-align: left; margin-bottom: 24px; }
.setting-item { margin-bottom: 20px; }
.setting-item label { display: block; font-weight: 700; color: #333; margin-bottom: 8px; }
.range-container { display: flex; align-items: center; gap: 10px; color: #555; padding: 0 4px; }
input[type=range] { flex-grow: 1; accent-color: var(--brand-color); }
.view-mode-selector { display: flex; gap: 8px; background: #f1f3f5; padding: 4px; border-radius: 12px; }
.mode-btn { flex: 1; border: none; background: transparent; padding: 8px; border-radius: 8px; font-size: 13px; font-weight: 600; color: #888; cursor: pointer; transition: 0.2s; }
.mode-btn.active { background: white; color: #333; box-shadow: 0 2px 6px rgba(0,0,0,0.05); }
.contact-link { width: 100%; display: flex; align-items: center; gap: 10px; text-decoration: none; padding: 14px 16px; border-radius: 16px; background: #f1f3f5; border: none; color: #333; font-weight: 600; font-size: 15px; cursor: pointer; transition: all 0.2s; }
.contact-link:hover { background: #e9ecef; }
.settings-action-btn { width: 100%; display: flex; align-items: center; gap: 10px; text-decoration: none; padding: 14px 16px; border-radius: 16px; border: none; cursor: pointer; font-size: 15px; transition: background-color 0.2s; }
#install-app-btn { background: white; border: 2px solid var(--brand-color); color: var(--brand-color); box-shadow: none; }
#install-app-btn:hover { background: #F3F0FF; }
#install-app-btn .install-btn-text h4 { color: #333; margin-bottom: 3px; }
#install-app-btn .install-btn-text p { color: #888; }
.install-btn-layout { padding: 12px 16px; width: 100%; display: flex; align-items: center; border-radius: 16px; cursor: pointer; text-decoration: none; }
.install-btn-img { width: 42px; height: 42px; border-radius: 12px; margin-right: 12px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
.install-btn-text { text-align: left; flex: 1; }
.install-btn-text h4 { font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.install-btn-text p { font-size: 12px; font-weight: 500; }

.bible-btn-container { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.bible-link-btn {
    display: flex; align-items: center;
    padding: 16px 20px; border-radius: 20px;
    background: #fff; color: #333; text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.2s; position: relative; overflow: hidden;
    cursor: pointer;
}
.bible-link-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.08); border-color: var(--brand-color); }
.btn-icon-area { font-size: 24px; margin-right: 16px; background: #F8F9FA; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 14px; }
.btn-text-area { flex: 1; text-align: left; }
.btn-title { display: block; font-size: 16px; font-weight: 800; color: #333; margin-bottom: 2px; }
.btn-sub { display: block; font-size: 12px; color: #888; font-weight: 500; }
.btn-arrow { font-size: 18px; color: #ccc; font-weight: bold; }
.bible-link-btn:hover .btn-arrow { color: var(--brand-color); }

/* PC 버전 다운로드 카드 스타일 */
.pc-download-card {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #F8F5FF 0%, #E5D9F2 100%);
    padding: 18px 22px;
    border-radius: 24px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(95, 39, 205, 0.08);
    border: 1px solid rgba(95, 39, 205, 0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    margin-top: 10px;
    cursor: pointer;
}
.pc-download-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(95, 39, 205, 0.15);
    border-color: rgba(95, 39, 205, 0.2);
}
.pc-download-card:active { transform: scale(0.98); }

.pc-icon-box {
    width: 54px; height: 54px;
    background: white;
    border-radius: 18px;
    display: flex; justify-content: center; align-items: center;
    font-size: 28px;
    margin-right: 18px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    color: var(--brand-color);
    flex-shrink: 0;
}
.pc-text-box { flex: 1; z-index: 1; }
.pc-title {
    display: block;
    font-size: 17px; font-weight: 800;
    color: #222;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}
.pc-sub {
    display: block;
    font-size: 13px; font-weight: 500;
    color: #777;
}
.pc-bg-graphic {
    position: absolute;
    right: -25px; bottom: -25px;
    font-size: 120px;
    opacity: 0.04;
    color: var(--brand-color);
    transform: rotate(-20deg);
    pointer-events: none;
}


@media (min-width: 768px) {
    body { background-color: #E9ECEF; padding: 40px 0; align-items: flex-start; }
    .mobile-wrapper { max-width: 1000px; border-radius: 40px; box-shadow: 0 0 50px rgba(0,0,0,0.05); margin: 0 auto; padding: 40px; }
    .list-container.grid-view { grid-template-columns: repeat(6, 1fr); gap: 30px; }
    .list-container { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .list-card { flex-direction: column; align-items: flex-start; padding: 24px; height: 100%; position: relative; }
    .app-icon-img { width: 60px; height: 60px; margin-right: 0; margin-bottom: 16px; border-radius: 22px; }
    .icon-box { margin-bottom: 16px; width: 60px; height: 60px; font-size: 28px; border-radius: 22px; }
    .text-box { margin-bottom: 16px; }
    .text-box h3 { font-size: 18px; }
    .text-box p { font-size: 14px; }
    .btn-go { position: absolute; bottom: 24px; right: 24px; width: 40px; height: 40px; }
}
@media (min-width: 1200px) { .list-container { grid-template-columns: repeat(3, 1fr); } }