.cookie-consent-container.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.cookie-consent-content {
    font-size: 14px;
    line-height: 1.5;
}

.cookie-consent-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.cookie-consent-btn {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 80px;
    text-align: center;
}

.cookie-consent-accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cookie-consent-decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cookie-consent-policy:hover {
    opacity: 1;
}

/* 隐私政策模态框内容样式 */
.prose {
    line-height: 1.7;
    color: #374151;
    font-size: 15px;
}

.prose h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #1e40af;
}

.prose h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1e40af;
}

.prose p {
    margin-bottom: 1.25rem;
}

.prose ul, .prose ol {
    margin-bottom: 1.25rem;
    padding-left: 1.75rem;
}

.prose ul {
    list-style-type: disc;
}

.prose ol {
    list-style-type: decimal;
}

.prose li {
    margin-bottom: 0.5rem;
}

.prose a {
    color: #3b82f6;
    text-decoration: underline;
    font-weight: 500;
}

.prose strong {
    font-weight: 600;
    color: #1e3a8a;
}

.prose blockquote {
    border-left: 4px solid #3b82f6;
    padding-left: 1rem;
    margin-left: 0;
    margin-right: 0;
    color: #4b5563;
    font-style: italic;
    margin-bottom: 1.25rem;
}

@media (max-width: 640px) {
    .cookie-consent-container {
        width: 85%;
        padding: 16px;
    }
    
    .cookie-consent-buttons {
        justify-content: center;
    }
    
    .cookie-consent-btn {
        flex: 1;
    }
}