body {
    background: #fff;
    margin: 0;
    font-family: "Noto Sans KR", sans-serif;
}

/* Apple 날씨앱 스타일 */
.weather-ui {
    font-family: "Noto Sans KR", sans-serif;
    background: linear-gradient(180deg, #5abaff 0%, #237aff 100%);
    color: #fff;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.weather-panel {
    display: flex;
    flex-wrap: wrap;
    background: rgba(255,255,255,0.15);
    border-radius: 24px;
    padding: 40px 60px;
    max-width: 1100px;
    width: 100%;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    backdrop-filter: blur(20px);
}

/* 좌측 */
.weather-left {
    flex: 1;
    min-width: 260px;
    margin-right: 60px;
}
.weather-left h2 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}
.select-box {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}
.select-box label {
    margin-bottom: 6px;
    font-size: 14px;
    color: #e6f4ff;
}
.select-box select {
    padding: 10px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
    background: rgba(255,255,255,0.2);
    color: #fff;
    appearance: none;
}
.select-box select option {
    color: #000;
}
.apply-btn {
    background: #fff;
    color: #0077ff;
    border: none;
    border-radius: 10px;
    padding: 10px 14px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}
.apply-btn:hover {
    background: #e8f3ff;
}

/* 중앙 온도 영역 */
.weather-center {
    flex: 2;
    text-align: center;
}
.temp-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
}
.icon {
    width: 120px;
    height: 120px;
    margin-bottom: 12px;
}
.icon.sun {
    background: radial-gradient(circle at 40% 40%, #ffe873 0%, #ffb700 90%);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(255,255,255,0.3);
}
.temp-value {
    font-size: 86px;
    font-weight: 800;
}
.desc {
    font-size: 18px;
    opacity: 0.95;
    margin-top: 8px;
}

/* 하단 정보 스트립 */
.info-strip {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.strip-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    padding: 8px 14px;
    border-radius: 12px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}
.strip-item b {
    font-size: 16px;
}
.strip-item small {
    opacity: 0.8;
}

/* 미니 아이콘 */
.mini-icon {
    width: 20px;
    height: 20px;
    background: #fff;
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
}
.mini-icon.wind {
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M4 12h9a3 3 0 110 6 1 1 0 110-2 1 1 0 100-2H4v-2zm0-4h13a3 3 0 100-6 1 1 0 110 2 1 1 0 100 2H4v2z"/></svg>');
}
.mini-icon.paw {
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M5.5 9.5a2.5 2.5 0 115 0 2.5 2.5 0 01-5 0zm8-3a2.5 2.5 0 115 0 2.5 2.5 0 01-5 0zM3 16c0-2.5 3-4 5.5-4S14 13.5 14 16c0 1.66-1.79 3-5.5 3S3 17.66 3 16z"/></svg>');
}
.mini-icon.map {
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M12 2C8.14 2 5 5.14 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.86-3.14-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5S10.62 6.5 12 6.5s2.5 1.12 2.5 2.5S13.38 11.5 12 11.5z"/></svg>');
}

/* 반응형 */
@media (max-width: 768px) {
    .weather-panel {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .weather-left {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .temp-value {
        font-size: 70px;
    }
}
