/**
 * 节气健康组件样式
 * 
 * 功能说明：
 * 1. 支持简化版、完整版、卡片版三种模式
 * 2. 响应式设计，适配移动端
 * 3. 现代化UI设计，美观易用
 * 
 * @author HerbalScript Team
 * @version 1.0
 */

/* 基础样式重置 */
.seasonal-widget * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 组件基础样式 */
.seasonal-widget {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #2d3748;
    line-height: 1.6;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* 简化版样式 */
.seasonal-widget.simple {
    background: white;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.seasonal-widget.simple .widget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f1f5f9;
}

.seasonal-widget.simple .season-icon {
    font-size: 1.5em;
    margin-right: 10px;
}

.seasonal-widget.simple .current-term {
    font-size: 1.2em;
    font-weight: 600;
    color: #2d3748;
    flex: 1;
}



.seasonal-widget.simple .health-focus {
    font-size: 1em;
    color: #4a5568;
    margin-bottom: 15px;
    padding: 10px;
    background: #f7fafc;
    border-radius: 8px;
}

.seasonal-widget.simple .quick-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin-bottom: 15px;
}

.seasonal-widget.simple .tip-item {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background: #f7fafc;
    border-radius: 8px;
    font-size: 0.9em;
}

.seasonal-widget.simple .tip-icon {
    margin-right: 8px;
    font-size: 1.1em;
}

.seasonal-widget.simple .tip-text {
    color: #4a5568;
}

.seasonal-widget.simple .widget-footer {
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid #f1f5f9;
}

.seasonal-widget.simple .view-more {
    color: #667eea;
    cursor: pointer;
    font-size: 0.9em;
    transition: color 0.3s;
}

.seasonal-widget.simple .view-more:hover {
    color: #5a67d8;
}

/* 完整版样式 */
.seasonal-widget.full {
    background: white;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
}

.seasonal-widget.full .widget-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
}

.seasonal-widget.full .term-info h2 {
    font-size: 2em;
    color: #2d3748;
    margin-bottom: 8px;
    font-weight: 700;
}

.seasonal-widget.full .term-period {
    color: #718096;
    font-size: 1em;
    margin-bottom: 5px;
}

.seasonal-widget.full .term-description {
    color: #4a5568;
    font-size: 1.1em;
}

.seasonal-widget.full .season-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9em;
    text-align: center;
    min-width: 60px;
}

.seasonal-widget.full .season-badge.春 {
    background: #e6fffa;
    color: #234e52;
}

.seasonal-widget.full .season-badge.夏 {
    background: #fef5e7;
    color: #c05621;
}

.seasonal-widget.full .season-badge.秋 {
    background: #e6fffa;
    color: #234e52;
}

.seasonal-widget.full .season-badge.冬 {
    background: #e6fffa;
    color: #234e52;
}

.seasonal-widget.full .health-focus-section {
    margin-bottom: 25px;
    padding: 20px;
    background: #f7fafc;
    border-radius: 12px;
}

.seasonal-widget.full .health-focus-section h3 {
    color: #2d3748;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.seasonal-widget.full .focus-text {
    color: #4a5568;
    font-size: 1.1em;
    line-height: 1.6;
}

.seasonal-widget.full .advice-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.seasonal-widget.full .advice-section {
    background: #f7fafc;
    padding: 20px;
    border-radius: 12px;
}

.seasonal-widget.full .advice-section h3 {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.2em;
    color: #2d3748;
}

.seasonal-widget.full .section-icon {
    margin-right: 10px;
    font-size: 1.3em;
}

.seasonal-widget.full .diet-group,
.seasonal-widget.full .exercise-group {
    margin-bottom: 15px;
}

.seasonal-widget.full .diet-group h4,
.seasonal-widget.full .exercise-group h4 {
    color: #4a5568;
    margin-bottom: 8px;
    font-size: 1em;
}

.seasonal-widget.full .food-list,
.seasonal-widget.full .exercise-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.seasonal-widget.full .food-item,
.seasonal-widget.full .exercise-item {
    background: #e6fffa;
    color: #234e52;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9em;
}

.seasonal-widget.full .diet-group.avoid .food-item {
    background: #fed7d7;
    color: #c53030;
}

.seasonal-widget.full .recipe-list {
    display: grid;
    gap: 10px;
}

.seasonal-widget.full .recipe-item {
    background: white;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.seasonal-widget.full .recipe-name {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 5px;
}

.seasonal-widget.full .recipe-effect {
    color: #718096;
    font-size: 0.9em;
}

.seasonal-widget.full .exercise-time,
.seasonal-widget.full .exercise-notes {
    margin-bottom: 15px;
}

.seasonal-widget.full .exercise-time h4,
.seasonal-widget.full .exercise-notes h4 {
    color: #4a5568;
    margin-bottom: 8px;
    font-size: 1em;
}

.seasonal-widget.full .exercise-time p {
    color: #718096;
    font-size: 0.95em;
}

.seasonal-widget.full .exercise-notes ul {
    list-style: none;
    padding-left: 0;
}

.seasonal-widget.full .exercise-notes li {
    color: #718096;
    font-size: 0.95em;
    margin-bottom: 5px;
    padding-left: 15px;
    position: relative;
}

.seasonal-widget.full .exercise-notes li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #667eea;
}

