/* 每日一言弹窗样式 */
.quote-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    z-index: 2000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.quote-modal.active {
    opacity: 1;
}

.quote-content {
    background: var(--frosted);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border: var(--fluffy-border);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 5rem;
    max-width: 600px;
    width: 90%;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.5s ease;
    pointer-events: auto;
    
    /* 模糊边缘效果 */
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 8px 32px rgba(0, 0, 0, 0.2),
        0 0 40px rgba(255, 255, 255, 0.1);
}

.quote-modal.active .quote-content {
    transform: translateY(0);
}

.quote-text {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 500;
    font-style: italic;
}

.quote-author {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 400;
}

.quote-author::before {
    content: "—— ";
}

/* 响应式设计 */
@media (max-width: 768px) {
    .quote-content {
        margin-top: 3rem;
        padding: 1.5rem;
    }
    
    .quote-text {
        font-size: 1.2rem;
    }
}