/* 特殊日子页面 */
.special-days-page {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-light);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    z-index: 20;
    overflow-y: auto;
    display: none;
}

.dark-mode .special-days-page {
    background-color: var(--bg-dark);
}

.special-days-page.active {
    transform: translateY(0);
    display: block;
}

.weather-card {
    background: linear-gradient(135deg, #4FC0D0, #1B6B93);
    border-radius: 20px;
    padding: 20px;
    color: white;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.weather-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.weather-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.weather-temp {
    font-size: 3rem;
    font-weight: 700;
}

.weather-details {
    font-size: 0.9rem;
    opacity: 0.9;
}

.holiday-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.holiday-card {
    background-color: var(--card-light);
    border-radius: 16px;
    padding: 15px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 15px;
    align-items: center;
    transition: var(--transition);
    cursor: pointer;
}

.holiday-card:active {
    transform: scale(0.98);
}

.dark-mode .holiday-card {
    background-color: var(--card-dark);
}

.holiday-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), #FF8E8E);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.holiday-content {
    flex: 1;
}

.holiday-name {
    font-weight: 600;
    margin-bottom: 4px;
}

.holiday-date {
    font-size: 0.9rem;
    color: #6C757D;
}

.dark-mode .holiday-date {
    color: #ADB5BD;
}

.days-left {
    background-color: var(--accent);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}