.zibll-clock-widget {
    background: var(--zib-bg-primary, #ffffff);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.zibll-clock-container {
    text-align: center;
}

.clock-display {
    font-size: 36px;
    font-weight: bold;
    color: var(--clock-theme-color, #667eea);
    font-family: 'Courier New', monospace;
    margin-bottom: 8px;
}

.date-display {
    font-size: 14px;
    color: var(--zib-text-secondary, #666);
    margin-bottom: 12px;
}

.lunar-date {
    font-size: 13px;
    color: var(--zib-text-secondary, #888);
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(102,126,234,0.1), rgba(118,75,162,0.1));
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 12px;
}

.festival-reminder {
    font-size: 13px;
    color: #e74c3c;
    font-weight: bold;
    padding: 8px 16px;
    background: linear-gradient(135deg, #fff5f5, #ffe8e8);
    border-radius: 8px;
    margin-bottom: 16px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.alarm-section {
    border-top: 1px solid var(--zib-border-color, #e0e0e0);
    padding-top: 16px;
    margin-top: 16px;
}

.alarm-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.alarm-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--zib-border-color, #ddd);
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 14px;
}

.set-alarm-btn {
    width: 100%;
    padding: 10px;
    background: var(--clock-theme-color, #667eea);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.set-alarm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102,126,234,0.4);
}

.alarm-list {
    margin-top: 12px;
}

.alarm-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: var(--zib-bg-secondary, #f5f5f5);
    border-radius: 8px;
    margin-bottom: 8px;
}

.delete-alarm {
    color: #e74c3c;
    cursor: pointer;
    font-size: 18px;
}

.analog-clock {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 16px;
    border: 4px solid var(--clock-theme-color, #667eea);
    border-radius: 50%;
    background: var(--zib-bg-primary, #fff);
}

.clock-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--clock-theme-color, #667eea);
    border-radius: 50%;
    z-index: 10;
}

.clock-hand {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform-origin: bottom center;
    background: var(--clock-theme-color, #667eea);
}

.hour-hand {
    width: 4px;
    height: 40px;
    margin-left: -2px;
    border-radius: 2px;
}

.minute-hand {
    width: 3px;
    height: 55px;
    margin-left: -1.5px;
    border-radius: 1.5px;
}

.second-hand {
    width: 2px;
    height: 60px;
    margin-left: -1px;
    background: #e74c3c;
    border-radius: 1px;
}

/* 文章顶部信息竖排布局 */
.article-top-info-vertical {
    background: var(--zib-bg-primary, #fff);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.article-top-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin-right: 16px;
    border: 3px solid var(--clock-theme-color, #667eea);
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 18px;
    font-weight: bold;
    color: var(--zib-text-primary, #333);
    margin-bottom: 4px;
}

.publish-time {
    font-size: 13px;
    color: var(--zib-text-secondary, #666);
}

.article-property {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.article-main-content {
    display: flex;
    gap: 24px;
}

.article-info-left {
    flex: 1;
}

.article-thumbnail-right {
    width: 200px;
    height: 150px;
    border-radius: 12px;
    object-fit: cover;
}

.article-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    padding: 12px;
    background: var(--zib-bg-secondary, #f5f5f5);
    border-radius: 8px;
}

.meta-icon {
    font-size: 20px;
    margin-right: 8px;
}

.meta-text {
    font-size: 14px;
    color: var(--zib-text-primary, #333);
}

.meta-value {
    font-weight: bold;
    color: var(--clock-theme-color, #667eea);
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.tag-item {
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(102,126,234,0.1), rgba(118,75,162,0.1));
    border-radius: 20px;
    font-size: 13px;
    color: var(--clock-theme-color, #667eea);
}

.wave-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    overflow: hidden;
}

.wave-decoration svg {
    width: 100%;
    height: 100%;
}

/* 会员开通模块样式 */
.zib-vip-module {
    background: linear-gradient(180deg, #f5f7fa 0%, #ffffff 100%);
    padding: 40px 20px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.zib-vip-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.zib-vip-decoration {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zib-vip-card-icon {
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    border-radius: 16px;
    padding: 20px;
    transform: rotate(-10deg);
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.3);
    animation: float 3s ease-in-out infinite;
}

.vip-icon-main {
    font-size: 32px;
    font-weight: bold;
    color: white;
    display: block;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.vip-icon-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    display: block;
    text-align: center;
}

.zib-vip-star-icon {
    background: linear-gradient(135deg, #feca57, #ff9f43);
    border-radius: 50%;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(254, 202, 87, 0.3);
    animation: rotate 10s linear infinite;
}

.star-main {
    font-size: 36px;
    color: white;
    display: block;
}

.star-ring {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    position: absolute;
    top: 0;
    right: 0;
}

@keyframes float {
    0%, 100% { transform: rotate(-10deg) translateY(0); }
    50% { transform: rotate(-10deg) translateY(-10px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.zib-vip-title-content {
    text-align: center;
    margin: 0 30px;
}

.zib-vip-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin: 0 0 10px 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.zib-vip-subtitle {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.zib-vip-plans {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.zib-vip-plan-card {
    background: white;
    border-radius: 12px;
    padding: 24px 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.zib-vip-plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    border-color: #667eea;
}

.zib-vip-plan-card.recommended {
    border-color: #ff6b6b;
    box-shadow: 0 6px 24px rgba(255, 107, 107, 0.2);
}

.zib-vip-recommend-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: bold;
    border-radius: 0 10px 0 10px;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

.zib-vip-plan-header {
    text-align: center;
    margin-bottom: 20px;
}

.zib-vip-plan-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.zib-vip-plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 8px;
}

.price-currency {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-right: 4px;
}

.price-value {
    font-size: 42px;
    font-weight: bold;
    color: #333;
    line-height: 1;
}

.price-period {
    font-size: 16px;
    color: #888;
    margin-left: 4px;
}

.zib-vip-plan-title {
    background: #f5f7fa;
    color: #666;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
}

.zib-vip-plan-features {
    margin-bottom: 20px;
}

.zib-vip-features-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 16px;
}

.zib-vip-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zib-vip-feature-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px dashed #eee;
    line-height: 1.5;
}

.zib-vip-feature-item:last-child {
    border-bottom: none;
}

.feature-label {
    color: #666;
}

.feature-value {
    color: #333;
    font-weight: 500;
}

.feature-full {
    color: #333;
    width: 100%;
    text-align: left;
}

.zib-vip-plan-footer {
    text-align: center;
}

.zib-vip-join-btn {
    display: block;
    background: linear-gradient(135deg, #feca57, #d4a038);
    color: white;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(254, 202, 87, 0.3);
}

.zib-vip-join-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(254, 202, 87, 0.4);
    color: white;
}

.zib-vip-plan-card.recommended .zib-vip-join-btn {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.zib-vip-plan-card.recommended .zib-vip-join-btn:hover {
    box-shadow: 0 6px 16px rgba(255, 107, 107, 0.4);
}

/* 响应式适配 */
@media (max-width: 1200px) {
    .zib-vip-plans {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .zib-vip-module {
        padding: 30px 15px;
    }
    
    .zib-vip-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .zib-vip-decoration {
        width: 80px;
        height: 80px;
    }
    
    .zib-vip-title {
        font-size: 22px;
    }
    
    .zib-vip-subtitle {
        font-size: 13px;
    }
    
    .zib-vip-plans {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .price-value {
        font-size: 36px;
    }
}