.seasonal-widget.full .acupoints-content {
    display: grid;
    gap: 15px;
}

.seasonal-widget.full .acupoint-item {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.seasonal-widget.full .acupoint-name {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
    font-size: 1.1em;
}

.seasonal-widget.full .acupoint-location,
.seasonal-widget.full .acupoint-effect {
    color: #718096;
    font-size: 0.9em;
    margin-bottom: 5px;
}

.seasonal-widget.full .lifestyle-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.seasonal-widget.full .lifestyle-item {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.seasonal-widget.full .lifestyle-item h4 {
    color: #4a5568;
    margin-bottom: 8px;
    font-size: 1em;
}

.seasonal-widget.full .lifestyle-item p {
    color: #718096;
    font-size: 0.9em;
}

.seasonal-widget.full .widget-footer {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.seasonal-widget.full .update-time {
    color: #718096;
    font-size: 0.9em;
}

/* 卡片版样式 */
.seasonal-widget.card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.seasonal-widget.card:hover {
    transform: translateY(-2px);
}

.seasonal-widget.card .card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.seasonal-widget.card .term-badge {
    font-size: 1.2em;
    font-weight: 600;
}

.seasonal-widget.card .season-icon {
    font-size: 1.5em;
}

.seasonal-widget.card .card-body {
    padding: 20px;
}

.seasonal-widget.card .card-title {
    font-size: 1.1em;
    color: #2d3748;
    margin-bottom: 15px;
    font-weight: 600;
}

.seasonal-widget.card .card-tips {
    display: grid;
    gap: 10px;
}

.seasonal-widget.card .tip-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.seasonal-widget.card .tip-row:last-child {
    border-bottom: none;
}

.seasonal-widget.card .tip-label {
    color: #4a5568;
    font-weight: 600;
    font-size: 0.9em;
}

.seasonal-widget.card .tip-value {
    color: #718096;
    font-size: 0.9em;
}

.seasonal-widget.card .card-footer {
    padding: 15px 20px;
    background: #f7fafc;
    text-align: center;
}

.seasonal-widget.card .card-action {
    background: #667eea;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9em;
    transition: background 0.3s;
}

.seasonal-widget.card .card-action:hover {
    background: #5a67d8;
}

/* 加载和错误状态 */
.seasonal-widget.loading {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.seasonal-widget.loading .loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f4f6;
    border-top: 3px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.seasonal-widget.loading p {
    color: #718096;
    font-size: 1em;
}

.seasonal-widget.error {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #fed7d7;
}

.seasonal-widget.error .error-icon {
    font-size: 2em;
    margin-bottom: 15px;
}

.seasonal-widget.error .error-message {
    color: #c53030;
    margin-bottom: 15px;
    font-size: 1em;
}

.seasonal-widget.error .retry-btn {
    background: #667eea;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9em;
    transition: background 0.3s;
}

.seasonal-widget.error .retry-btn:hover {
    background: #5a67d8;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .seasonal-widget.simple {
        padding: 15px;
    }
    
    .seasonal-widget.simple .quick-tips {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .seasonal-widget.simple .tip-item {
        padding: 6px 10px;
        font-size: 0.85em;
    }
    
    .seasonal-widget.full {
        padding: 20px;
    }
    
    .seasonal-widget.full .widget-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .seasonal-widget.full .term-info h2 {
        font-size: 1.6em;
    }
    
    .seasonal-widget.full .advice-sections {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .seasonal-widget.full .advice-section {
        padding: 15px;
    }
    
    .seasonal-widget.full .lifestyle-content {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .seasonal-widget.card .card-header {
        padding: 15px;
    }
    
    .seasonal-widget.card .card-body {
        padding: 15px;
    }
    
    .seasonal-widget.card .card-footer {
        padding: 12px 15px;
    }
    
    .seasonal-widget.card .card-action {
        padding: 8px 16px;
        font-size: 0.85em;
    }
}

@media (max-width: 480px) {
    .seasonal-widget.simple .widget-header {
 
        gap: 10px;
    }
    
    .seasonal-widget.simple .current-term {
        font-size: 1.1em;
    }
    
    .seasonal-widget.full .term-info h2 {
        font-size: 1.4em;
    }
    
    .seasonal-widget.full .health-focus-section {
        padding: 15px;
    }
    
    .seasonal-widget.full .advice-section {
        padding: 12px;
    }
    
    .seasonal-widget.card .term-badge {
        font-size: 1.1em;
    }
    
    .seasonal-widget.card .card-title {
        font-size: 1em;
    }
    
    .seasonal-widget.card .tip-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* 打印样式 */
@media print {
    .seasonal-widget {
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .seasonal-widget .card-action,
    .seasonal-widget .view-more {
        display: none;
    }
}

/* ========================================
 * 活力科技风格样式
 * ======================================== */

/* 首页节气健康提醒区域样式 - 活力科技版 */
.seasonal-reminder-section {
    margin: 50px 0;
    padding: 0 20px;
}

.reminder-container {
    display: flex;
    align-items: stretch;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.reminder-card {
    flex: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    border-radius: 24px;
    padding: 7px;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
    color: white;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.reminder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.reminder-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.reminder-header {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
}

.reminder-icon {
    font-size: 3rem;
    margin-right: 20px;
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 50%, #48dbfb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.reminder-title h3 {
    font-size: 1.8rem;
    margin: 0 0 8px 0;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

.reminder-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
    color: #e8f4fd;
    font-weight: 500;
}

.reminder-content {
    flex-grow: 1;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* 简化版小组件在提醒卡片中的样式 */
.reminder-content .seasonal-widget.simple {
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
    width: 100%;
}

.reminder-content .widget-header {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    gap: 15px;
    min-height: 60px;
    flex-wrap: nowrap;
    overflow: hidden;
}

.reminder-content .current-term {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.reminder-content .season-icon {
    font-size: 2rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}



.reminder-content .widget-content {
    margin-bottom: 20px;
}

.reminder-content .health-focus {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.reminder-content .quick-tips {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.reminder-content .tip-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 15px 20px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.reminder-content .tip-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.reminder-content .tip-icon {
    margin-right: 15px;
    font-size: 1.4rem;
    color: #ff6b6b;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 5px #ff6b6b; }
    to { text-shadow: 0 0 20px #ff6b6b, 0 0 30px #ff6b6b; }
}

.reminder-content .tip-text {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 600;
}

.reminder-content .widget-footer {
    text-align: center;
    margin-top: 25px;
}

.reminder-content .view-more {
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 50%, #48dbfb 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    position: relative;
    overflow: hidden;
}

.reminder-content .view-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.reminder-content .view-more:hover::before {
    left: 100%;
}

.reminder-content .view-more:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.6);
    text-decoration: none;
    color: white;
}

/* 下载选项样式 - 活力科技版 */
.download-options {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.download-options h4 {
    text-align: center;
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.download-btn {
    display: flex;
    align-items: center;
    padding: 30px;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    text-decoration: none;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: left 0.8s;
}

.download-btn:hover::before {
    left: 100%;
}

.download-btn:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.pc-btn:hover {
    border-color: #667eea;
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
}

.android-btn:hover {
    border-color: #48dbfb;
    box-shadow: 0 20px 50px rgba(72, 219, 251, 0.3);
}

.btn-icon {
    font-size: 3rem;
    margin-right: 25px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.btn-text {
    display: flex;
    flex-direction: column;
}

.btn-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 8px;
}

.btn-desc {
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 600;
}

/* 移动端响应式样式 - 活力科技版 */
@media (max-width: 768px) {
    .seasonal-reminder-section {
        padding: 0 15px;
        margin: 30px 0;
    }
    
    .reminder-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .reminder-card {
        padding: 5px;
        border-radius: 20px;
    }
    
    .reminder-header {
        margin-bottom: 20px;
    }
    
    .reminder-icon {
        font-size: 2.5rem;
        margin-right: 15px;
    }
    
    .reminder-title h3 {
        font-size: 1.6rem;
    }
    
    .reminder-content .widget-header {
        padding: 15px;
        margin-bottom: 18px;
        border-radius: 16px;
        min-height: 50px;
        gap: 12px;
        flex-wrap: nowrap;
        overflow: hidden;
    }
    
    .reminder-content .current-term {
        font-size: 1.2rem;
        white-space: nowrap;
        flex-shrink: 0;
    }
    

    
    .reminder-content .health-focus {
        font-size: 1.1rem;
        margin-bottom: 18px;
    }
    
    .reminder-content .tip-item {
        padding: 12px 16px;
        border-radius: 14px;
    }
    
    .reminder-content .tip-text {
        font-size: 1rem;
    }
    
    .reminder-content .view-more {
        padding: 12px 25px;
        font-size: 1rem;
        border-radius: 25px;
    }
    
    /* 移动端下载按钮样式 - 活力科技版 */
    .download-options h4 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .download-buttons {
        gap: 20px;
    }
    
    .download-btn {
        padding: 25px;
        border-radius: 18px;
    }
    
    .btn-icon {
        font-size: 2.5rem;
        margin-right: 20px;
    }
    
    .btn-title {
        font-size: 1.2rem;
    }
    
    .btn-desc {
        font-size: 1rem;
    }
}

/* 超小屏幕优化 */
@media (max-width: 480px) {
    .reminder-content .widget-header {
        padding: 12px;
        min-height: 45px;
        gap: 10px;
        flex-wrap: nowrap;
        overflow: hidden;
    }
    
    .reminder-content .current-term {
        font-size: 1.1rem;
    }
    

    
    .reminder-content .season-icon {
        font-size: 1.5rem;
    }
}