.popup {
    position: fixed;
    top: 60px;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 90%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: none;
    z-index: 10000;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
            .popup {
                width: 60%; /* 平板寬度 */
            }
        }
@media screen and (min-width: 1025px) {
            .popup {
                width: 30%; /* 桌面寬度 */
            }
        }
.close-btn {
    position: absolute;
    top: -15px;
    right: -15px;
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.7);
    border: 2px solid #000;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1;
}
.close-btn:hover {
    background-color: rgba(255,255,255,0.9);
}
#timer-dailyBanner {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    text-align: center;
    border-radius: 5px;
    white-space: nowrap;
    font-size: clamp(18px,9vw,50px);
    z-index: 10;
}
#timer-popup15Day {
    z-index: 100;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    text-align: center;
    border-radius: 5px;
    font-size: clamp(18px,8vw,38px);
    z-index: 10;
    max-width: 95%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
#timer-dailyBanner {
    z-index: 50;
}
.popup-content img {
    width: 100%;
    border-radius: 10px;
}
.popup-content {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: relative;
}
.notice-bar {
    position: relative;
    width: 100%;
    background-color: #00d1d2;
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.notice-link {
    color: #fff;
    text-decoration: underline;
    font-weight: bold;
}
.notice-link:hover {
    color: #f0f0f0;
}
#freezeLayer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 9999;
    display: none;
}
#freezeLayer.active {
    display: block;
}
