### ✅ 최종적으로 수정된 `style.css` (이대로 복사해서 쓰세요)

오타를 고치고, 모바일에서 더 안정적으로 보이게 보완한 전체 코드입니다.

```css
/* 전체 초기화 */
* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: 'Malgun Gothic', sans-serif; 
    background: url('./web_images/background.jpg') no-repeat center center fixed; 
    background-size: cover; 
    color: #fff; 
    overflow-x: hidden;
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.main-container {
    width: 100%;
    max-width: 450px; 
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* 유리 질감 카드 - 중괄호 닫기 확인 필수! */
.card-glass {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 20px;
    overflow: hidden; 
    
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
} /* <--- 이 닫는 괄호가 꼭 있어야 합니다! */

/* 오늘의 사진 - 이제 정상적으로 작동할 것입니다 */
.today-photo {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block;
    margin: 15px 0;
    border-radius: 12px;
    object-fit: contain;
}

.day-counter {
    font-size: 1.1rem;
    word-break: keep-all; 
    line-height: 1.4;
    margin-bottom: 10px;
}

.btn-yellow {
    display: block;
    background: linear-gradient(180deg, #ffed4a 0%, #ffd700 100%);
    color: #333;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    margin-top: 15px;
}

.member-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.member-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 10px 2px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: bold;
    text-align: center;
}